diff --git a/.github/actions-lock.txt b/.github/actions-lock.txt new file mode 100644 index 00000000..4e88a7fd --- /dev/null +++ b/.github/actions-lock.txt @@ -0,0 +1,18 @@ +# SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors +# SPDX-License-Identifier: MIT +25fc4c7e69e778e20bdc9eb0cc96367e block-merge-freeze.yml +19ab9c47c8d96de93f37fab242c398cc block-unconventional-commits.yml +e6351c608939c31ae1e32923aa82aa10 dependabot-approve-merge.yml +2581a67c5bcdcd570427e6d51db767d7 fixup.yml +4b40dd0073e16f74dd04e6d49dcc043d lint-php-cs.yml +cfb31e47b6e9ab65e76c89b028754a4e lint-php.yml +076e72a19e7bdf35ac5b2abee0198c43 phpunit-mariadb.yml +8fab08ac7da700ee304af0bf3c18b3a3 phpunit-mysql.yml +bbe9834ddb89207caf5e19d79ebb3672 phpunit-oci.yml +256bf1dead4ef8479e9ce7433f871548 phpunit-pgsql.yml +4ca2c2c4b1a73182667bab908e57c185 phpunit-sqlite.yml +d1821b8a816578070ed8fd018f321f6d pr-feedback.yml +6dc046dfbca5dc65d938265c518fcac4 psalm.yml +2dbec18233063b42f4d8e03bbb43671c reuse.yml +a3440826636c0fd7c2d20b1de50363da update-nextcloud-ocp-approve-merge.yml +f5632e6d28c6afca9d4d46131fb48d57 update-nextcloud-ocp.yml diff --git a/.github/workflows/block-merge-freeze.yml b/.github/workflows/block-merge-freeze.yml index f28a0210..3a9d5cc3 100644 --- a/.github/workflows/block-merge-freeze.yml +++ b/.github/workflows/block-merge-freeze.yml @@ -29,7 +29,7 @@ jobs: steps: - name: Register server reference to fallback to master branch - uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 + uses: actions/github-script@3a2844b7e9c422d3c10d287c895573f7108da1b3 # v9.0.0 with: github-token: ${{secrets.GITHUB_TOKEN}} script: | diff --git a/.github/workflows/block-unconventional-commits.yml b/.github/workflows/block-unconventional-commits.yml index 6bf1a79c..4972f8bb 100644 --- a/.github/workflows/block-unconventional-commits.yml +++ b/.github/workflows/block-unconventional-commits.yml @@ -27,10 +27,10 @@ jobs: steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - uses: webiny/action-conventional-commits@8bc41ff4e7d423d56fa4905f6ff79209a78776c7 # v1.3.0 + - uses: webiny/action-conventional-commits@7f91b1595ca1951cdb671ddc9f07a49081ec5b69 # v1.4.2 with: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/dependabot-approve-merge.yml b/.github/workflows/dependabot-approve-merge.yml index ed902d92..76340acb 100644 --- a/.github/workflows/dependabot-approve-merge.yml +++ b/.github/workflows/dependabot-approve-merge.yml @@ -3,10 +3,10 @@ # https://github.com/nextcloud/.github # https://docs.github.com/en/actions/learn-github-actions/sharing-workflows-with-your-organization # -# SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors +# SPDX-FileCopyrightText: Nextcloud GmbH and Nextcloud contributors # SPDX-License-Identifier: MIT -name: Dependabot +name: Auto approve Dependabot PRs on: pull_request_target: # zizmor: ignore[dangerous-triggers] @@ -24,11 +24,20 @@ concurrency: jobs: auto-approve-merge: - if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'renovate[bot]' + if: github.event.pull_request.user.login == 'dependabot[bot]' runs-on: ubuntu-latest-low + env: + # env variable for maintainers: 'true' allows to auto-merge 1.0.2 -> 2.0.0 + ALLOW_MAJOR: false + # env variable for maintainers: 'true' allows to auto-merge 1.0.2 -> 1.1.0 + ALLOW_MINOR: true + # env variable for maintainers: RegExp string to ignore some dependencies from auto-approve and auto-merge + IGNORE_PATTERN: '' permissions: - # for hmarr/auto-approve-action to approve PRs + # for auto-approve step to work pull-requests: write + # for alexwilson/enable-github-automerge-action to approve PRs + contents: write steps: - name: Disabled on forks @@ -37,13 +46,56 @@ jobs: echo 'Can not approve PRs from forks' exit 1 - # GitHub actions bot approve - - uses: hmarr/auto-approve-action@b40d6c9ed2fa10c9a2749eca7eb004418a705501 # v2 + - uses: mdecoleman/pr-branch-name@55795d86b4566d300d237883103f052125cc7508 # v3.0.0 + id: branchname + with: + repo-token: ${{ secrets.GITHUB_TOKEN }} + + - name: Dependabot metadata + id: metadata + if: startsWith(steps.branchname.outputs.branch, 'dependabot/') + uses: dependabot/fetch-metadata@25dd0e34f4fe68f24cc83900b1fe3fe149efef98 # v3.1.0 with: github-token: ${{ secrets.GITHUB_TOKEN }} - # Nextcloud bot approve and merge request - - uses: ahmadnassri/action-dependabot-auto-merge@45fc124d949b19b6b8bf6645b6c9d55f4f9ac61a # v2 + - name: Check for ignored dependencies in the PR + id: validate + if: startsWith(steps.branchname.outputs.branch, 'dependabot/') + env: + IGNORE_PATTERN: ${{ env.IGNORE_PATTERN }} + DEPENDENCY_NAMES: ${{ steps.metadata.outputs.dependency-names }} + run: | + if [[ -z ${IGNORE_PATTERN} ]]; then + echo "ignore=false" >> "$GITHUB_OUTPUT" + elif [[ -z ${DEPENDENCY_NAMES} ]]; then + echo "ignore=false" >> "$GITHUB_OUTPUT" + elif [[ ${DEPENDENCY_NAMES} =~ ${IGNORE_PATTERN} ]]; then + echo "ignore=true" >> "$GITHUB_OUTPUT" + fi + + - name: GitHub actions bot approve + id: auto_approve + if: ${{ + startsWith(steps.branchname.outputs.branch, 'dependabot/') + && steps.validate.outputs.ignore != 'true' + }} + run: gh pr review --approve "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # Enable GitHub auto merge + - name: Auto merge + uses: alexwilson/enable-github-automerge-action@2c32e18a76e0726ffe7a573bfff2d42a20885126 # 3.0.0 + if: ${{ + startsWith(steps.branchname.outputs.branch, 'dependabot/') + && steps.auto_approve.conclusion == 'success' + && (github.event.action == 'opened' || github.event.action == 'reopened') + && ( + steps.metadata.outputs.update-type == 'version-update:semver-patch' + || (fromJSON(env.ALLOW_MINOR) && steps.metadata.outputs.update-type == 'version-update:semver-minor') + || (fromJSON(env.ALLOW_MAJOR) && steps.metadata.outputs.update-type == 'version-update:semver-major') + ) + }} with: - target: minor - github-token: ${{ secrets.DEPENDABOT_AUTOMERGE_TOKEN }} + github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/lint-php-cs.yml b/.github/workflows/lint-php-cs.yml index 556d6fe5..dba09562 100644 --- a/.github/workflows/lint-php-cs.yml +++ b/.github/workflows/lint-php-cs.yml @@ -25,16 +25,16 @@ jobs: steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get php version id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 - name: Set up php${{ steps.versions.outputs.php-min }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ steps.versions.outputs.php-min }} extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite @@ -43,10 +43,12 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Install dependencies + - name: Remove nextcloud/ocp run: | composer remove nextcloud/ocp --dev --no-scripts - composer i + + - name: Install composer dependencies + uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 - name: Lint run: composer run cs:check || ( echo 'Please run `composer run cs:fix` to format your code' && exit 1 ) diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml index b51107d7..e73949e0 100644 --- a/.github/workflows/lint-php.yml +++ b/.github/workflows/lint-php.yml @@ -21,34 +21,35 @@ jobs: matrix: runs-on: ubuntu-latest-low outputs: - php-versions: ${{ steps.versions.outputs.php-versions }} + php-min: ${{ steps.versions.outputs.php-min }} + php-max: ${{ steps.versions.outputs.php-max }} steps: - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get version matrix id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.0.0 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 php-lint: - runs-on: ubuntu-latest + runs-on: ubuntu-latest-low needs: matrix strategy: matrix: - php-versions: ${{fromJson(needs.matrix.outputs.php-versions)}} + php-versions: ['${{ needs.matrix.outputs.php-min }}', '${{ needs.matrix.outputs.php-max }}'] name: php-lint steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Set up php ${{ matrix.php-versions }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ matrix.php-versions }} extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite diff --git a/.github/workflows/phpunit-mariadb.yml b/.github/workflows/phpunit-mariadb.yml index a153db63..ba44bbb6 100644 --- a/.github/workflows/phpunit-mariadb.yml +++ b/.github/workflows/phpunit-mariadb.yml @@ -25,13 +25,13 @@ jobs: server-max: ${{ steps.versions.outputs.branches-max-list }} steps: - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get version matrix id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 changes: runs-on: ubuntu-latest-low @@ -43,7 +43,7 @@ jobs: src: ${{ steps.changes.outputs.src}} steps: - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + - uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 id: changes continue-on-error: true with: @@ -67,6 +67,7 @@ jobs: if: needs.changes.outputs.src != 'false' strategy: + fail-fast: false matrix: php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }} server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }} @@ -91,7 +92,7 @@ jobs: echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV - name: Checkout server - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false submodules: true @@ -99,13 +100,13 @@ jobs: ref: ${{ matrix.server-versions }} - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false path: apps/${{ env.APP_NAME }} - name: Set up php ${{ matrix.php-versions }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ matrix.php-versions }} # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation @@ -124,7 +125,7 @@ jobs: - name: Check composer file existence id: check_composer - uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 + uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0 with: files: apps/${{ env.APP_NAME }}/composer.json diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml index 790f0f71..ed02c2f5 100644 --- a/.github/workflows/phpunit-mysql.yml +++ b/.github/workflows/phpunit-mysql.yml @@ -24,13 +24,13 @@ jobs: matrix: ${{ steps.versions.outputs.sparse-matrix }} steps: - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get version matrix id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 with: matrix: '{"mysql-versions": ["8.4"]}' @@ -44,7 +44,7 @@ jobs: src: ${{ steps.changes.outputs.src}} steps: - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + - uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 id: changes continue-on-error: true with: @@ -68,6 +68,7 @@ jobs: if: needs.changes.outputs.src != 'false' strategy: + fail-fast: false matrix: ${{ fromJson(needs.matrix.outputs.matrix) }} name: MySQL ${{ matrix.mysql-versions }} PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }} @@ -89,7 +90,7 @@ jobs: echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV - name: Checkout server - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false submodules: true @@ -97,13 +98,13 @@ jobs: ref: ${{ matrix.server-versions }} - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false path: apps/${{ env.APP_NAME }} - name: Set up php ${{ matrix.php-versions }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ matrix.php-versions }} # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation @@ -122,7 +123,7 @@ jobs: - name: Check composer file existence id: check_composer - uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 + uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0 with: files: apps/${{ env.APP_NAME }}/composer.json diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml index 1304d614..68c7e1e4 100644 --- a/.github/workflows/phpunit-oci.yml +++ b/.github/workflows/phpunit-oci.yml @@ -25,13 +25,13 @@ jobs: server-max: ${{ steps.versions.outputs.branches-max-list }} steps: - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get version matrix id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 changes: runs-on: ubuntu-latest-low @@ -43,7 +43,7 @@ jobs: src: ${{ steps.changes.outputs.src }} steps: - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + - uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 id: changes continue-on-error: true with: @@ -67,31 +67,31 @@ jobs: if: needs.changes.outputs.src != 'false' strategy: + fail-fast: false matrix: php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }} server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }} + oci-versions: ['18', '21', '23'] - name: OCI PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }} + name: OCI ${{ matrix.oci-versions }} PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }} services: oracle: - image: ghcr.io/gvenzl/oracle-xe:11 + image: ghcr.io/gvenzl/oracle-${{ matrix.oci-versions < 23 && 'xe' || 'free' }}:${{ matrix.oci-versions }} # Provide passwords and other environment variables to container env: - ORACLE_RANDOM_PASSWORD: true - APP_USER: autotest - APP_USER_PASSWORD: owncloud + ORACLE_PASSWORD: oracle # Forward Oracle port ports: - - 1521:1521/tcp + - 1521:1521 # Provide healthcheck script options for startup options: >- --health-cmd healthcheck.sh - --health-interval 10s - --health-timeout 5s + --health-interval 20s + --health-timeout 10s --health-retries 10 steps: @@ -102,7 +102,7 @@ jobs: echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV - name: Checkout server - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false submodules: true @@ -110,13 +110,13 @@ jobs: ref: ${{ matrix.server-versions }} - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false path: apps/${{ env.APP_NAME }} - name: Set up php ${{ matrix.php-versions }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ matrix.php-versions }} # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation @@ -130,7 +130,7 @@ jobs: - name: Check composer file existence id: check_composer - uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 + uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0 with: files: apps/${{ env.APP_NAME }}/composer.json @@ -147,7 +147,7 @@ jobs: DB_PORT: 1521 run: | mkdir data - ./occ maintenance:install --verbose --database=oci --database-name=XE --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=autotest --database-pass=owncloud --admin-user admin --admin-pass admin + ./occ maintenance:install --verbose --database=oci --database-name=${{ matrix.oci-versions < 23 && 'XE' || 'FREE' }} --database-host=127.0.0.1 --database-port=$DB_PORT --database-user=system --database-pass=oracle --admin-user admin --admin-pass admin ./occ app:enable --force ${{ env.APP_NAME }} - name: Check PHPUnit script is defined diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml index e4495f76..df385ab3 100644 --- a/.github/workflows/phpunit-pgsql.yml +++ b/.github/workflows/phpunit-pgsql.yml @@ -25,13 +25,13 @@ jobs: server-max: ${{ steps.versions.outputs.branches-max-list }} steps: - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get version matrix id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 changes: runs-on: ubuntu-latest-low @@ -43,7 +43,7 @@ jobs: src: ${{ steps.changes.outputs.src }} steps: - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + - uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 id: changes continue-on-error: true with: @@ -67,6 +67,7 @@ jobs: if: needs.changes.outputs.src != 'false' strategy: + fail-fast: false matrix: php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }} server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }} @@ -92,7 +93,7 @@ jobs: echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV - name: Checkout server - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false submodules: true @@ -100,13 +101,13 @@ jobs: ref: ${{ matrix.server-versions }} - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false path: apps/${{ env.APP_NAME }} - name: Set up php ${{ matrix.php-versions }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ matrix.php-versions }} # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation @@ -120,7 +121,7 @@ jobs: - name: Check composer file existence id: check_composer - uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 + uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0 with: files: apps/${{ env.APP_NAME }}/composer.json diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml index 4e926b8c..25b66d11 100644 --- a/.github/workflows/phpunit-sqlite.yml +++ b/.github/workflows/phpunit-sqlite.yml @@ -25,13 +25,13 @@ jobs: server-max: ${{ steps.versions.outputs.branches-max-list }} steps: - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get version matrix id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 changes: runs-on: ubuntu-latest-low @@ -43,7 +43,7 @@ jobs: src: ${{ steps.changes.outputs.src}} steps: - - uses: dorny/paths-filter@de90cc6fb38fc0963ad72b210f1f284cd68cea36 # v3.0.2 + - uses: dorny/paths-filter@7b450fff21473bca461d4b92ce414b9d0420d706 # v4.0.2 id: changes continue-on-error: true with: @@ -67,6 +67,7 @@ jobs: if: needs.changes.outputs.src != 'false' strategy: + fail-fast: false matrix: php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }} server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }} @@ -81,7 +82,7 @@ jobs: echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV - name: Checkout server - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false submodules: true @@ -89,13 +90,13 @@ jobs: ref: ${{ matrix.server-versions }} - name: Checkout app - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false path: apps/${{ env.APP_NAME }} - name: Set up php ${{ matrix.php-versions }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ matrix.php-versions }} # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation @@ -109,7 +110,7 @@ jobs: - name: Check composer file existence id: check_composer - uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 + uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0 with: files: apps/${{ env.APP_NAME }}/composer.json diff --git a/.github/workflows/pr-feedback.yml b/.github/workflows/pr-feedback.yml index 98e9fada..4420bf69 100644 --- a/.github/workflows/pr-feedback.yml +++ b/.github/workflows/pr-feedback.yml @@ -36,7 +36,7 @@ jobs: blocklist=$(curl https://raw.githubusercontent.com/nextcloud/.github/master/non-community-usernames.txt | paste -s -d, -) echo "blocklist=$blocklist" >> "$GITHUB_OUTPUT" - - uses: nextcloud/pr-feedback-action@1883b38a033fb16f576875e0cf45f98b857655c4 # main + - uses: nextcloud/pr-feedback-action@5227c55be184087d0aef6338bee210d8620b6297 # v1.0.1 with: feedback-message: | Hello there, @@ -50,6 +50,6 @@ jobs: (If you believe you should not receive this message, you can add yourself to the [blocklist](https://github.com/nextcloud/.github/blob/master/non-community-usernames.txt).) days-before-feedback: 14 - start-date: '2024-04-30' + start-date: '2025-06-12' exempt-authors: '${{ steps.blocklist.outputs.blocklist }},${{ steps.scrape.outputs.users }}' exempt-bots: true diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml index 3d43f8aa..eafcfeb5 100644 --- a/.github/workflows/psalm.yml +++ b/.github/workflows/psalm.yml @@ -24,19 +24,19 @@ jobs: name: static-psalm-analysis steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: Get php version id: versions - uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1 + uses: icewind1991/nextcloud-version-matrix@8a7bac6300b2f0f3100088b297995a229558ddba # v1.3.2 - name: Check enforcement of minimum PHP version ${{ steps.versions.outputs.php-min }} in psalm.xml run: grep 'phpVersion="${{ steps.versions.outputs.php-min }}' psalm.xml - name: Set up php${{ steps.versions.outputs.php-available }} - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: php-version: ${{ steps.versions.outputs.php-available }} extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite @@ -47,12 +47,14 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - name: Install dependencies + - name: Remove nextcloud/ocp run: | composer remove nextcloud/ocp --dev --no-scripts - composer i - - name: Install nextcloud/ocp + - name: Install composer dependencies + uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 + + - name: Install nextcloud/ocp:dev-${{ steps.versions.outputs.branches-max }} run: composer require --dev nextcloud/ocp:dev-${{ steps.versions.outputs.branches-max }} --ignore-platform-reqs --with-dependencies - name: Run coding standards check diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 95a8626a..67fdafc4 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -19,9 +19,9 @@ jobs: runs-on: ubuntu-latest-low steps: - name: Checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - name: REUSE Compliance Check - uses: fsfe/reuse-action@bb774aa972c2a89ff34781233d275075cbddf542 # v5.0.0 + uses: fsfe/reuse-action@676e2d560c9a403aa252096d99fcab3e1132b0f5 # v6.0.0 diff --git a/.github/workflows/update-nextcloud-ocp-approve-merge.yml b/.github/workflows/update-nextcloud-ocp-approve-merge.yml index dfe0ef4e..88c54da0 100644 --- a/.github/workflows/update-nextcloud-ocp-approve-merge.yml +++ b/.github/workflows/update-nextcloud-ocp-approve-merge.yml @@ -27,7 +27,7 @@ jobs: if: github.actor == 'nextcloud-command' runs-on: ubuntu-latest-low permissions: - # for hmarr/auto-approve-action to approve PRs + # for auto-approve-action to approve PRs pull-requests: write # for alexwilson/enable-github-automerge-action to approve PRs contents: write @@ -44,15 +44,16 @@ jobs: with: repo-token: ${{ secrets.GITHUB_TOKEN }} - # GitHub actions bot approve - - uses: hmarr/auto-approve-action@b40d6c9ed2fa10c9a2749eca7eb004418a705501 # v2 + - name: GitHub actions bot approve if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-nextcloud-ocp') - with: - github-token: ${{ secrets.GITHUB_TOKEN }} + run: gh pr review --approve "$PR_URL" + env: + PR_URL: ${{ github.event.pull_request.html_url }} + GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Enable GitHub auto merge - name: Auto merge - uses: alexwilson/enable-github-automerge-action@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # v2.0.0 + uses: alexwilson/enable-github-automerge-action@2c32e18a76e0726ffe7a573bfff2d42a20885126 # 3.0.0 if: startsWith(steps.branchname.outputs.branch, 'automated/noid/') && endsWith(steps.branchname.outputs.branch, 'update-nextcloud-ocp') with: github-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/update-nextcloud-ocp.yml b/.github/workflows/update-nextcloud-ocp.yml index aa01481d..f09ae8f9 100644 --- a/.github/workflows/update-nextcloud-ocp.yml +++ b/.github/workflows/update-nextcloud-ocp.yml @@ -15,32 +15,40 @@ on: permissions: contents: read + issues: write jobs: update-nextcloud-ocp: runs-on: ubuntu-latest + # Only allowed to be run on nextcloud repositories + if: ${{ github.repository_owner == 'nextcloud' }} + strategy: fail-fast: false matrix: - branches: ['main', 'master', 'stable31', 'stable30'] + branches: + - ${{ github.event.repository.default_branch }} + - 'stable34' + - 'stable33' + - 'stable32' name: update-nextcloud-ocp-${{ matrix.branches }} steps: - id: checkout - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 + uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false ref: ${{ matrix.branches }} submodules: true continue-on-error: true - - name: Set up php8.2 + - name: Set up php8.3 if: steps.checkout.outcome == 'success' - uses: shivammathur/setup-php@ec406be512d7077f68eed36e63f4d91bc006edc4 # v2.35.4 + uses: shivammathur/setup-php@f3e473d116dcccaddc5834248c87452386958240 # 2.37.2 with: - php-version: 8.2 + php-version: 8.3 # https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation extensions: bz2, ctype, curl, dom, fileinfo, gd, iconv, intl, json, libxml, mbstring, openssl, pcntl, posix, session, simplexml, xmlreader, xmlwriter, zip, zlib, sqlite, pdo_sqlite coverage: none @@ -54,60 +62,46 @@ jobs: grep '/appinfo/info.xml' .github/CODEOWNERS | cut -f 2- -d ' ' | xargs | awk '{ print "codeowners="$0 }' >> $GITHUB_OUTPUT continue-on-error: true - - name: Composer install + - name: Install composer dependencies if: steps.checkout.outcome == 'success' - run: composer install + uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0 + + - name: Check composer bin for nextcloud/ocp exists + id: check_composer_bin + uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0 + with: + files: vendor-bin/nextcloud-ocp/composer.json - name: Composer update nextcloud/ocp id: update_branch - if: ${{ steps.checkout.outcome == 'success' && matrix.branches != 'main' }} - run: composer require --dev 'nextcloud/ocp:dev-${{ matrix.branches }}' + env: + USE_COMPOSER_BIN: ${{ steps.check_composer_bin.outputs.files_exists }} + BRANCH_NAME: ${{ matrix.branches }} + run: | + COMPOSER_CMD='composer' + if [[ "$USE_COMPOSER_BIN" == 'true' ]]; then + COMPOSER_CMD='composer bin nextcloud-ocp' + fi - - name: Raise on issue on failure - uses: dacbd/create-issue-action@cdb57ab6ff8862aa09fee2be6ba77a59581921c2 # v2.0.0 - if: ${{ steps.checkout.outcome == 'success' && failure() && steps.update_branch.conclusion == 'failure' }} - with: - token: ${{ secrets.GITHUB_TOKEN }} - title: 'Failed to update nextcloud/ocp package on branch ${{ matrix.branches }}' - body: 'Please check the output of the GitHub action and manually resolve the issues
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
${{ steps.codeowners.outputs.codeowners }}' + PACKAGE_VERSION="nextcloud/ocp:dev-$BRANCH_NAME" + if [[ "$BRANCH_NAME" == 'main' ]]; then + PACKAGE_VERSION='nextcloud/ocp:dev-master' + fi - - name: Composer update nextcloud/ocp - id: update_main - if: ${{ steps.checkout.outcome == 'success' && matrix.branches == 'main' }} - run: composer require --dev nextcloud/ocp:dev-master + echo $COMPOSER_CMD require --dev $PACKAGE_VERSION + $COMPOSER_CMD require --dev $PACKAGE_VERSION - name: Raise on issue on failure uses: dacbd/create-issue-action@cdb57ab6ff8862aa09fee2be6ba77a59581921c2 # v2.0.0 - if: ${{ steps.checkout.outcome == 'success' && failure() && steps.update_main.conclusion == 'failure' }} + if: ${{ steps.checkout.outcome == 'success' && failure() && steps.update_branch.conclusion == 'failure' }} with: token: ${{ secrets.GITHUB_TOKEN }} title: 'Failed to update nextcloud/ocp package on branch ${{ matrix.branches }}' body: 'Please check the output of the GitHub action and manually resolve the issues
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}
${{ steps.codeowners.outputs.codeowners }}' - - name: Reset checkout 3rdparty - if: steps.checkout.outcome == 'success' - run: | - git clean -f 3rdparty - git checkout 3rdparty - continue-on-error: true - - - name: Reset checkout vendor - if: steps.checkout.outcome == 'success' - run: | - git clean -f vendor - git checkout vendor - continue-on-error: true - - - name: Reset checkout vendor-bin - if: steps.checkout.outcome == 'success' - run: | - git clean -f vendor-bin - git checkout vendor-bin - continue-on-error: true - - name: Create Pull Request if: steps.checkout.outcome == 'success' - uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8 + uses: peter-evans/create-pull-request@5f6978faf089d4d20b00c7766989d076bb2fc7f1 # v8.1.1 with: token: ${{ secrets.COMMAND_BOT_PAT }} commit-message: 'chore(dev-deps): Bump nextcloud/ocp package' @@ -116,6 +110,11 @@ jobs: signoff: true branch: 'automated/noid/${{ matrix.branches }}-update-nextcloud-ocp' title: '[${{ matrix.branches }}] Update nextcloud/ocp dependency' + add-path: | + composer.json + composer.lock + vendor-bin/nextcloud-ocp/composer.json + vendor-bin/nextcloud-ocp/composer.lock body: | Auto-generated update of [nextcloud/ocp](https://github.com/nextcloud-deps/ocp/) dependency labels: | diff --git a/appinfo/info.xml b/appinfo/info.xml index 206d5039..d0687e5e 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -9,7 +9,7 @@ Monitoring Monitoring app with useful server information Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc. - 4.0.0-dev.0 + 4.0.0 agpl Bjoern Schiessle Ivan Sein Santiago diff --git a/composer.json b/composer.json index aadf7885..6383019f 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "require-dev": { "bamarni/composer-bin-plugin": "^1.8", "bantu/ini-get-wrapper": "1.0.1", - "nextcloud/ocp": "dev-master" + "nextcloud/ocp": "dev-stable32" }, "config": { "allow-plugins": { diff --git a/composer.lock b/composer.lock index f7128348..881f0fc3 100644 --- a/composer.lock +++ b/composer.lock @@ -4,7 +4,7 @@ "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], - "content-hash": "b00a9b9e21270c859ee9b93375745838", + "content-hash": "ad792aa6aa2d613631ea001627a550df", "packages": [], "packages-dev": [ { @@ -100,16 +100,16 @@ }, { "name": "nextcloud/ocp", - "version": "dev-master", + "version": "dev-stable32", "source": { "type": "git", "url": "https://github.com/nextcloud-deps/ocp.git", - "reference": "851f4248065d96ee9d4971bb671b363f7dbd7850" + "reference": "de6afa1f730d92792886fcdf7eacb09323fbe0bd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/851f4248065d96ee9d4971bb671b363f7dbd7850", - "reference": "851f4248065d96ee9d4971bb671b363f7dbd7850", + "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/de6afa1f730d92792886fcdf7eacb09323fbe0bd", + "reference": "de6afa1f730d92792886fcdf7eacb09323fbe0bd", "shasum": "" }, "require": { @@ -119,11 +119,10 @@ "psr/event-dispatcher": "^1.0", "psr/log": "^3.0.2" }, - "default-branch": true, "type": "library", "extra": { "branch-alias": { - "dev-master": "32.0.0-dev" + "dev-stable32": "32.0.0-dev" } }, "notification-url": "https://packagist.org/downloads/", @@ -143,9 +142,9 @@ "description": "Composer package containing Nextcloud's public OCP API and the unstable NCU API", "support": { "issues": "https://github.com/nextcloud-deps/ocp/issues", - "source": "https://github.com/nextcloud-deps/ocp/tree/master" + "source": "https://github.com/nextcloud-deps/ocp/tree/stable32" }, - "time": "2025-08-30T00:45:22+00:00" + "time": "2026-08-30T02:15:57+00:00" }, { "name": "psr/clock", @@ -361,5 +360,5 @@ "platform-overrides": { "php": "8.1" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" } diff --git a/css/style.css b/css/style.css index b3603e7d..9baedcc0 100644 --- a/css/style.css +++ b/css/style.css @@ -316,3 +316,24 @@ .cpu-wrapper { width: 100%; } + +.server-info-table table { + width: 100%; +} + +.server-info-table td { + padding: 6px; +} + +.server-info__tag-wrapper { + display: flex; + flex-wrap: wrap; +} + +.server-info__php-extension-tag { + display: inline-block; + margin: 2px; + padding: 2px 12px; + border-radius: 16px; + border: 1px solid var(--color-main-text); +} \ No newline at end of file diff --git a/l10n/af.js b/l10n/af.js index 7fd5cdcc..51caa61e 100644 --- a/l10n/af.js +++ b/l10n/af.js @@ -1,20 +1,26 @@ OC.L10N.register( "serverinfo", { + "System" : "Stelsel", + "Active users" : "Aktiewe gebruikers", + "Current usage" : "Huidige gebruik", + "Database" : "Databasis", + "Type:" : "Tipe:", + "Version:" : "Weergawe:", + "Size:" : "Grootte:", + "Files" : "Lêer ", + "Details" : "Besonderhede", + "Total" : "Totaal", + "seconds" : "sekondes", + "PHP" : "PHP", + "Version" : "Weergawe", + "Users:" : "Gebruikers:", + "Temperature" : "Temperatuur", "Copied!" : "Gekopieer!", "Not supported!" : "Word nie ondersteun nie!", "Press ⌘-C to copy." : "Druk ⌘-C om te kopieer.", "Press Ctrl-C to copy." : "Druk Ctrl-C om te kopieer.", - "System" : "Stelsel", - "Temperature" : "Temperatuur", - "Size:" : "Grootte:", "Files:" : "Lêers", - "Active users" : "Aktiewe gebruikers", - "Users:" : "Gebruikers:", - "PHP" : "PHP", - "Version:" : "Weergawe:", - "Database" : "Databasis", - "Type:" : "Tipe:", "Copy" : "Kopieer" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/af.json b/l10n/af.json index 64b5e342..38bca29b 100644 --- a/l10n/af.json +++ b/l10n/af.json @@ -1,18 +1,24 @@ { "translations": { + "System" : "Stelsel", + "Active users" : "Aktiewe gebruikers", + "Current usage" : "Huidige gebruik", + "Database" : "Databasis", + "Type:" : "Tipe:", + "Version:" : "Weergawe:", + "Size:" : "Grootte:", + "Files" : "Lêer ", + "Details" : "Besonderhede", + "Total" : "Totaal", + "seconds" : "sekondes", + "PHP" : "PHP", + "Version" : "Weergawe", + "Users:" : "Gebruikers:", + "Temperature" : "Temperatuur", "Copied!" : "Gekopieer!", "Not supported!" : "Word nie ondersteun nie!", "Press ⌘-C to copy." : "Druk ⌘-C om te kopieer.", "Press Ctrl-C to copy." : "Druk Ctrl-C om te kopieer.", - "System" : "Stelsel", - "Temperature" : "Temperatuur", - "Size:" : "Grootte:", "Files:" : "Lêers", - "Active users" : "Aktiewe gebruikers", - "Users:" : "Gebruikers:", - "PHP" : "PHP", - "Version:" : "Weergawe:", - "Database" : "Databasis", - "Type:" : "Tipe:", "Copy" : "Kopieer" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/an.js b/l10n/an.js index 608fa3a5..4b0a4848 100644 --- a/l10n/an.js +++ b/l10n/an.js @@ -1,10 +1,16 @@ OC.L10N.register( "serverinfo", { + "System" : "Sistema", + "Never" : "Nunca", + "Files" : "Archivos", + "Details" : "Detalles", + "Disabled" : "Desactivau", + "Yes" : "Si", + "No" : "No", "Copied!" : "Copiado!", "Not supported!" : "No suportau!", "Press ⌘-C to copy." : "Pretar ⌘-C pa copiar.", - "Press Ctrl-C to copy." : "Pretar Ctrl-C pa copiar.", - "System" : "Sistema" + "Press Ctrl-C to copy." : "Pretar Ctrl-C pa copiar." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/an.json b/l10n/an.json index 8f205dc9..8729dd86 100644 --- a/l10n/an.json +++ b/l10n/an.json @@ -1,8 +1,14 @@ { "translations": { + "System" : "Sistema", + "Never" : "Nunca", + "Files" : "Archivos", + "Details" : "Detalles", + "Disabled" : "Desactivau", + "Yes" : "Si", + "No" : "No", "Copied!" : "Copiado!", "Not supported!" : "No suportau!", "Press ⌘-C to copy." : "Pretar ⌘-C pa copiar.", - "Press Ctrl-C to copy." : "Pretar Ctrl-C pa copiar.", - "System" : "Sistema" + "Press Ctrl-C to copy." : "Pretar Ctrl-C pa copiar." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ar.js b/l10n/ar.js index 947e3664..749e338f 100644 --- a/l10n/ar.js +++ b/l10n/ar.js @@ -1,72 +1,73 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "المعلومات عن وحدة المعالجة المركزية CPU غير متوفرة", - "CPU Usage:" : "استعمال وحدة المعالجة المركزية CPU: ", - "Load average: {percentage} % ({load}) last minute" : "معدل التحميل: {percentage} % ({load}) آخر دقيقة", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) آخر دقيقة\n{last5MinutesPercentage} % ({last5Minutes}) آخر 5 دقائق\n{last15MinutesPercentage} % ({last15Minutes}) آخر 15 دقيقة", - "RAM Usage:" : "استعمال الذاكرة العشوائية RAM: ", - "SWAP Usage:" : "استعمال ذاكرة التبديل SWAP: ", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "ذاكرة القراءة فقط RAM: المجموع : {memTotalBytes}/الاستعمال الحالي: {memUsageBytes}", - "RAM info not available" : "المعلومات عن ذاكرة القراءة فقط RAM غير متوفرة", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "ذاكرة التبديل SWAP: المجموع: {swapTotalBytes}/الاستعمال الحالي: {swapUsageBytes}", - "SWAP info not available" : "المعلومات عن ذاكرة التبديل SWAP غير متوفرة", - "Copied!" : "تمّ النسخ!", - "Not supported!" : "غير مدعوم!", - "Press ⌘-C to copy." : "إضغط ⌘-C للنسخ", - "Press Ctrl-C to copy." : "إضغط Ctrl-C للنسخ.", "System" : "النظام", + "Unknown" : "غير معروف", "Monitoring" : "المراقبة", "Monitoring app with useful server information" : "تطبيق مراقبة مع معلومات مفيدة عن الخادم", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "يوفر معلومات مفيدة عن الخادم، مثل أحمال وحدة المعالجة المركزية CPU laod، و استخدامات ذاكرة الوصول العشوائي RAM usage، و استخدامات القرص disk usage، و عدد المستخدمين، و غيرها.", - "Operating System:" : "نظام التشغيل:", - "CPU:" : "وحدة الذاكرة المركزية CPU:", - "Memory:" : "الذاكرة:", - "Server time:" : "وقت الخادم:", - "Uptime:" : "مدة استمرارية التشغل uptime:", - "Temperature" : "درجة الحرارة", + "Active users" : "المستخدمون النشطون", + "Last hour" : "آخر ساعة ", + "Last 24 Hours" : "آخر 24 ساعة", + "Last 7 Days" : "آخر 7 أيام", + "Last 30 Days" : "آخر 30 يوم", + "Webcron" : "Webcron", + "Background jobs" : "المهام التي تعمل في الخلفية بالخادم", + "Mode" : "الوضعية", + "Never" : "مُطلَقاً", "Load" : "الحمل", - "Memory" : "الذاكرة", + "CPU info not available" : "المعلومات عن وحدة المعالجة المركزية CPU غير متوفرة", + "Current usage" : "الاستخدام الحالي", + "Load average" : "متوسط الحمل", + "Database" : "قاعدة البيانات", + "Type:" : "النوع:", + "Version:" : "الأصدار:", + "Size:" : "الحجم:", + "Used" : "مستعمَلة", + "Available" : "مُتوفر", "Disk" : "القرص", + "Files" : "الملفّات", "Mount:" : "إلحاق mount:", "Filesystem:" : "نظام الملفات:", - "Size:" : "الحجم:", "Available:" : "مُتاحٌ:", "Used:" : "مُستعملٌ:", - "Files:" : "الملفات:", - "Storages:" : "وسائط التخزين:", - "Free Space:" : "المساحة الحرة:", + "Status" : "الحاله", + "Started" : "تم البدء", + "Duration" : "المُدَّة", + "When" : "متى", + "Details" : "التفاصيل", + "Succeeded" : "تمّت بنجاح", + "Failed" : "فشل", + "Running" : "ركض", + "Memory" : "الذاكرة", + "RAM info not available" : "المعلومات عن ذاكرة القراءة فقط RAM غير متوفرة", + "Total" : "المجموع", + "Output in JSON" : "المخرجات في صيغة JSON", + "Skip server update" : "تخطِّي تحديثات الخادم", + "Authentication" : "مصادقة", "Network" : "الشبكة", - "Hostname:" : "اسم المُضِيف:", - "Gateway:" : "البوابة gateway:", + "Hostname" : "اسم الإستضافة", + "Gateway" : "البوابة", + "DNS" : "نظام أسماء النطاقات", "Status:" : "الحالة status:", "Speed:" : "السرعة speed:", "Duplex:" : "الازدواج duplex:", "MAC:" : "رقم المُصنِّع للجهاز MAC:", "IPv4:" : "بروتوكول IPv4:", "IPv6:" : "بروتوكول IPv6:", - "Active users" : "المستخدمون النشطون", - "Last hour" : "آخر ساعة ", - "%s%% of all users" : "%s%% من جميع المستخدمين", - "Last 24 Hours" : "آخر 24 ساعة", - "Last 7 Days" : "آخر 7 أيام", - "Last 30 Days" : "آخر 30 يوم", - "Shares" : "مشاركة", - "Users:" : "المستخدمين:", - "Groups:" : "المجموعات:", - "Links:" : "الروابط:", - "Emails:" : "حسابات البريد الالكتروني:", - "Federated sent:" : "مرسل من السحابة الموحدة:", - "Federated received:" : "مستقبل من السحابة الموحدة:", - "Talk conversations:" : "مُحادثات Talk:", + "Keys" : "مفاتيح", + "Disabled" : "مُعطّل", + "seconds" : "ثوانٍ", + "Yes" : "نعم", + "No" : "لا", + "PHP extensions" : "إمتدادات PHP", + "Extension" : "امتداد", + "Unable to list extensions" : "تعذّر عرض قائمة بالامتدادات extensions:", "PHP" : "PHP", - "Version:" : "الأصدار:", - "Memory limit:" : "حد الذاكرة:", + "Version" : "الإصدار", "Max execution time:" : "أقصى زمن تنفيذ:", "Upload max size:" : "الحجم الأقصى للرفع:", - "OPcache Revalidate Frequency:" : "تواتر إعادة مصادقة ذاكرة التخزين المؤقت OPcache:", "Extensions:" : "الامتدادات extensions:", - "Unable to list extensions" : "تعذّر عرض قائمة بالامتدادات extensions:", "Show phpinfo" : "عرض ملف phpinfo", "FPM worker pool" : "حشد عمليات PHP-FPM", "Pool name:" : "اسم الحشد:", @@ -81,16 +82,50 @@ OC.L10N.register( "Max listen queue:" : "أقصى طول لطابور الاستماع:", "Max active processes:" : "أقصى عدد من العمليات النشطة:", "Max children reached:" : "أقصى عدد من الأطفال يتم الوصول إليهم:", - "Database" : "قاعدة البيانات", - "Type:" : "النوع:", + "CPU" : "وحدة المعالجة المركزية", + "Resource usage" : "استهلاك الموارد", + "Shares" : "مشاركة", + "Users:" : "المستخدمين:", + "Groups:" : "المجموعات:", + "Links:" : "الروابط:", + "Emails:" : "حسابات البريد الالكتروني:", + "Federated sent:" : "مرسل من السحابة الموحدة:", + "Federated received:" : "مستقبل من السحابة الموحدة:", + "Talk conversations:" : "مُحادثات Talk:", + "Average" : "متوسط", + "Warning" : "تحذير", + "Operating System:" : "نظام التشغيل:", + "CPU:" : "وحدة الذاكرة المركزية CPU:", + "Server time:" : "وقت الخادم:", + "Uptime:" : "مدة استمرارية التشغل uptime:", + "Temperature" : "درجة الحرارة", + "CPU Usage:" : "استعمال وحدة المعالجة المركزية CPU: ", + "Load average: {percentage} % ({load}) last minute" : "معدل التحميل: {percentage} % ({load}) آخر دقيقة", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) آخر دقيقة\n{last5MinutesPercentage} % ({last5Minutes}) آخر 5 دقائق\n{last15MinutesPercentage} % ({last15Minutes}) آخر 15 دقيقة", + "RAM Usage:" : "استعمال الذاكرة العشوائية RAM: ", + "SWAP Usage:" : "استعمال ذاكرة التبديل SWAP: ", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "ذاكرة القراءة فقط RAM: المجموع : {memTotalBytes}/الاستعمال الحالي: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "ذاكرة التبديل SWAP: المجموع: {swapTotalBytes}/الاستعمال الحالي: {swapUsageBytes}", + "SWAP info not available" : "المعلومات عن ذاكرة التبديل SWAP غير متوفرة", + "Copied!" : "تمّ النسخ!", + "Not supported!" : "غير مدعوم!", + "Press ⌘-C to copy." : "إضغط ⌘-C للنسخ", + "Press Ctrl-C to copy." : "إضغط Ctrl-C للنسخ.", + "Memory:" : "الذاكرة:", + "Files:" : "الملفات:", + "Storages:" : "وسائط التخزين:", + "Free Space:" : "المساحة الحرة:", + "Hostname:" : "اسم المُضِيف:", + "Gateway:" : "البوابة gateway:", + "%s%% of all users" : "%s%% من جميع المستخدمين", + "Memory limit:" : "حد الذاكرة:", + "OPcache Revalidate Frequency:" : "تواتر إعادة مصادقة ذاكرة التخزين المؤقت OPcache:", "External monitoring tool" : "أداة الرصد الخارجية", "Use this end point to connect an external monitoring tool:" : "إستعمِل هذه النقطة الحدِّيَّة end point لتوصيل أداة مراقبة خارجية:", "Copy" : "نسخ", - "Output in JSON" : "المخرجات في صيغة JSON", "Skip apps section (including apps section will send an external request to the app store)" : "تخطِّي قسم التطبيقات (تضمين قسم التطبيقات سيرسل طلب خارجي إلى متجر التطبيقات)", - "Skip server update" : "تخطِّي تحديثات الخادم", "To use an access token, please generate one then set it using the following command:" : "لاستخدام أَمَارَة وصول access token، يرجى توليد واحدةٍ ثم تعيينها باستخدام الأمر التالي:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "ثم قُم بتمرير الأَمَارَة talk برأس \"NC-Token\" عند الاستعلام عن عنوان الـ URL أعلاه.", - "Unknown Processor" : "معالِج غير معروف" + "DNS:" : "نظام تسمية النطاقات DNS:" }, "nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;"); diff --git a/l10n/ar.json b/l10n/ar.json index 3b59ed71..6a1a55f0 100644 --- a/l10n/ar.json +++ b/l10n/ar.json @@ -1,70 +1,71 @@ { "translations": { - "CPU info not available" : "المعلومات عن وحدة المعالجة المركزية CPU غير متوفرة", - "CPU Usage:" : "استعمال وحدة المعالجة المركزية CPU: ", - "Load average: {percentage} % ({load}) last minute" : "معدل التحميل: {percentage} % ({load}) آخر دقيقة", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) آخر دقيقة\n{last5MinutesPercentage} % ({last5Minutes}) آخر 5 دقائق\n{last15MinutesPercentage} % ({last15Minutes}) آخر 15 دقيقة", - "RAM Usage:" : "استعمال الذاكرة العشوائية RAM: ", - "SWAP Usage:" : "استعمال ذاكرة التبديل SWAP: ", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "ذاكرة القراءة فقط RAM: المجموع : {memTotalBytes}/الاستعمال الحالي: {memUsageBytes}", - "RAM info not available" : "المعلومات عن ذاكرة القراءة فقط RAM غير متوفرة", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "ذاكرة التبديل SWAP: المجموع: {swapTotalBytes}/الاستعمال الحالي: {swapUsageBytes}", - "SWAP info not available" : "المعلومات عن ذاكرة التبديل SWAP غير متوفرة", - "Copied!" : "تمّ النسخ!", - "Not supported!" : "غير مدعوم!", - "Press ⌘-C to copy." : "إضغط ⌘-C للنسخ", - "Press Ctrl-C to copy." : "إضغط Ctrl-C للنسخ.", "System" : "النظام", + "Unknown" : "غير معروف", "Monitoring" : "المراقبة", "Monitoring app with useful server information" : "تطبيق مراقبة مع معلومات مفيدة عن الخادم", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "يوفر معلومات مفيدة عن الخادم، مثل أحمال وحدة المعالجة المركزية CPU laod، و استخدامات ذاكرة الوصول العشوائي RAM usage، و استخدامات القرص disk usage، و عدد المستخدمين، و غيرها.", - "Operating System:" : "نظام التشغيل:", - "CPU:" : "وحدة الذاكرة المركزية CPU:", - "Memory:" : "الذاكرة:", - "Server time:" : "وقت الخادم:", - "Uptime:" : "مدة استمرارية التشغل uptime:", - "Temperature" : "درجة الحرارة", + "Active users" : "المستخدمون النشطون", + "Last hour" : "آخر ساعة ", + "Last 24 Hours" : "آخر 24 ساعة", + "Last 7 Days" : "آخر 7 أيام", + "Last 30 Days" : "آخر 30 يوم", + "Webcron" : "Webcron", + "Background jobs" : "المهام التي تعمل في الخلفية بالخادم", + "Mode" : "الوضعية", + "Never" : "مُطلَقاً", "Load" : "الحمل", - "Memory" : "الذاكرة", + "CPU info not available" : "المعلومات عن وحدة المعالجة المركزية CPU غير متوفرة", + "Current usage" : "الاستخدام الحالي", + "Load average" : "متوسط الحمل", + "Database" : "قاعدة البيانات", + "Type:" : "النوع:", + "Version:" : "الأصدار:", + "Size:" : "الحجم:", + "Used" : "مستعمَلة", + "Available" : "مُتوفر", "Disk" : "القرص", + "Files" : "الملفّات", "Mount:" : "إلحاق mount:", "Filesystem:" : "نظام الملفات:", - "Size:" : "الحجم:", "Available:" : "مُتاحٌ:", "Used:" : "مُستعملٌ:", - "Files:" : "الملفات:", - "Storages:" : "وسائط التخزين:", - "Free Space:" : "المساحة الحرة:", + "Status" : "الحاله", + "Started" : "تم البدء", + "Duration" : "المُدَّة", + "When" : "متى", + "Details" : "التفاصيل", + "Succeeded" : "تمّت بنجاح", + "Failed" : "فشل", + "Running" : "ركض", + "Memory" : "الذاكرة", + "RAM info not available" : "المعلومات عن ذاكرة القراءة فقط RAM غير متوفرة", + "Total" : "المجموع", + "Output in JSON" : "المخرجات في صيغة JSON", + "Skip server update" : "تخطِّي تحديثات الخادم", + "Authentication" : "مصادقة", "Network" : "الشبكة", - "Hostname:" : "اسم المُضِيف:", - "Gateway:" : "البوابة gateway:", + "Hostname" : "اسم الإستضافة", + "Gateway" : "البوابة", + "DNS" : "نظام أسماء النطاقات", "Status:" : "الحالة status:", "Speed:" : "السرعة speed:", "Duplex:" : "الازدواج duplex:", "MAC:" : "رقم المُصنِّع للجهاز MAC:", "IPv4:" : "بروتوكول IPv4:", "IPv6:" : "بروتوكول IPv6:", - "Active users" : "المستخدمون النشطون", - "Last hour" : "آخر ساعة ", - "%s%% of all users" : "%s%% من جميع المستخدمين", - "Last 24 Hours" : "آخر 24 ساعة", - "Last 7 Days" : "آخر 7 أيام", - "Last 30 Days" : "آخر 30 يوم", - "Shares" : "مشاركة", - "Users:" : "المستخدمين:", - "Groups:" : "المجموعات:", - "Links:" : "الروابط:", - "Emails:" : "حسابات البريد الالكتروني:", - "Federated sent:" : "مرسل من السحابة الموحدة:", - "Federated received:" : "مستقبل من السحابة الموحدة:", - "Talk conversations:" : "مُحادثات Talk:", + "Keys" : "مفاتيح", + "Disabled" : "مُعطّل", + "seconds" : "ثوانٍ", + "Yes" : "نعم", + "No" : "لا", + "PHP extensions" : "إمتدادات PHP", + "Extension" : "امتداد", + "Unable to list extensions" : "تعذّر عرض قائمة بالامتدادات extensions:", "PHP" : "PHP", - "Version:" : "الأصدار:", - "Memory limit:" : "حد الذاكرة:", + "Version" : "الإصدار", "Max execution time:" : "أقصى زمن تنفيذ:", "Upload max size:" : "الحجم الأقصى للرفع:", - "OPcache Revalidate Frequency:" : "تواتر إعادة مصادقة ذاكرة التخزين المؤقت OPcache:", "Extensions:" : "الامتدادات extensions:", - "Unable to list extensions" : "تعذّر عرض قائمة بالامتدادات extensions:", "Show phpinfo" : "عرض ملف phpinfo", "FPM worker pool" : "حشد عمليات PHP-FPM", "Pool name:" : "اسم الحشد:", @@ -79,16 +80,50 @@ "Max listen queue:" : "أقصى طول لطابور الاستماع:", "Max active processes:" : "أقصى عدد من العمليات النشطة:", "Max children reached:" : "أقصى عدد من الأطفال يتم الوصول إليهم:", - "Database" : "قاعدة البيانات", - "Type:" : "النوع:", + "CPU" : "وحدة المعالجة المركزية", + "Resource usage" : "استهلاك الموارد", + "Shares" : "مشاركة", + "Users:" : "المستخدمين:", + "Groups:" : "المجموعات:", + "Links:" : "الروابط:", + "Emails:" : "حسابات البريد الالكتروني:", + "Federated sent:" : "مرسل من السحابة الموحدة:", + "Federated received:" : "مستقبل من السحابة الموحدة:", + "Talk conversations:" : "مُحادثات Talk:", + "Average" : "متوسط", + "Warning" : "تحذير", + "Operating System:" : "نظام التشغيل:", + "CPU:" : "وحدة الذاكرة المركزية CPU:", + "Server time:" : "وقت الخادم:", + "Uptime:" : "مدة استمرارية التشغل uptime:", + "Temperature" : "درجة الحرارة", + "CPU Usage:" : "استعمال وحدة المعالجة المركزية CPU: ", + "Load average: {percentage} % ({load}) last minute" : "معدل التحميل: {percentage} % ({load}) آخر دقيقة", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) آخر دقيقة\n{last5MinutesPercentage} % ({last5Minutes}) آخر 5 دقائق\n{last15MinutesPercentage} % ({last15Minutes}) آخر 15 دقيقة", + "RAM Usage:" : "استعمال الذاكرة العشوائية RAM: ", + "SWAP Usage:" : "استعمال ذاكرة التبديل SWAP: ", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "ذاكرة القراءة فقط RAM: المجموع : {memTotalBytes}/الاستعمال الحالي: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "ذاكرة التبديل SWAP: المجموع: {swapTotalBytes}/الاستعمال الحالي: {swapUsageBytes}", + "SWAP info not available" : "المعلومات عن ذاكرة التبديل SWAP غير متوفرة", + "Copied!" : "تمّ النسخ!", + "Not supported!" : "غير مدعوم!", + "Press ⌘-C to copy." : "إضغط ⌘-C للنسخ", + "Press Ctrl-C to copy." : "إضغط Ctrl-C للنسخ.", + "Memory:" : "الذاكرة:", + "Files:" : "الملفات:", + "Storages:" : "وسائط التخزين:", + "Free Space:" : "المساحة الحرة:", + "Hostname:" : "اسم المُضِيف:", + "Gateway:" : "البوابة gateway:", + "%s%% of all users" : "%s%% من جميع المستخدمين", + "Memory limit:" : "حد الذاكرة:", + "OPcache Revalidate Frequency:" : "تواتر إعادة مصادقة ذاكرة التخزين المؤقت OPcache:", "External monitoring tool" : "أداة الرصد الخارجية", "Use this end point to connect an external monitoring tool:" : "إستعمِل هذه النقطة الحدِّيَّة end point لتوصيل أداة مراقبة خارجية:", "Copy" : "نسخ", - "Output in JSON" : "المخرجات في صيغة JSON", "Skip apps section (including apps section will send an external request to the app store)" : "تخطِّي قسم التطبيقات (تضمين قسم التطبيقات سيرسل طلب خارجي إلى متجر التطبيقات)", - "Skip server update" : "تخطِّي تحديثات الخادم", "To use an access token, please generate one then set it using the following command:" : "لاستخدام أَمَارَة وصول access token، يرجى توليد واحدةٍ ثم تعيينها باستخدام الأمر التالي:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "ثم قُم بتمرير الأَمَارَة talk برأس \"NC-Token\" عند الاستعلام عن عنوان الـ URL أعلاه.", - "Unknown Processor" : "معالِج غير معروف" + "DNS:" : "نظام تسمية النطاقات DNS:" },"pluralForm" :"nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;" } \ No newline at end of file diff --git a/l10n/ast.js b/l10n/ast.js index e3da65ab..71209673 100644 --- a/l10n/ast.js +++ b/l10n/ast.js @@ -1,52 +1,80 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "La información de la CPU nun ta disponible", - "RAM info not available" : "La información de la RAM nun ta disponible", - "SWAP info not available" : "La información del espaciu d'intercambéu nun ta disponible", - "Copied!" : "¡Copióse!", - "Not supported!" : "¡Nun ye compatible!", - "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", - "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", "System" : "Sistema", + "Unknown" : "Desconocí­u", "Monitoring" : "Supervisión", - "Operating System:" : "Sistema operativu", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Hora del sirvidor:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Webcron" : "Webcron", + "Background jobs" : "Trabayos en segundu planu", + "Mode" : "Mou", + "Never" : "Enxamás", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "La información de la CPU nun ta disponible", + "Current usage" : "Usu actual", + "Load average" : "Promediu de carga", + "Database" : "Base de datos", + "Type:" : "Tipu:", + "Version:" : "Versión:", + "Size:" : "Tamañu.", + "Available" : "Disponible", "Disk" : "Discu", + "Files" : "Ficheros", "Mount:" : "Montaxe:", "Filesystem:" : "Sistema de ficheros:", - "Size:" : "Tamañu.", "Available:" : "Disponible:", "Used:" : "N'usu:", - "Files:" : "Ficheros:", - "Storages:" : "Almacenamientos:", - "Free Space:" : "Espaciu llibre:", + "Status" : "Estáu", + "Duration" : "Duración", + "Details" : "Detalles", + "Failed" : "Falló", + "Memory" : "Memoria", + "RAM info not available" : "La información de la RAM nun ta disponible", + "Total" : "Total", + "Configuration" : "Configuración", + "Authentication" : "Autenticación", "Network" : "Rede", - "Hostname:" : "Agospiador:", - "Gateway:" : "Pasera:", + "Hostname" : "Agospiador", "Status:" : "Estáu:", "Speed:" : "Velocidá:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", + "Keys" : "Claves", + "Disabled" : "Desactivóse", + "seconds" : "segundos", + "Yes" : "Sí", + "No" : "Non", + "PHP extensions" : "Estensiones de PHP", + "Extension" : "Estensión", + "Unable to list extensions" : "Nun ye posible llistaR les estensiones", + "PHP" : "PHP", + "Version" : "Versión", + "Extensions:" : "Estensiones:", + "Show phpinfo" : "Amosar phpinfo", + "Resource usage" : "Usu de recursos", "Shares" : "Comparticiones", "Users:" : "Usuarios:", "Groups:" : "Grupos:", - "PHP" : "PHP", - "Version:" : "Versión:", + "Warning" : "Alvertencia", + "Operating System:" : "Sistema operativu", + "CPU:" : "CPU:", + "Server time:" : "Hora del sirvidor:", + "Temperature" : "Temperatura", + "SWAP info not available" : "La información del espaciu d'intercambéu nun ta disponible", + "Copied!" : "¡Copióse!", + "Not supported!" : "¡Nun ye compatible!", + "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", + "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", + "Memory:" : "Memoria:", + "Files:" : "Ficheros:", + "Storages:" : "Almacenamientos:", + "Free Space:" : "Espaciu llibre:", + "Hostname:" : "Agospiador:", + "Gateway:" : "Pasera:", "Memory limit:" : "Llende de memoria:", - "Extensions:" : "Estensiones:", - "Unable to list extensions" : "Nun ye posible llistaR les estensiones", - "Show phpinfo" : "Amosar phpinfo", - "Database" : "Base de datos", - "Type:" : "Tipu:", "External monitoring tool" : "Ferramienta de supervisión esterna", - "Copy" : "Copiar" + "Copy" : "Copiar", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ast.json b/l10n/ast.json index 3e659f8e..eec85f89 100644 --- a/l10n/ast.json +++ b/l10n/ast.json @@ -1,50 +1,78 @@ { "translations": { - "CPU info not available" : "La información de la CPU nun ta disponible", - "RAM info not available" : "La información de la RAM nun ta disponible", - "SWAP info not available" : "La información del espaciu d'intercambéu nun ta disponible", - "Copied!" : "¡Copióse!", - "Not supported!" : "¡Nun ye compatible!", - "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", - "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", "System" : "Sistema", + "Unknown" : "Desconocí­u", "Monitoring" : "Supervisión", - "Operating System:" : "Sistema operativu", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Hora del sirvidor:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Webcron" : "Webcron", + "Background jobs" : "Trabayos en segundu planu", + "Mode" : "Mou", + "Never" : "Enxamás", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "La información de la CPU nun ta disponible", + "Current usage" : "Usu actual", + "Load average" : "Promediu de carga", + "Database" : "Base de datos", + "Type:" : "Tipu:", + "Version:" : "Versión:", + "Size:" : "Tamañu.", + "Available" : "Disponible", "Disk" : "Discu", + "Files" : "Ficheros", "Mount:" : "Montaxe:", "Filesystem:" : "Sistema de ficheros:", - "Size:" : "Tamañu.", "Available:" : "Disponible:", "Used:" : "N'usu:", - "Files:" : "Ficheros:", - "Storages:" : "Almacenamientos:", - "Free Space:" : "Espaciu llibre:", + "Status" : "Estáu", + "Duration" : "Duración", + "Details" : "Detalles", + "Failed" : "Falló", + "Memory" : "Memoria", + "RAM info not available" : "La información de la RAM nun ta disponible", + "Total" : "Total", + "Configuration" : "Configuración", + "Authentication" : "Autenticación", "Network" : "Rede", - "Hostname:" : "Agospiador:", - "Gateway:" : "Pasera:", + "Hostname" : "Agospiador", "Status:" : "Estáu:", "Speed:" : "Velocidá:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", + "Keys" : "Claves", + "Disabled" : "Desactivóse", + "seconds" : "segundos", + "Yes" : "Sí", + "No" : "Non", + "PHP extensions" : "Estensiones de PHP", + "Extension" : "Estensión", + "Unable to list extensions" : "Nun ye posible llistaR les estensiones", + "PHP" : "PHP", + "Version" : "Versión", + "Extensions:" : "Estensiones:", + "Show phpinfo" : "Amosar phpinfo", + "Resource usage" : "Usu de recursos", "Shares" : "Comparticiones", "Users:" : "Usuarios:", "Groups:" : "Grupos:", - "PHP" : "PHP", - "Version:" : "Versión:", + "Warning" : "Alvertencia", + "Operating System:" : "Sistema operativu", + "CPU:" : "CPU:", + "Server time:" : "Hora del sirvidor:", + "Temperature" : "Temperatura", + "SWAP info not available" : "La información del espaciu d'intercambéu nun ta disponible", + "Copied!" : "¡Copióse!", + "Not supported!" : "¡Nun ye compatible!", + "Press ⌘-C to copy." : "Primi ⌘-C pa copiar.", + "Press Ctrl-C to copy." : "Primi Ctrl-C pa copiar.", + "Memory:" : "Memoria:", + "Files:" : "Ficheros:", + "Storages:" : "Almacenamientos:", + "Free Space:" : "Espaciu llibre:", + "Hostname:" : "Agospiador:", + "Gateway:" : "Pasera:", "Memory limit:" : "Llende de memoria:", - "Extensions:" : "Estensiones:", - "Unable to list extensions" : "Nun ye posible llistaR les estensiones", - "Show phpinfo" : "Amosar phpinfo", - "Database" : "Base de datos", - "Type:" : "Tipu:", "External monitoring tool" : "Ferramienta de supervisión esterna", - "Copy" : "Copiar" + "Copy" : "Copiar", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/az.js b/l10n/az.js index 1594dd55..6710d4af 100644 --- a/l10n/az.js +++ b/l10n/az.js @@ -1,16 +1,29 @@ OC.L10N.register( "serverinfo", { + "System" : "Sistem", + "Webcron" : "Webcron", + "Background jobs" : "Background işlər", + "Never" : "Heç vaxt", + "Database" : "Verilənlər bazası", + "Type:" : "Tip:", + "Size:" : "Həcm:", + "Status" : "Status", + "Details" : "Detallar", + "Authentication" : "Autentifikasiya", + "Hostname" : "Sahibadı", + "Disabled" : "Dayandırılıb", + "seconds" : "saniyələr", + "Yes" : "Bəli", + "No" : "Xeyir", + "PHP" : "PHP", + "Version" : "Versiya", + "Shares" : "Yayımlanmalar", + "Warning" : "Xəbərdarlıq", "Copied!" : "Kopyalandı!", "Not supported!" : "Dəstəklənmir!", "Press ⌘-C to copy." : "Kopyalamaq üçün ⌘-C basın.", "Press Ctrl-C to copy." : "Kopyalamaq üçün Ctrl-C basın.", - "System" : "Sistem", - "Size:" : "Həcm:", - "Shares" : "Yayımlanmalar", - "PHP" : "PHP", - "Database" : "Verilənlər bazası", - "Type:" : "Tip:", "Copy" : "Kopyala" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/az.json b/l10n/az.json index 255bce10..1d13e4a9 100644 --- a/l10n/az.json +++ b/l10n/az.json @@ -1,14 +1,27 @@ { "translations": { + "System" : "Sistem", + "Webcron" : "Webcron", + "Background jobs" : "Background işlər", + "Never" : "Heç vaxt", + "Database" : "Verilənlər bazası", + "Type:" : "Tip:", + "Size:" : "Həcm:", + "Status" : "Status", + "Details" : "Detallar", + "Authentication" : "Autentifikasiya", + "Hostname" : "Sahibadı", + "Disabled" : "Dayandırılıb", + "seconds" : "saniyələr", + "Yes" : "Bəli", + "No" : "Xeyir", + "PHP" : "PHP", + "Version" : "Versiya", + "Shares" : "Yayımlanmalar", + "Warning" : "Xəbərdarlıq", "Copied!" : "Kopyalandı!", "Not supported!" : "Dəstəklənmir!", "Press ⌘-C to copy." : "Kopyalamaq üçün ⌘-C basın.", "Press Ctrl-C to copy." : "Kopyalamaq üçün Ctrl-C basın.", - "System" : "Sistem", - "Size:" : "Həcm:", - "Shares" : "Yayımlanmalar", - "PHP" : "PHP", - "Database" : "Verilənlər bazası", - "Type:" : "Tip:", "Copy" : "Kopyala" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/be.js b/l10n/be.js index f842d27e..eed657a7 100644 --- a/l10n/be.js +++ b/l10n/be.js @@ -1,16 +1,42 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Скапіявана!", - "Not supported!" : "Не падтрымліваецца!", - "Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.", - "Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.", - "Size:" : "Памер:", + "System" : "Сістэма", + "Unknown" : "Невядомы", "Last hour" : "Апошняя гадзіна", "Last 24 Hours" : "Апошнія 24 гадзіны", "Last 7 Days" : "Апошнія 7 дзён", "Last 30 Days" : "Апошнія 30 дзён", + "Webcron" : "Webcron", + "Never" : "Ніколі", + "Threads" : "Гутаркі", + "Database" : "База даных", "Type:" : "Тып:", - "Copy" : "Капіяваць" + "Size:" : "Памер:", + "Files" : "Файлы", + "Status" : "Статус", + "Duration" : "Працягласць", + "Details" : "Падрабязнасці", + "Failed" : "Не ўдалося", + "Total" : "Усяго", + "Configuration" : "Канфігурацыя", + "Authentication" : "Аўтэнтыфікацыя", + "Hostname" : "Хост", + "Keys" : "Ключы", + "Disabled" : "Адключаны", + "seconds" : "с", + "Yes" : "Так", + "No" : "Не", + "Extension" : "Пашырэнне", + "Version" : "Версія", + "Warning" : "Папярэджанне", + "Operating System:" : "Аперацыйная сістэма:", + "Copied!" : "Скапіявана!", + "Not supported!" : "Не падтрымліваецца!", + "Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.", + "Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.", + "Copy" : "Капіяваць", + "To use an access token, please generate one then set it using the following command:" : "Каб выкарыстоўваць токен доступу, стварыце яго, а затым задайце з дапамогай наступнай каманды:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затым перадайце токен з загалоўкам \"NC-Token\" пры запыце вышэйпаказанага URL-адраса." }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/l10n/be.json b/l10n/be.json index 0f681d5e..a5614396 100644 --- a/l10n/be.json +++ b/l10n/be.json @@ -1,14 +1,40 @@ { "translations": { - "Copied!" : "Скапіявана!", - "Not supported!" : "Не падтрымліваецца!", - "Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.", - "Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.", - "Size:" : "Памер:", + "System" : "Сістэма", + "Unknown" : "Невядомы", "Last hour" : "Апошняя гадзіна", "Last 24 Hours" : "Апошнія 24 гадзіны", "Last 7 Days" : "Апошнія 7 дзён", "Last 30 Days" : "Апошнія 30 дзён", + "Webcron" : "Webcron", + "Never" : "Ніколі", + "Threads" : "Гутаркі", + "Database" : "База даных", "Type:" : "Тып:", - "Copy" : "Капіяваць" + "Size:" : "Памер:", + "Files" : "Файлы", + "Status" : "Статус", + "Duration" : "Працягласць", + "Details" : "Падрабязнасці", + "Failed" : "Не ўдалося", + "Total" : "Усяго", + "Configuration" : "Канфігурацыя", + "Authentication" : "Аўтэнтыфікацыя", + "Hostname" : "Хост", + "Keys" : "Ключы", + "Disabled" : "Адключаны", + "seconds" : "с", + "Yes" : "Так", + "No" : "Не", + "Extension" : "Пашырэнне", + "Version" : "Версія", + "Warning" : "Папярэджанне", + "Operating System:" : "Аперацыйная сістэма:", + "Copied!" : "Скапіявана!", + "Not supported!" : "Не падтрымліваецца!", + "Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.", + "Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.", + "Copy" : "Капіяваць", + "To use an access token, please generate one then set it using the following command:" : "Каб выкарыстоўваць токен доступу, стварыце яго, а затым задайце з дапамогай наступнай каманды:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затым перадайце токен з загалоўкам \"NC-Token\" пры запыце вышэйпаказанага URL-адраса." },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/l10n/bg.js b/l10n/bg.js index d8ee4e26..77ff9e1b 100644 --- a/l10n/bg.js +++ b/l10n/bg.js @@ -1,49 +1,74 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Информацията за процесора не е налична", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Общо: {memTotalBytes}/Текущо използване: {memUsageBytes}", - "RAM info not available" : "Информацията за RAM не е налична", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Общо: {swapTotalBytes}/Текущо използване: {swapUsageBytes}", - "SWAP info not available" : "Информацията за SWAP не е налична", - "Copied!" : "Копирано!", - "Not supported!" : "Не се поддържа!", - "Press ⌘-C to copy." : "За копиране натиснете ⌘-C.", - "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C.", "System" : "Системен", + "Unknown" : "Неизвестен", "Monitoring" : "Наблюдение", "Monitoring app with useful server information" : "Приложение за наблюдение с полезна информация за сървъра", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставя полезна информация за сървъра, като натоварване на процесора, използване на RAM, използване на диск, брой потребители и др.", - "Operating System:" : "Операционна система:", - "CPU:" : "CPU /ПРОЦЕСОР/:", - "Memory:" : "Памет:", - "Server time:" : "Време на сървъра:", - "Uptime:" : "Време на работа:", - "Temperature" : "Температура", + "Active users" : "Активни потребители", + "Last hour" : "Последния час", + "Last 7 Days" : "Последните 7 дни", + "Last 30 Days" : "Последните 30 дни", + "Webcron" : "Webcron", + "Background jobs" : "Фонови процеси", + "Mode" : "Режим", + "Never" : "Никога", "Load" : "Зареждане", - "Memory" : "Памет", + "CPU info not available" : "Информацията за процесора не е налична", + "Current usage" : "Текуща употреба", + "Load average" : "Средно натоварване", + "Database" : "База данни", + "Type:" : "Тип:", + "Version:" : "Версия:", + "Size:" : "Размер:", + "Used" : "Заети", + "Available" : "Наличен.", "Disk" : "Диск", + "Files" : "Файлове", + "Storages" : "Хранилища", "Mount:" : "Монтиране:", "Filesystem:" : "Файлова система:", - "Size:" : "Размер:", "Available:" : "Наличен:", "Used:" : "Използван:", - "Files:" : "Файлове:", - "Storages:" : "Хранилища:", - "Free Space:" : "Свободно място:", + "Status" : "Състояние", + "Started" : "Стартиран", + "Duration" : "Продължителност", + "Job" : "Работа", + "When" : "Кога", + "Details" : "Подробности", + "Failed" : "Неуспешно", + "Running" : "Бягане", + "Memory" : "Памет", + "RAM info not available" : "Информацията за RAM не е налична", + "Total" : "Общо", + "Configuration" : "Конфигурация", + "Authentication" : "Удостоверяване", "Network" : "Мрежа", - "Hostname:" : "Име на хост:", - "Gateway:" : "Шлюз:", + "Hostname" : "Хост", + "Gateway" : "Шлюз", + "DNS" : "DNS", "Status:" : "Състояние:", "Speed:" : "Скорост:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активни потребители", - "Last hour" : "Последния час", - "Last 7 Days" : "Последните 7 дни", - "Last 30 Days" : "Последните 30 дни", + "Keys" : "Ключове", + "Disabled" : "Изключено", + "seconds" : "секунди", + "Yes" : "Да", + "No" : "Не", + "PHP extensions" : "PHP разширения", + "Extension" : "Разширение", + "Unable to list extensions" : "Невъзможност за изброяване на разширенията", + "PHP" : "PHP", + "Version" : "Версия", + "Memory limit" : "Лимит на паметта", + "Max execution time:" : "Максимално време за изпълнение:", + "Upload max size:" : "Максимално време за качване:", + "Extensions:" : "Разширения", + "CPU" : "Процесор", "Shares" : "Споделени папки", "Users:" : "Потребители:", "Groups:" : "Групи:", @@ -52,19 +77,31 @@ OC.L10N.register( "Federated sent:" : "Изпратено федерирано:", "Federated received:" : "Получено федерирано:", "Talk conversations:" : "Talk разговори:", - "PHP" : "PHP", - "Version:" : "Версия:", + "Average" : "Средно аритметично", + "Warning" : "Внимание", + "Operating System:" : "Операционна система:", + "CPU:" : "CPU /ПРОЦЕСОР/:", + "Server time:" : "Време на сървъра:", + "Uptime:" : "Време на работа:", + "Temperature" : "Температура", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Общо: {memTotalBytes}/Текущо използване: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Общо: {swapTotalBytes}/Текущо използване: {swapUsageBytes}", + "SWAP info not available" : "Информацията за SWAP не е налична", + "Copied!" : "Копирано!", + "Not supported!" : "Не се поддържа!", + "Press ⌘-C to copy." : "За копиране натиснете ⌘-C.", + "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C.", + "Memory:" : "Памет:", + "Files:" : "Файлове:", + "Storages:" : "Хранилища:", + "Free Space:" : "Свободно място:", + "Hostname:" : "Име на хост:", + "Gateway:" : "Шлюз:", "Memory limit:" : "Ограничение на паметта:", - "Max execution time:" : "Максимално време за изпълнение:", - "Upload max size:" : "Максимално време за качване:", - "Extensions:" : "Разширения", - "Unable to list extensions" : "Невъзможност за изброяване на разширенията", - "Database" : "База данни", - "Type:" : "Тип:", "External monitoring tool" : "Външно средство за мониторинг", "Copy" : "Копиране", "To use an access token, please generate one then set it using the following command:" : "За да използвате токен за достъп, моля, генерирайте такъв, след което го задайте с помощта на следната команда:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "След това предайте токена със заглавката „NC-Token “, когато правите заявка към горния URL адрес.", - "Unknown Processor" : "Неизвестен процесор" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/bg.json b/l10n/bg.json index b1997a93..18420197 100644 --- a/l10n/bg.json +++ b/l10n/bg.json @@ -1,47 +1,72 @@ { "translations": { - "CPU info not available" : "Информацията за процесора не е налична", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Общо: {memTotalBytes}/Текущо използване: {memUsageBytes}", - "RAM info not available" : "Информацията за RAM не е налична", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Общо: {swapTotalBytes}/Текущо използване: {swapUsageBytes}", - "SWAP info not available" : "Информацията за SWAP не е налична", - "Copied!" : "Копирано!", - "Not supported!" : "Не се поддържа!", - "Press ⌘-C to copy." : "За копиране натиснете ⌘-C.", - "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C.", "System" : "Системен", + "Unknown" : "Неизвестен", "Monitoring" : "Наблюдение", "Monitoring app with useful server information" : "Приложение за наблюдение с полезна информация за сървъра", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставя полезна информация за сървъра, като натоварване на процесора, използване на RAM, използване на диск, брой потребители и др.", - "Operating System:" : "Операционна система:", - "CPU:" : "CPU /ПРОЦЕСОР/:", - "Memory:" : "Памет:", - "Server time:" : "Време на сървъра:", - "Uptime:" : "Време на работа:", - "Temperature" : "Температура", + "Active users" : "Активни потребители", + "Last hour" : "Последния час", + "Last 7 Days" : "Последните 7 дни", + "Last 30 Days" : "Последните 30 дни", + "Webcron" : "Webcron", + "Background jobs" : "Фонови процеси", + "Mode" : "Режим", + "Never" : "Никога", "Load" : "Зареждане", - "Memory" : "Памет", + "CPU info not available" : "Информацията за процесора не е налична", + "Current usage" : "Текуща употреба", + "Load average" : "Средно натоварване", + "Database" : "База данни", + "Type:" : "Тип:", + "Version:" : "Версия:", + "Size:" : "Размер:", + "Used" : "Заети", + "Available" : "Наличен.", "Disk" : "Диск", + "Files" : "Файлове", + "Storages" : "Хранилища", "Mount:" : "Монтиране:", "Filesystem:" : "Файлова система:", - "Size:" : "Размер:", "Available:" : "Наличен:", "Used:" : "Използван:", - "Files:" : "Файлове:", - "Storages:" : "Хранилища:", - "Free Space:" : "Свободно място:", + "Status" : "Състояние", + "Started" : "Стартиран", + "Duration" : "Продължителност", + "Job" : "Работа", + "When" : "Кога", + "Details" : "Подробности", + "Failed" : "Неуспешно", + "Running" : "Бягане", + "Memory" : "Памет", + "RAM info not available" : "Информацията за RAM не е налична", + "Total" : "Общо", + "Configuration" : "Конфигурация", + "Authentication" : "Удостоверяване", "Network" : "Мрежа", - "Hostname:" : "Име на хост:", - "Gateway:" : "Шлюз:", + "Hostname" : "Хост", + "Gateway" : "Шлюз", + "DNS" : "DNS", "Status:" : "Състояние:", "Speed:" : "Скорост:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активни потребители", - "Last hour" : "Последния час", - "Last 7 Days" : "Последните 7 дни", - "Last 30 Days" : "Последните 30 дни", + "Keys" : "Ключове", + "Disabled" : "Изключено", + "seconds" : "секунди", + "Yes" : "Да", + "No" : "Не", + "PHP extensions" : "PHP разширения", + "Extension" : "Разширение", + "Unable to list extensions" : "Невъзможност за изброяване на разширенията", + "PHP" : "PHP", + "Version" : "Версия", + "Memory limit" : "Лимит на паметта", + "Max execution time:" : "Максимално време за изпълнение:", + "Upload max size:" : "Максимално време за качване:", + "Extensions:" : "Разширения", + "CPU" : "Процесор", "Shares" : "Споделени папки", "Users:" : "Потребители:", "Groups:" : "Групи:", @@ -50,19 +75,31 @@ "Federated sent:" : "Изпратено федерирано:", "Federated received:" : "Получено федерирано:", "Talk conversations:" : "Talk разговори:", - "PHP" : "PHP", - "Version:" : "Версия:", + "Average" : "Средно аритметично", + "Warning" : "Внимание", + "Operating System:" : "Операционна система:", + "CPU:" : "CPU /ПРОЦЕСОР/:", + "Server time:" : "Време на сървъра:", + "Uptime:" : "Време на работа:", + "Temperature" : "Температура", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Общо: {memTotalBytes}/Текущо използване: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Общо: {swapTotalBytes}/Текущо използване: {swapUsageBytes}", + "SWAP info not available" : "Информацията за SWAP не е налична", + "Copied!" : "Копирано!", + "Not supported!" : "Не се поддържа!", + "Press ⌘-C to copy." : "За копиране натиснете ⌘-C.", + "Press Ctrl-C to copy." : "За копиране натиснете Ctrl-C.", + "Memory:" : "Памет:", + "Files:" : "Файлове:", + "Storages:" : "Хранилища:", + "Free Space:" : "Свободно място:", + "Hostname:" : "Име на хост:", + "Gateway:" : "Шлюз:", "Memory limit:" : "Ограничение на паметта:", - "Max execution time:" : "Максимално време за изпълнение:", - "Upload max size:" : "Максимално време за качване:", - "Extensions:" : "Разширения", - "Unable to list extensions" : "Невъзможност за изброяване на разширенията", - "Database" : "База данни", - "Type:" : "Тип:", "External monitoring tool" : "Външно средство за мониторинг", "Copy" : "Копиране", "To use an access token, please generate one then set it using the following command:" : "За да използвате токен за достъп, моля, генерирайте такъв, след което го задайте с помощта на следната команда:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "След това предайте токена със заглавката „NC-Token “, когато правите заявка към горния URL адрес.", - "Unknown Processor" : "Неизвестен процесор" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js index e92ac8de..9c84db22 100644 --- a/l10n/bn_BD.js +++ b/l10n/bn_BD.js @@ -1,13 +1,22 @@ OC.L10N.register( "serverinfo", { + "Unknown" : "অজানা", + "Type:" : "ধরণঃ", + "Size:" : "আয়তনঃ", + "Details" : "বিসতারিত", + "Hostname" : "হোস্টনেম", + "Disabled" : "অকার্যকর", + "seconds" : "সেকেন্ড", + "Yes" : "হ্যাঁ", + "No" : "না", + "Version" : "ভার্সন", + "Shares" : "ভাগাভাগি", + "Warning" : "সতর্কবাণী", + "Temperature" : "তাপমাত্রা", "Copied!" : "অনুলিপি!", "Not supported!" : "সমর্থিত নয়! ", "Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।", - "Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।", - "Temperature" : "তাপমাত্রা", - "Size:" : "আয়তনঃ", - "Shares" : "ভাগাভাগি", - "Type:" : "ধরণঃ" + "Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json index dc88418f..a6d65f37 100644 --- a/l10n/bn_BD.json +++ b/l10n/bn_BD.json @@ -1,11 +1,20 @@ { "translations": { + "Unknown" : "অজানা", + "Type:" : "ধরণঃ", + "Size:" : "আয়তনঃ", + "Details" : "বিসতারিত", + "Hostname" : "হোস্টনেম", + "Disabled" : "অকার্যকর", + "seconds" : "সেকেন্ড", + "Yes" : "হ্যাঁ", + "No" : "না", + "Version" : "ভার্সন", + "Shares" : "ভাগাভাগি", + "Warning" : "সতর্কবাণী", + "Temperature" : "তাপমাত্রা", "Copied!" : "অনুলিপি!", "Not supported!" : "সমর্থিত নয়! ", "Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।", - "Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।", - "Temperature" : "তাপমাত্রা", - "Size:" : "আয়তনঃ", - "Shares" : "ভাগাভাগি", - "Type:" : "ধরণঃ" + "Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/br.js b/l10n/br.js index bbf439e5..bd07f024 100644 --- a/l10n/br.js +++ b/l10n/br.js @@ -1,15 +1,30 @@ OC.L10N.register( "serverinfo", { + "System" : "Sistem", + "Unknown" : "Dianv", + "Background jobs" : "Labour en a-dreñv", + "Mode" : "Mod", + "Never" : "James", + "Type:" : "Seurt:", + "Available" : "Vak", + "Status" : "Statud", + "Started" : "Kroget", + "Details" : "Munudoù", + "Failed" : "C'hwitet", + "Running" : "O redek", + "Network" : "Rouedad", + "Hostname" : "Anv-ost", + "Disabled" : "Disaotreañ", + "No" : "Ket", + "PHP" : "PHP", + "Version" : "Stumm", + "Shares" : "Rannañ", + "Warning" : "Kemenadenn", "Copied!" : "Eilet eo !", "Not supported!" : "Diembreget eo ! ", "Press ⌘-C to copy." : "Pouezañ war ⌘+C evit eilañ. ", "Press Ctrl-C to copy." : "Pouezañ war Ctrl+C evit eilañ. ", - "System" : "Sistem", - "Network" : "Rouedad", - "Shares" : "Rannañ", - "PHP" : "PHP", - "Type:" : "Seurt:", "Copy" : "Eilañ" }, "nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);"); diff --git a/l10n/br.json b/l10n/br.json index ec435c14..36956f94 100644 --- a/l10n/br.json +++ b/l10n/br.json @@ -1,13 +1,28 @@ { "translations": { + "System" : "Sistem", + "Unknown" : "Dianv", + "Background jobs" : "Labour en a-dreñv", + "Mode" : "Mod", + "Never" : "James", + "Type:" : "Seurt:", + "Available" : "Vak", + "Status" : "Statud", + "Started" : "Kroget", + "Details" : "Munudoù", + "Failed" : "C'hwitet", + "Running" : "O redek", + "Network" : "Rouedad", + "Hostname" : "Anv-ost", + "Disabled" : "Disaotreañ", + "No" : "Ket", + "PHP" : "PHP", + "Version" : "Stumm", + "Shares" : "Rannañ", + "Warning" : "Kemenadenn", "Copied!" : "Eilet eo !", "Not supported!" : "Diembreget eo ! ", "Press ⌘-C to copy." : "Pouezañ war ⌘+C evit eilañ. ", "Press Ctrl-C to copy." : "Pouezañ war Ctrl+C evit eilañ. ", - "System" : "Sistem", - "Network" : "Rouedad", - "Shares" : "Rannañ", - "PHP" : "PHP", - "Type:" : "Seurt:", "Copy" : "Eilañ" },"pluralForm" :"nplurals=5; plural=((n%10 == 1) && (n%100 != 11) && (n%100 !=71) && (n%100 !=91) ? 0 :(n%10 == 2) && (n%100 != 12) && (n%100 !=72) && (n%100 !=92) ? 1 :(n%10 ==3 || n%10==4 || n%10==9) && (n%100 < 10 || n% 100 > 19) && (n%100 < 70 || n%100 > 79) && (n%100 < 90 || n%100 > 99) ? 2 :(n != 0 && n % 1000000 == 0) ? 3 : 4);" } \ No newline at end of file diff --git a/l10n/ca.js b/l10n/ca.js index 80dbc561..5cbb440f 100644 --- a/l10n/ca.js +++ b/l10n/ca.js @@ -1,47 +1,71 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informació del processador no disponible", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Ús actual: {memUsageBytes}", - "RAM info not available" : "La informació de la RAM no està disponible", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Ús actual: {swapUsageBytes}", - "SWAP info not available" : "La informació de SWAP no està disponible", - "Copied!" : "S'ha copiat!", - "Not supported!" : "No suportat!", - "Press ⌘-C to copy." : "Premeu ⌘-C per còpia.", - "Press Ctrl-C to copy." : "Premeu Ctrl-C per còpia.", "System" : "Sistema", + "Unknown" : "Desconegut", "Monitoring" : "Monitorització", "Monitoring app with useful server information" : "Aplicació per monitoritzar amb informació útil del servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Proporciona informació útil del servidor, com ara la càrrega del processador, l’ús de memòria RAM, l’ús del disc, el nombre d’usuaris, etc.", - "Operating System:" : "Sistema operatiu:", - "CPU:" : "CPU:", - "Memory:" : "Memòria:", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Temps de funcionament:", - "Temperature" : "Temperatura", + "Active users" : "Usuaris actius", + "Last hour" : "Última hora", + "Webcron" : "Webcron", + "Background jobs" : "Tasques de fons", + "Mode" : "Mode", + "Never" : "Mai", "Load" : "Càrrega", - "Memory" : "Memòria", + "CPU info not available" : "Informació del processador no disponible", + "Current usage" : "Ús actual", + "Threads" : "Fils", + "Load average" : "Càrrega mitja", + "Database" : "Base de dades", + "Type:" : "Tipus:", + "Version:" : "Versió:", + "Size:" : "Mida:", + "Used" : "Utilitzat", + "Available" : "Disponible", "Disk" : "Disc", + "Files" : "Fitxers", + "Storages" : "Magatzems", "Mount:" : "Muntatge:", "Filesystem:" : "Sistema de fitxers:", - "Size:" : "Mida:", "Available:" : "Disponible:", "Used:" : "Utilitzat:", - "Files:" : "FItxers:", - "Storages:" : "Emmagatzematges:", - "Free Space:" : "Espai lliure:", + "Status" : "Estat", + "Started" : "Iniciat", + "When" : "Quan", + "Details" : "Detalls", + "Succeeded" : "Amb èxit", + "Failed" : "Ha fallat", + "Running" : "Córrer", + "Memory" : "Memòria", + "RAM info not available" : "La informació de la RAM no està disponible", + "Total" : "Total", + "Authentication" : "Autenticació", "Network" : "Xarxa", - "Hostname:" : "Nom de màquina:", - "Gateway:" : "Passarel·la:", + "Hostname" : "Servidor", + "Gateway" : "Passarel·la", + "DNS" : "DNS", "Status:" : "Estat:", "Speed:" : "Velocitat:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuaris actius", - "Last hour" : "Última hora", + "Keys" : "Claus", + "Disabled" : "Inhabilitat", + "seconds" : "segons", + "Yes" : "Sí", + "No" : "No", + "PHP extensions" : "Extensions del PHP", + "Extension" : "Extensió", + "Unable to list extensions" : "No es poden llistar les extensions", + "PHP" : "PHP", + "Version" : "Versió", + "Memory limit" : "Límit de memòria", + "Max execution time:" : "Temps màxim de l'execució:", + "Upload max size:" : "Mida màxima per pujades:", + "Extensions:" : "Extensions:", + "CPU" : "Processador", "Shares" : "Elements compartits", "Users:" : "Usuaris:", "Groups:" : "Grups:", @@ -50,19 +74,31 @@ OC.L10N.register( "Federated sent:" : "Enviat federat:", "Federated received:" : "Federat rebut:", "Talk conversations:" : "Converses:", - "PHP" : "PHP", - "Version:" : "Versió:", + "Average" : "Mitjana", + "Warning" : "Avís", + "Operating System:" : "Sistema operatiu:", + "CPU:" : "CPU:", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Temps de funcionament:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Ús actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Ús actual: {swapUsageBytes}", + "SWAP info not available" : "La informació de SWAP no està disponible", + "Copied!" : "S'ha copiat!", + "Not supported!" : "No suportat!", + "Press ⌘-C to copy." : "Premeu ⌘-C per còpia.", + "Press Ctrl-C to copy." : "Premeu Ctrl-C per còpia.", + "Memory:" : "Memòria:", + "Files:" : "FItxers:", + "Storages:" : "Emmagatzematges:", + "Free Space:" : "Espai lliure:", + "Hostname:" : "Nom de màquina:", + "Gateway:" : "Passarel·la:", "Memory limit:" : "Límit de la Memòria:", - "Max execution time:" : "Temps màxim de l'execució:", - "Upload max size:" : "Mida màxima per pujades:", - "Extensions:" : "Extensions:", - "Unable to list extensions" : "No es poden llistar les extensions", - "Database" : "Base de dades", - "Type:" : "Tipus:", "External monitoring tool" : "Eina externa de monitorització", "Copy" : "Copia", "To use an access token, please generate one then set it using the following command:" : "Per utilitzar un testimoni d'accés, genereu-ne un i configureu-lo amb l'ordre següent:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "A continuació, passeu el testimoni amb la capçalera \"NC-Token\" quan consulteu l’adreça URL anterior.", - "Unknown Processor" : "Processador desconegut" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ca.json b/l10n/ca.json index a0da7472..350add92 100644 --- a/l10n/ca.json +++ b/l10n/ca.json @@ -1,45 +1,69 @@ { "translations": { - "CPU info not available" : "Informació del processador no disponible", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Ús actual: {memUsageBytes}", - "RAM info not available" : "La informació de la RAM no està disponible", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Ús actual: {swapUsageBytes}", - "SWAP info not available" : "La informació de SWAP no està disponible", - "Copied!" : "S'ha copiat!", - "Not supported!" : "No suportat!", - "Press ⌘-C to copy." : "Premeu ⌘-C per còpia.", - "Press Ctrl-C to copy." : "Premeu Ctrl-C per còpia.", "System" : "Sistema", + "Unknown" : "Desconegut", "Monitoring" : "Monitorització", "Monitoring app with useful server information" : "Aplicació per monitoritzar amb informació útil del servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Proporciona informació útil del servidor, com ara la càrrega del processador, l’ús de memòria RAM, l’ús del disc, el nombre d’usuaris, etc.", - "Operating System:" : "Sistema operatiu:", - "CPU:" : "CPU:", - "Memory:" : "Memòria:", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Temps de funcionament:", - "Temperature" : "Temperatura", + "Active users" : "Usuaris actius", + "Last hour" : "Última hora", + "Webcron" : "Webcron", + "Background jobs" : "Tasques de fons", + "Mode" : "Mode", + "Never" : "Mai", "Load" : "Càrrega", - "Memory" : "Memòria", + "CPU info not available" : "Informació del processador no disponible", + "Current usage" : "Ús actual", + "Threads" : "Fils", + "Load average" : "Càrrega mitja", + "Database" : "Base de dades", + "Type:" : "Tipus:", + "Version:" : "Versió:", + "Size:" : "Mida:", + "Used" : "Utilitzat", + "Available" : "Disponible", "Disk" : "Disc", + "Files" : "Fitxers", + "Storages" : "Magatzems", "Mount:" : "Muntatge:", "Filesystem:" : "Sistema de fitxers:", - "Size:" : "Mida:", "Available:" : "Disponible:", "Used:" : "Utilitzat:", - "Files:" : "FItxers:", - "Storages:" : "Emmagatzematges:", - "Free Space:" : "Espai lliure:", + "Status" : "Estat", + "Started" : "Iniciat", + "When" : "Quan", + "Details" : "Detalls", + "Succeeded" : "Amb èxit", + "Failed" : "Ha fallat", + "Running" : "Córrer", + "Memory" : "Memòria", + "RAM info not available" : "La informació de la RAM no està disponible", + "Total" : "Total", + "Authentication" : "Autenticació", "Network" : "Xarxa", - "Hostname:" : "Nom de màquina:", - "Gateway:" : "Passarel·la:", + "Hostname" : "Servidor", + "Gateway" : "Passarel·la", + "DNS" : "DNS", "Status:" : "Estat:", "Speed:" : "Velocitat:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuaris actius", - "Last hour" : "Última hora", + "Keys" : "Claus", + "Disabled" : "Inhabilitat", + "seconds" : "segons", + "Yes" : "Sí", + "No" : "No", + "PHP extensions" : "Extensions del PHP", + "Extension" : "Extensió", + "Unable to list extensions" : "No es poden llistar les extensions", + "PHP" : "PHP", + "Version" : "Versió", + "Memory limit" : "Límit de memòria", + "Max execution time:" : "Temps màxim de l'execució:", + "Upload max size:" : "Mida màxima per pujades:", + "Extensions:" : "Extensions:", + "CPU" : "Processador", "Shares" : "Elements compartits", "Users:" : "Usuaris:", "Groups:" : "Grups:", @@ -48,19 +72,31 @@ "Federated sent:" : "Enviat federat:", "Federated received:" : "Federat rebut:", "Talk conversations:" : "Converses:", - "PHP" : "PHP", - "Version:" : "Versió:", + "Average" : "Mitjana", + "Warning" : "Avís", + "Operating System:" : "Sistema operatiu:", + "CPU:" : "CPU:", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Temps de funcionament:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Ús actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Ús actual: {swapUsageBytes}", + "SWAP info not available" : "La informació de SWAP no està disponible", + "Copied!" : "S'ha copiat!", + "Not supported!" : "No suportat!", + "Press ⌘-C to copy." : "Premeu ⌘-C per còpia.", + "Press Ctrl-C to copy." : "Premeu Ctrl-C per còpia.", + "Memory:" : "Memòria:", + "Files:" : "FItxers:", + "Storages:" : "Emmagatzematges:", + "Free Space:" : "Espai lliure:", + "Hostname:" : "Nom de màquina:", + "Gateway:" : "Passarel·la:", "Memory limit:" : "Límit de la Memòria:", - "Max execution time:" : "Temps màxim de l'execució:", - "Upload max size:" : "Mida màxima per pujades:", - "Extensions:" : "Extensions:", - "Unable to list extensions" : "No es poden llistar les extensions", - "Database" : "Base de dades", - "Type:" : "Tipus:", "External monitoring tool" : "Eina externa de monitorització", "Copy" : "Copia", "To use an access token, please generate one then set it using the following command:" : "Per utilitzar un testimoni d'accés, genereu-ne un i configureu-lo amb l'ordre següent:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "A continuació, passeu el testimoni amb la capçalera \"NC-Token\" quan consulteu l’adreça URL anterior.", - "Unknown Processor" : "Processador desconegut" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/cs.js b/l10n/cs.js index 2de987d1..61372b8a 100644 --- a/l10n/cs.js +++ b/l10n/cs.js @@ -1,73 +1,81 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informace o procesoru nejsou k dispozici", - "CPU Usage:" : "Využití procesoru:", - "Load average: {percentage} % ({load}) last minute" : "Průměrné vytížení: {percentage} % ({load}) za uplynulou minutu", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) uplynulá minuta\n{last5MinutesPercentage} % ({last5Minutes}) uplynulých 5 minut\n{last15MinutesPercentage} % ({last15Minutes}) uplynulých 15 minut", - "RAM Usage:" : "Využití operační paměti:", - "SWAP Usage:" : "Využití odkládacího prostoru:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Operační paměť: Celkem: {memTotalBytes}/Stávající využití: {memUsageBytes}", - "RAM info not available" : "Informace o operační paměti nejsou k dispozici", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Odkládací prostor (swap): Celkem: {swapTotalBytes}/Stávající využití: {swapUsageBytes}", - "SWAP info not available" : "Informace o odkládacím prostoru (swap) nejsou k dispozici", - "Copied!" : "Zkopírováno!", - "Not supported!" : "Nepodporováno!", - "Press ⌘-C to copy." : "Zkopírujete stisknutím ⌘C.", - "Press Ctrl-C to copy." : "Zkopírujete stisknutím Ctrl+C.", "System" : "Systém", + "Unknown" : "Neznámé", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dnů, %2$d hodin, %3$d minut, %4$d sekund", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d hodin, %2$d minut, %3$d sekund", "Monitoring" : "Dohledování", "Monitoring app with useful server information" : "Dohledovací aplikace, poskytující užitečné informace o serveru", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Poskytuje užitečné informace o serveru, jako vytížení procesoru, využití operační paměti, obsazenost datového úložiště, počet uživatelů, atd.", - "Operating System:" : "Operační systém:", - "CPU:" : "Procesor:", - "threads" : "vláken", - "Memory:" : "Operační paměť:", - "Server time:" : "Čas na serveru:", - "Uptime:" : "Doba chodu od minulého zapnutí:", - "Temperature" : "Teplota", + "Active users" : "Aktivní uživatelé", + "Last hour" : "Uplynulá hodina", + "Last 24 Hours" : "Uplynulých 24 hodin", + "Last 7 Days" : "Uplynulých 7 dnů", + "Last 30 Days" : "Uplynulých 30 dnů", + "Webcron" : "Webcron", + "Background jobs" : "Úlohy na pozadí", + "Mode" : "Režim", + "Never" : "Nikdy", "Load" : "Vytížení", - "Memory" : "Operační paměť", + "CPU info not available" : "Informace o procesoru nejsou k dispozici", + "Current usage" : "Aktuální využití", + "Threads" : "Vláken", + "Load average" : "Průměrné vytížení", + "Database" : "Databáze", + "Type:" : "Typ:", + "Version:" : "Verze:", + "Size:" : "Velikost:", + "Used" : "Použito", + "Available" : "K dispozici", "Disk" : "Úložiště", + "Files" : "Soubory", + "Storages" : "Úložišť", "Mount:" : "Připojeno pod:", "Filesystem:" : "Souborový systém:", - "Size:" : "Velikost:", "Available:" : "K dispozici:", "Used:" : "Použito:", - "Files:" : "Souborů:", - "Storages:" : "Úložišť:", - "Free Space:" : "Volné místo:", + "Status" : "Stav", + "Started" : "Zahájeno", + "Duration" : "Trvání", + "Job" : "Práce", + "When" : "Kdy", + "Details" : "Podrobnosti", + "Succeeded" : "Úspěšné", + "Failed" : "Nezdařilo se", + "Running" : "Běžící", + "Memory" : "Operační paměť", + "RAM info not available" : "Informace o operační paměti nejsou k dispozici", + "Total" : "Celkem", + "Configuration" : "Nastavení", + "Output in JSON" : "Výstup v JSON", + "Skip server update" : "Přeskočit přechod na novější vydání serveru", + "Authentication" : "Ověřování se", "Network" : "Síť", - "Hostname:" : "Název stroje:", - "Gateway:" : "Brána:", + "Hostname" : "Název stroje", + "Gateway" : "Brána", + "DNS" : "DNS", "Status:" : "Stav:", "Speed:" : "Rychlost:", "Duplex:" : "Duplex:", "MAC:" : "MAC adresa:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktivní uživatelé", - "Last hour" : "Uplynulá hodina", - "%s%% of all users" : "%s%% ze všech uživatelů", - "Last 24 Hours" : "Uplynulých 24 hodin", - "Last 7 Days" : "Uplynulých 7 dnů", - "Last 30 Days" : "Uplynulých 30 dnů", - "Shares" : "Sdílení", - "Users:" : "Uživatelé:", - "Groups:" : "Skupiny:", - "Links:" : "Odkazy:", - "Emails:" : "E-maily:", - "Federated sent:" : "Federovaně odesláno:", - "Federated received:" : "Federovaně přijato:", - "Talk conversations:" : "Konverzace v Talk:", + "Keys" : "Klíč", + "Disabled" : "Vypnuto", + "seconds" : "sekund", + "Yes" : "Ano", + "No" : "Ne", + "PHP extensions" : "Rozšíření pro PHP", + "Extension" : "Přípona", + "Unable to list extensions" : "Nepodařilo se vypsat rozšíření", "PHP" : "PHP", - "Version:" : "Verze:", - "Memory limit:" : "Limit paměti:", + "Version" : "Verze", + "Memory limit" : "Limit paměti", "Max execution time:" : "Nejdelší umožněný čas vykonávání:", "Upload max size:" : "Nejvyšší umožněná velikost nahrávaného souboru:", - "OPcache Revalidate Frequency:" : "Četnost opětovného ověřování platnosti OPcache mezipaměti:", "Extensions:" : "Rozšíření:", - "Unable to list extensions" : "Nepodařilo se vypsat rozšíření", + "PHP Info:" : "Informace o PHP:", "Show phpinfo" : "Zobrazit phpinfo", "FPM worker pool" : "Fond procesů zpracovávajících FPM", "Pool name:" : "Název fondu:", @@ -82,16 +90,52 @@ OC.L10N.register( "Max listen queue:" : "Délka fronty délka fronty očekávání spojení nejvýše:", "Max active processes:" : "Nejvýše aktivních procesů:", "Max children reached:" : "Nejvyšší dosažený počet podřízených procesů:", - "Database" : "Databáze", - "Type:" : "Typ:", + "CPU" : "Procesor", + "Resource usage" : "Využití prostředku", + "Shares" : "Sdílení", + "Users:" : "Uživatelé:", + "Groups:" : "Skupiny:", + "Links:" : "Odkazy:", + "Emails:" : "E-maily:", + "Federated sent:" : "Federovaně odesláno:", + "Federated received:" : "Federovaně přijato:", + "Talk conversations:" : "Konverzace v Talk:", + "Average" : "Poměrové", + "Warning" : "Varování", + "Operating System:" : "Operační systém:", + "CPU:" : "Procesor:", + "Server time:" : "Čas na serveru:", + "Uptime:" : "Doba chodu od minulého zapnutí:", + "Temperature" : "Teplota", + "CPU Usage:" : "Využití procesoru:", + "Load average: {percentage} % ({load}) last minute" : "Průměrné vytížení: {percentage} % ({load}) za uplynulou minutu", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) uplynulá minuta\n{last5MinutesPercentage} % ({last5Minutes}) uplynulých 5 minut\n{last15MinutesPercentage} % ({last15Minutes}) uplynulých 15 minut", + "RAM Usage:" : "Využití operační paměti:", + "SWAP Usage:" : "Využití odkládacího prostoru:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Operační paměť: Celkem: {memTotalBytes}/Stávající využití: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Odkládací prostor (swap): Celkem: {swapTotalBytes}/Stávající využití: {swapUsageBytes}", + "SWAP info not available" : "Informace o odkládacím prostoru (swap) nejsou k dispozici", + "Copied!" : "Zkopírováno!", + "Not supported!" : "Nepodporováno!", + "Press ⌘-C to copy." : "Zkopírujete stisknutím ⌘C.", + "Press Ctrl-C to copy." : "Zkopírujete stisknutím Ctrl+C.", + "threads" : "vláken", + "Memory:" : "Operační paměť:", + "Files:" : "Souborů:", + "Storages:" : "Úložišť:", + "Free Space:" : "Volné místo:", + "Hostname:" : "Název stroje:", + "Gateway:" : "Brána:", + "%s%% of all users" : "%s%% ze všech uživatelů", + "Memory limit:" : "Limit paměti:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Četnost opětovného ověřování platnosti OPcache mezipaměti:", "External monitoring tool" : "Externí nástroj pro dohledování", "Use this end point to connect an external monitoring tool:" : "Pro napojení na externí dohledovací nástroj použijte tento koncový bod:", "Copy" : "Zkopírovat", - "Output in JSON" : "Výstup v JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Přeskočit sekci aplikací (včetně toho, že sekce aplikací odešle externí požadavek do katalogu aplikací)", - "Skip server update" : "Přeskočit přechod na novější vydání serveru", "To use an access token, please generate one then set it using the following command:" : "Aby bylo možné použít přístupový token, vytvořte ho a pak nastavte pomocí následujícího příkazu:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Poté při dotazování výše uvedené URL předávejte se záhlavím „NC-Token“.", - "Unknown Processor" : "Neznámý procesor" + "DNS:" : "DNS:" }, "nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"); diff --git a/l10n/cs.json b/l10n/cs.json index b326d1fa..3c6e88b8 100644 --- a/l10n/cs.json +++ b/l10n/cs.json @@ -1,71 +1,79 @@ { "translations": { - "CPU info not available" : "Informace o procesoru nejsou k dispozici", - "CPU Usage:" : "Využití procesoru:", - "Load average: {percentage} % ({load}) last minute" : "Průměrné vytížení: {percentage} % ({load}) za uplynulou minutu", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) uplynulá minuta\n{last5MinutesPercentage} % ({last5Minutes}) uplynulých 5 minut\n{last15MinutesPercentage} % ({last15Minutes}) uplynulých 15 minut", - "RAM Usage:" : "Využití operační paměti:", - "SWAP Usage:" : "Využití odkládacího prostoru:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Operační paměť: Celkem: {memTotalBytes}/Stávající využití: {memUsageBytes}", - "RAM info not available" : "Informace o operační paměti nejsou k dispozici", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Odkládací prostor (swap): Celkem: {swapTotalBytes}/Stávající využití: {swapUsageBytes}", - "SWAP info not available" : "Informace o odkládacím prostoru (swap) nejsou k dispozici", - "Copied!" : "Zkopírováno!", - "Not supported!" : "Nepodporováno!", - "Press ⌘-C to copy." : "Zkopírujete stisknutím ⌘C.", - "Press Ctrl-C to copy." : "Zkopírujete stisknutím Ctrl+C.", "System" : "Systém", + "Unknown" : "Neznámé", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dnů, %2$d hodin, %3$d minut, %4$d sekund", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d hodin, %2$d minut, %3$d sekund", "Monitoring" : "Dohledování", "Monitoring app with useful server information" : "Dohledovací aplikace, poskytující užitečné informace o serveru", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Poskytuje užitečné informace o serveru, jako vytížení procesoru, využití operační paměti, obsazenost datového úložiště, počet uživatelů, atd.", - "Operating System:" : "Operační systém:", - "CPU:" : "Procesor:", - "threads" : "vláken", - "Memory:" : "Operační paměť:", - "Server time:" : "Čas na serveru:", - "Uptime:" : "Doba chodu od minulého zapnutí:", - "Temperature" : "Teplota", + "Active users" : "Aktivní uživatelé", + "Last hour" : "Uplynulá hodina", + "Last 24 Hours" : "Uplynulých 24 hodin", + "Last 7 Days" : "Uplynulých 7 dnů", + "Last 30 Days" : "Uplynulých 30 dnů", + "Webcron" : "Webcron", + "Background jobs" : "Úlohy na pozadí", + "Mode" : "Režim", + "Never" : "Nikdy", "Load" : "Vytížení", - "Memory" : "Operační paměť", + "CPU info not available" : "Informace o procesoru nejsou k dispozici", + "Current usage" : "Aktuální využití", + "Threads" : "Vláken", + "Load average" : "Průměrné vytížení", + "Database" : "Databáze", + "Type:" : "Typ:", + "Version:" : "Verze:", + "Size:" : "Velikost:", + "Used" : "Použito", + "Available" : "K dispozici", "Disk" : "Úložiště", + "Files" : "Soubory", + "Storages" : "Úložišť", "Mount:" : "Připojeno pod:", "Filesystem:" : "Souborový systém:", - "Size:" : "Velikost:", "Available:" : "K dispozici:", "Used:" : "Použito:", - "Files:" : "Souborů:", - "Storages:" : "Úložišť:", - "Free Space:" : "Volné místo:", + "Status" : "Stav", + "Started" : "Zahájeno", + "Duration" : "Trvání", + "Job" : "Práce", + "When" : "Kdy", + "Details" : "Podrobnosti", + "Succeeded" : "Úspěšné", + "Failed" : "Nezdařilo se", + "Running" : "Běžící", + "Memory" : "Operační paměť", + "RAM info not available" : "Informace o operační paměti nejsou k dispozici", + "Total" : "Celkem", + "Configuration" : "Nastavení", + "Output in JSON" : "Výstup v JSON", + "Skip server update" : "Přeskočit přechod na novější vydání serveru", + "Authentication" : "Ověřování se", "Network" : "Síť", - "Hostname:" : "Název stroje:", - "Gateway:" : "Brána:", + "Hostname" : "Název stroje", + "Gateway" : "Brána", + "DNS" : "DNS", "Status:" : "Stav:", "Speed:" : "Rychlost:", "Duplex:" : "Duplex:", "MAC:" : "MAC adresa:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktivní uživatelé", - "Last hour" : "Uplynulá hodina", - "%s%% of all users" : "%s%% ze všech uživatelů", - "Last 24 Hours" : "Uplynulých 24 hodin", - "Last 7 Days" : "Uplynulých 7 dnů", - "Last 30 Days" : "Uplynulých 30 dnů", - "Shares" : "Sdílení", - "Users:" : "Uživatelé:", - "Groups:" : "Skupiny:", - "Links:" : "Odkazy:", - "Emails:" : "E-maily:", - "Federated sent:" : "Federovaně odesláno:", - "Federated received:" : "Federovaně přijato:", - "Talk conversations:" : "Konverzace v Talk:", + "Keys" : "Klíč", + "Disabled" : "Vypnuto", + "seconds" : "sekund", + "Yes" : "Ano", + "No" : "Ne", + "PHP extensions" : "Rozšíření pro PHP", + "Extension" : "Přípona", + "Unable to list extensions" : "Nepodařilo se vypsat rozšíření", "PHP" : "PHP", - "Version:" : "Verze:", - "Memory limit:" : "Limit paměti:", + "Version" : "Verze", + "Memory limit" : "Limit paměti", "Max execution time:" : "Nejdelší umožněný čas vykonávání:", "Upload max size:" : "Nejvyšší umožněná velikost nahrávaného souboru:", - "OPcache Revalidate Frequency:" : "Četnost opětovného ověřování platnosti OPcache mezipaměti:", "Extensions:" : "Rozšíření:", - "Unable to list extensions" : "Nepodařilo se vypsat rozšíření", + "PHP Info:" : "Informace o PHP:", "Show phpinfo" : "Zobrazit phpinfo", "FPM worker pool" : "Fond procesů zpracovávajících FPM", "Pool name:" : "Název fondu:", @@ -80,16 +88,52 @@ "Max listen queue:" : "Délka fronty délka fronty očekávání spojení nejvýše:", "Max active processes:" : "Nejvýše aktivních procesů:", "Max children reached:" : "Nejvyšší dosažený počet podřízených procesů:", - "Database" : "Databáze", - "Type:" : "Typ:", + "CPU" : "Procesor", + "Resource usage" : "Využití prostředku", + "Shares" : "Sdílení", + "Users:" : "Uživatelé:", + "Groups:" : "Skupiny:", + "Links:" : "Odkazy:", + "Emails:" : "E-maily:", + "Federated sent:" : "Federovaně odesláno:", + "Federated received:" : "Federovaně přijato:", + "Talk conversations:" : "Konverzace v Talk:", + "Average" : "Poměrové", + "Warning" : "Varování", + "Operating System:" : "Operační systém:", + "CPU:" : "Procesor:", + "Server time:" : "Čas na serveru:", + "Uptime:" : "Doba chodu od minulého zapnutí:", + "Temperature" : "Teplota", + "CPU Usage:" : "Využití procesoru:", + "Load average: {percentage} % ({load}) last minute" : "Průměrné vytížení: {percentage} % ({load}) za uplynulou minutu", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) uplynulá minuta\n{last5MinutesPercentage} % ({last5Minutes}) uplynulých 5 minut\n{last15MinutesPercentage} % ({last15Minutes}) uplynulých 15 minut", + "RAM Usage:" : "Využití operační paměti:", + "SWAP Usage:" : "Využití odkládacího prostoru:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Operační paměť: Celkem: {memTotalBytes}/Stávající využití: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Odkládací prostor (swap): Celkem: {swapTotalBytes}/Stávající využití: {swapUsageBytes}", + "SWAP info not available" : "Informace o odkládacím prostoru (swap) nejsou k dispozici", + "Copied!" : "Zkopírováno!", + "Not supported!" : "Nepodporováno!", + "Press ⌘-C to copy." : "Zkopírujete stisknutím ⌘C.", + "Press Ctrl-C to copy." : "Zkopírujete stisknutím Ctrl+C.", + "threads" : "vláken", + "Memory:" : "Operační paměť:", + "Files:" : "Souborů:", + "Storages:" : "Úložišť:", + "Free Space:" : "Volné místo:", + "Hostname:" : "Název stroje:", + "Gateway:" : "Brána:", + "%s%% of all users" : "%s%% ze všech uživatelů", + "Memory limit:" : "Limit paměti:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Četnost opětovného ověřování platnosti OPcache mezipaměti:", "External monitoring tool" : "Externí nástroj pro dohledování", "Use this end point to connect an external monitoring tool:" : "Pro napojení na externí dohledovací nástroj použijte tento koncový bod:", "Copy" : "Zkopírovat", - "Output in JSON" : "Výstup v JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Přeskočit sekci aplikací (včetně toho, že sekce aplikací odešle externí požadavek do katalogu aplikací)", - "Skip server update" : "Přeskočit přechod na novější vydání serveru", "To use an access token, please generate one then set it using the following command:" : "Aby bylo možné použít přístupový token, vytvořte ho a pak nastavte pomocí následujícího příkazu:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Poté při dotazování výše uvedené URL předávejte se záhlavím „NC-Token“.", - "Unknown Processor" : "Neznámý procesor" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/cy_GB.js b/l10n/cy_GB.js index 859ce467..0aa92cc0 100644 --- a/l10n/cy_GB.js +++ b/l10n/cy_GB.js @@ -1,16 +1,27 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Wedi'i gopïo!", - "Not supported!" : "Heb ei gefnogi!", - "Press ⌘-C to copy." : "Pwyswch ⌘-C i gopïo.", - "Press Ctrl-C to copy." : "Pwyswch Ctrl-C i gopïo.", "System" : "System", + "Unknown" : "Anhysbys", "Monitoring" : "Monitro", - "Size:" : "Maint:", - "PHP" : "PHP", "Database" : "Cronfa ddata", "Type:" : "Math:", + "Size:" : "Maint:", + "Available" : "Ar gael?", + "Status" : "Statws", + "Duration" : "Hyd", + "Details" : "Manylion", + "Running" : "Rhedeg", + "seconds" : "eiliad", + "No" : "Na", + "PHP extensions" : "Estyniadau PHP", + "PHP" : "PHP", + "Version" : "Fersiwn", + "Warning" : "Rhybudd", + "Copied!" : "Wedi'i gopïo!", + "Not supported!" : "Heb ei gefnogi!", + "Press ⌘-C to copy." : "Pwyswch ⌘-C i gopïo.", + "Press Ctrl-C to copy." : "Pwyswch Ctrl-C i gopïo.", "Copy" : "Copïo" }, "nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;"); diff --git a/l10n/cy_GB.json b/l10n/cy_GB.json index 24e1e261..ada2f1e4 100644 --- a/l10n/cy_GB.json +++ b/l10n/cy_GB.json @@ -1,14 +1,25 @@ { "translations": { - "Copied!" : "Wedi'i gopïo!", - "Not supported!" : "Heb ei gefnogi!", - "Press ⌘-C to copy." : "Pwyswch ⌘-C i gopïo.", - "Press Ctrl-C to copy." : "Pwyswch Ctrl-C i gopïo.", "System" : "System", + "Unknown" : "Anhysbys", "Monitoring" : "Monitro", - "Size:" : "Maint:", - "PHP" : "PHP", "Database" : "Cronfa ddata", "Type:" : "Math:", + "Size:" : "Maint:", + "Available" : "Ar gael?", + "Status" : "Statws", + "Duration" : "Hyd", + "Details" : "Manylion", + "Running" : "Rhedeg", + "seconds" : "eiliad", + "No" : "Na", + "PHP extensions" : "Estyniadau PHP", + "PHP" : "PHP", + "Version" : "Fersiwn", + "Warning" : "Rhybudd", + "Copied!" : "Wedi'i gopïo!", + "Not supported!" : "Heb ei gefnogi!", + "Press ⌘-C to copy." : "Pwyswch ⌘-C i gopïo.", + "Press Ctrl-C to copy." : "Pwyswch Ctrl-C i gopïo.", "Copy" : "Copïo" },"pluralForm" :"nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;" } \ No newline at end of file diff --git a/l10n/da.js b/l10n/da.js index f834dc5d..e9bf905d 100644 --- a/l10n/da.js +++ b/l10n/da.js @@ -1,30 +1,75 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU information er ikke tilgængeli", - "Copied!" : "Kopieret!", - "Not supported!" : "Ikke understøttet!", - "Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.", - "Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.", "System" : "System", + "Unknown" : "Ukendt", "Monitoring" : "Monitorering", "Monitoring app with useful server information" : "Monitoreringsapp med serverinformation", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Viser serverinformation som CPU belastning, RAM forbrug, lagerforbrug, antal brugere osv.", - "Temperature" : "Temperatur", + "Active users" : "Aktive brugere", + "Last hour" : "Seneste time", + "Last 24 Hours" : "Seneste 24 timer", + "Last 7 Days" : "Seneste 7 dage", + "Last 30 Days" : "Seneste 30 dage", + "Webcron" : "Webcron", + "Background jobs" : "Baggrundsjobs", + "Mode" : "Mode", + "Never" : "Aldrig", "Load" : "Belastning", - "Memory" : "Hukommelse", - "Disk" : "Disk", + "CPU info not available" : "CPU information er ikke tilgængeli", + "Current usage" : "Nuværende forbrug", + "Threads" : "Tråde", + "Load average" : "Gennemsnitlig belastning", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", "Size:" : "Størrelse:", - "Files:" : "Filer:", - "Storages:" : "Lagre:", - "Free Space:" : "Ledig plads:", + "Used" : "Forbrugt", + "Available" : "Tilgængelig", + "Disk" : "Disk", + "Files" : "Filer", + "Mount:" : "Montering:", + "Filesystem:" : "Filsystem:", + "Available:" : "Tilgængelig:", + "Used:" : "Anvendt:", + "Status" : "Status", + "Started" : "Startet", + "Duration" : "Varighed", + "Details" : "Detaljer", + "Succeeded" : "Gennemført", + "Failed" : "Mislykkede", + "Running" : "Løber", + "Memory" : "Hukommelse", + "RAM info not available" : "RAM info ikke tilgængelig", + "Total" : "Total", + "Configuration" : "Konfiguration", + "Output in JSON" : "Output i JSON", + "Skip server update" : "Spring server-opdatering over", + "Authentication" : "Godkendelse", "Network" : "Netværk", - "Active users" : "Aktive brugere", - "Shares" : "Delinger", - "Users:" : "Brugere:", + "Hostname" : "Værtsnavn", + "Gateway" : "Gateway", + "DNS" : "DNS", + "Status:" : "Status:", + "Speed:" : "Hastighed:", + "Duplex:" : "Dupleks:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Nøgler", + "Disabled" : "Deaktiveret", + "seconds" : "sekunder ", + "Yes" : "Ja", + "No" : "Nej", + "PHP extensions" : "PHP-udvidelser", + "Extension" : "Udvidelse", + "Unable to list extensions" : "Kan ikke liste udvidelser", "PHP" : "PHP", - "Version:" : "Version:", + "Version" : "Version", + "Max execution time:" : "Maks udførselstid:", "Upload max size:" : "Max upload størrelse:", + "Extensions:" : "Udvidelser:", + "Show phpinfo" : "Vis phpinfo", "FPM worker pool" : "FPM worker pool", "Pool name:" : "Pool navn:", "Pool type:" : "Pool type:", @@ -38,10 +83,49 @@ OC.L10N.register( "Max listen queue:" : "Maks lyttekø:", "Max active processes:" : "Maks aktive processer:", "Max children reached:" : "Maks antal underprocesser nået:", - "Database" : "Database", - "Type:" : "Type:", + "CPU" : "CPU", + "Resource usage" : "Ressourceforbrug", + "Shares" : "Delinger", + "Users:" : "Brugere:", + "Groups:" : "Grupper:", + "Links:" : "Links:", + "Emails:" : "E-mails:", + "Federated sent:" : "Fødereret sendt:", + "Federated received:" : "Fødereret modtaget:", + "Talk conversations:" : "Talk samtaler:", + "Average" : "Gennemsnit", + "Warning" : "Advarsel", + "Operating System:" : "Operativsystem:", + "CPU:" : "CPU:", + "Server time:" : "Server tid:", + "Uptime:" : "Oppetid:", + "Temperature" : "Temperatur", + "CPU Usage:" : "CPU anvendelse:", + "Load average: {percentage} % ({load}) last minute" : "Belastningsgennemsnit: {percentage} % ({load}) seneste minut", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) seneste minut\n{last5MinutesPercentage} % ({last5Minutes}) seneste 5 minutter\n{last15MinutesPercentage} % ({last15Minutes}) seneste 15 minutter", + "RAM Usage:" : "RAM anvendelse:", + "SWAP Usage:" : "SWAP anvendelse:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: total: {memTotalBytes}/Aktuel anvendelse: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: total: {swapTotalBytes}/Aktuel anvendelse: {swapUsageBytes}", + "SWAP info not available" : "SWAP info ikke tilgængelig", + "Copied!" : "Kopieret!", + "Not supported!" : "Ikke understøttet!", + "Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.", + "Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.", + "threads" : "tråde", + "Memory:" : "Hukommelse:", + "Files:" : "Filer:", + "Storages:" : "Lagre:", + "Free Space:" : "Ledig plads:", + "Hostname:" : "Hostnavn:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% af alle brugere", + "Memory limit:" : "Hukommelsesgrænse:", + "OPcache Revalidate Frequency:" : "OPcache revalideringsfrekvens:", "External monitoring tool" : "Eksternt monitoreringsværktøj", + "Use this end point to connect an external monitoring tool:" : "Anvend dette slutpunkt til at forbinde et eksternt monitoreringsværktøj:", "Copy" : "Kopier", + "Skip apps section (including apps section will send an external request to the app store)" : "Spring over apps sektion (inkludering af apps sektion vil sende en ekstern forespørgsel til app butikken)", "To use an access token, please generate one then set it using the following command:" : "For at bruge et adgangstoken, så generer venligst et og sæt det derefter ved hjælp af følgende kommando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Send derefter tokenet med \"NC-Token\"-headeren, når du forespørger på ovenstående URL." }, diff --git a/l10n/da.json b/l10n/da.json index 3df7355b..e0722b15 100644 --- a/l10n/da.json +++ b/l10n/da.json @@ -1,28 +1,73 @@ { "translations": { - "CPU info not available" : "CPU information er ikke tilgængeli", - "Copied!" : "Kopieret!", - "Not supported!" : "Ikke understøttet!", - "Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.", - "Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.", "System" : "System", + "Unknown" : "Ukendt", "Monitoring" : "Monitorering", "Monitoring app with useful server information" : "Monitoreringsapp med serverinformation", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Viser serverinformation som CPU belastning, RAM forbrug, lagerforbrug, antal brugere osv.", - "Temperature" : "Temperatur", + "Active users" : "Aktive brugere", + "Last hour" : "Seneste time", + "Last 24 Hours" : "Seneste 24 timer", + "Last 7 Days" : "Seneste 7 dage", + "Last 30 Days" : "Seneste 30 dage", + "Webcron" : "Webcron", + "Background jobs" : "Baggrundsjobs", + "Mode" : "Mode", + "Never" : "Aldrig", "Load" : "Belastning", - "Memory" : "Hukommelse", - "Disk" : "Disk", + "CPU info not available" : "CPU information er ikke tilgængeli", + "Current usage" : "Nuværende forbrug", + "Threads" : "Tråde", + "Load average" : "Gennemsnitlig belastning", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", "Size:" : "Størrelse:", - "Files:" : "Filer:", - "Storages:" : "Lagre:", - "Free Space:" : "Ledig plads:", + "Used" : "Forbrugt", + "Available" : "Tilgængelig", + "Disk" : "Disk", + "Files" : "Filer", + "Mount:" : "Montering:", + "Filesystem:" : "Filsystem:", + "Available:" : "Tilgængelig:", + "Used:" : "Anvendt:", + "Status" : "Status", + "Started" : "Startet", + "Duration" : "Varighed", + "Details" : "Detaljer", + "Succeeded" : "Gennemført", + "Failed" : "Mislykkede", + "Running" : "Løber", + "Memory" : "Hukommelse", + "RAM info not available" : "RAM info ikke tilgængelig", + "Total" : "Total", + "Configuration" : "Konfiguration", + "Output in JSON" : "Output i JSON", + "Skip server update" : "Spring server-opdatering over", + "Authentication" : "Godkendelse", "Network" : "Netværk", - "Active users" : "Aktive brugere", - "Shares" : "Delinger", - "Users:" : "Brugere:", + "Hostname" : "Værtsnavn", + "Gateway" : "Gateway", + "DNS" : "DNS", + "Status:" : "Status:", + "Speed:" : "Hastighed:", + "Duplex:" : "Dupleks:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Nøgler", + "Disabled" : "Deaktiveret", + "seconds" : "sekunder ", + "Yes" : "Ja", + "No" : "Nej", + "PHP extensions" : "PHP-udvidelser", + "Extension" : "Udvidelse", + "Unable to list extensions" : "Kan ikke liste udvidelser", "PHP" : "PHP", - "Version:" : "Version:", + "Version" : "Version", + "Max execution time:" : "Maks udførselstid:", "Upload max size:" : "Max upload størrelse:", + "Extensions:" : "Udvidelser:", + "Show phpinfo" : "Vis phpinfo", "FPM worker pool" : "FPM worker pool", "Pool name:" : "Pool navn:", "Pool type:" : "Pool type:", @@ -36,10 +81,49 @@ "Max listen queue:" : "Maks lyttekø:", "Max active processes:" : "Maks aktive processer:", "Max children reached:" : "Maks antal underprocesser nået:", - "Database" : "Database", - "Type:" : "Type:", + "CPU" : "CPU", + "Resource usage" : "Ressourceforbrug", + "Shares" : "Delinger", + "Users:" : "Brugere:", + "Groups:" : "Grupper:", + "Links:" : "Links:", + "Emails:" : "E-mails:", + "Federated sent:" : "Fødereret sendt:", + "Federated received:" : "Fødereret modtaget:", + "Talk conversations:" : "Talk samtaler:", + "Average" : "Gennemsnit", + "Warning" : "Advarsel", + "Operating System:" : "Operativsystem:", + "CPU:" : "CPU:", + "Server time:" : "Server tid:", + "Uptime:" : "Oppetid:", + "Temperature" : "Temperatur", + "CPU Usage:" : "CPU anvendelse:", + "Load average: {percentage} % ({load}) last minute" : "Belastningsgennemsnit: {percentage} % ({load}) seneste minut", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) seneste minut\n{last5MinutesPercentage} % ({last5Minutes}) seneste 5 minutter\n{last15MinutesPercentage} % ({last15Minutes}) seneste 15 minutter", + "RAM Usage:" : "RAM anvendelse:", + "SWAP Usage:" : "SWAP anvendelse:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: total: {memTotalBytes}/Aktuel anvendelse: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: total: {swapTotalBytes}/Aktuel anvendelse: {swapUsageBytes}", + "SWAP info not available" : "SWAP info ikke tilgængelig", + "Copied!" : "Kopieret!", + "Not supported!" : "Ikke understøttet!", + "Press ⌘-C to copy." : "Tryk ⌘-C for at kopiere.", + "Press Ctrl-C to copy." : "Tryk Ctrl-C for at kopiere.", + "threads" : "tråde", + "Memory:" : "Hukommelse:", + "Files:" : "Filer:", + "Storages:" : "Lagre:", + "Free Space:" : "Ledig plads:", + "Hostname:" : "Hostnavn:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% af alle brugere", + "Memory limit:" : "Hukommelsesgrænse:", + "OPcache Revalidate Frequency:" : "OPcache revalideringsfrekvens:", "External monitoring tool" : "Eksternt monitoreringsværktøj", + "Use this end point to connect an external monitoring tool:" : "Anvend dette slutpunkt til at forbinde et eksternt monitoreringsværktøj:", "Copy" : "Kopier", + "Skip apps section (including apps section will send an external request to the app store)" : "Spring over apps sektion (inkludering af apps sektion vil sende en ekstern forespørgsel til app butikken)", "To use an access token, please generate one then set it using the following command:" : "For at bruge et adgangstoken, så generer venligst et og sæt det derefter ved hjælp af følgende kommando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Send derefter tokenet med \"NC-Token\"-headeren, når du forespørger på ovenstående URL." },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/de.js b/l10n/de.js index 49ebd92e..bb2c6f8e 100644 --- a/l10n/de.js +++ b/l10n/de.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informationen zur CPU nicht verfügbar", - "CPU Usage:" : "CPU-Auslastung:", - "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzten Minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzten Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzten 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzten 15 Minuten", - "RAM Usage:" : "Speicherauslastung:", - "SWAP Usage:" : "SWAP-Auslastung:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", - "RAM info not available" : "Informationen zum RAM nicht verfügbar", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", - "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", - "Copied!" : "Kopiert!", - "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", - "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", "System" : "System", + "Unknown" : "Unbekannt", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d Tage, %2$d Stunden, %3$d Minuten, %4$d Sekunden", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d Stunden, %2$d Minuten, %3$d Sekunden", "Monitoring" : "Information", "Monitoring app with useful server information" : "Monitoring-App mit nützlichen Serverinformationen", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nützliche Informationen des Servers an wie z. B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", - "Operating System:" : "Betriebssystem:", - "CPU:" : "Prozessor:", - "threads" : "Threads", - "Memory:" : "Speicher:", - "Server time:" : "Serverzeit:", - "Uptime:" : "Betriebszeit:", - "Temperature" : "Temperatur", + "{0}% of all users" : "{0} % aller Benutzer", + "Active users" : "Aktive Benutzer", + "Last hour" : "In der letzten Stunde", + "Last 24 Hours" : "In den letzten 24 Stunden", + "Last 7 Days" : "In den letzten 7 Tagen", + "Last 30 Days" : "In den letzten 30 Tagen", + "System cron" : "System-Cron", + "Webcron" : "Web-Cron", + "AJAX (not recommended)" : "AJAX (Nicht empfohlen)", + "Background jobs" : "Hintergrundaufgaben", + "Mode" : "Modus", + "Last run" : "Letzte Ausführung", + "Never" : "Nie", + "Latest runs" : "Letzte Ausführungen", + "No background job has run yet." : "Bislang wurde keine Backupaufgabe ausgeführt.", + "Slowest jobs" : "Langsamste Jobs", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Die Statistiken über langsame Aufgaben liegen noch nicht vor. Sie werden von einem Hintergrundjob gesammelt und erscheinen nach dessen nächstem Lauf.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Letzte Fehler (Letzte %n Tag)","Letzte Fehler (Letzte %n Tage)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Am letzten %n Tag ist keine Hintergrund-Job fehlgeschlagen.","In den letzten %n Tagen sind keine Hintergrund-Jobs fehlgeschlagen."], "Load" : "Auslastung", - "Memory" : "Speicher", + "CPU info not available" : "Informationen zur CPU nicht verfügbar", + "Current usage" : "Aktuelle Nutzung", + "Threads" : "Themen", + "Load average" : "Durchschnittsauslastung", + "Database" : "Datenbank", + "Type:" : "Art:", + "Version:" : "Version:", + "Size:" : "Größe:", + "{used} of {total} used" : "{used} von {total} verwendet", + "Used" : "Verwendet", + "Available" : "Verfügbar", "Disk" : "Festplatte", + "Files" : "Dateien", + "Storages" : "Speicher", + "Free space" : "Freier Speicherplatz", "Mount:" : "Mount:", "Filesystem:" : "Dateisystem:", - "Size:" : "Größe:", "Available:" : "Verfügbar:", "Used:" : "Verwendet:", - "Files:" : "Dateien:", - "Storages:" : "Speicher:", - "Free Space:" : "Freier Speicherplatz:", + "Class" : "Klasse", + "Status" : "Status", + "Started" : "Gestartet", + "Duration" : "Dauer", + "Peak memory" : "Speicherspitze", + "Run ID" : "Run-ID", + "Server ID" : "Server-ID", + "Process ID" : "Prozess-ID", + "Details about {job} from {time}" : "Einzelheiten über {job} von {time}", + "Job" : "Job", + "When" : "Wenn", + "Details" : "Details", + "Succeeded" : "Erfolgreich", + "Failed" : "Fehlgeschlagen", + "Crashed" : "Abgestürzt", + "Running" : "Läuft", + "RAM usage" : "RAM-Verwendung", + "Swap usage" : "Swap-Verwendung", + "Memory" : "Speicher", + "RAM info not available" : "Informationen zum RAM nicht verfügbar", + "Total" : "Gesamt", + "Swap used" : "Swap verwendet", + "External monitoring API" : "Externe Überwachungs-API", + "Endpoint URL" : "Endpunkt-URL", + "Configuration" : "Konfiguration", + "Output in JSON" : "Ausgabe in JSON", + "Skip apps section" : "Apps-Abschnitt überspringen", + "Including the apps section sends an external request to the app store" : "Durch die Einbindung des Apps-Bereichs wird eine externe Anfrage an den App Store gesendet", + "Skip server update" : "Serveraktualisierung überspringen", + "Authentication" : "Authentifizierung", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Dieses Token wurde in Ihrem Browser generiert und wird erst gespeichert, wenn du den folgenden Befehl ausführst. Sende es bei jeder Anfrage im {header}-Header.", + "Command to store the token" : "Befehl zum Speichern des Tokens", + "Request header" : "Anfrageheader", "Network" : "Netzwerk", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Host-Name", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Geschwindigkeit:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktive Benutzer", - "Last hour" : "In der letzten Stunde", - "%s%% of all users" : "%s%% aller Benutzer", - "Last 24 Hours" : "In den letzten 24 Stunden", - "Last 7 Days" : "In den letzten 7 Tagen", - "Last 30 Days" : "In den letzten 30 Tagen", - "Shares" : "Freigaben", - "Users:" : "Benutzer:", - "Groups:" : "Gruppen:", - "Links:" : "Links:", - "Emails:" : "E-Mails:", - "Federated sent:" : "Federated gesendet:", - "Federated received:" : "Federated empfangen:", - "Talk conversations:" : "Talk-Unterhaltungen:", + "OPcache is not loaded." : "OPcache ist nicht geladen", + "OPcache is disabled." : "OPCache ist deaktiviert", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud darf den OPcache-Status („opcache.restrict_api“) nicht lesen.", + "OPcache status is unavailable." : "Der OPcache-Status ist nicht verfügbar.", + "{used} of {total}" : "{used} von {total}", + "Interned strings" : "Intern gespeicherte Zeichenfolgen im OPcache (interned strings)", + "Keys" : "Schlüssel", + "{used} of {max}" : "{used} von {max}", + "Disabled" : "Deaktiviert", + "Enabled, {used} of {total} buffer used" : "Aktiviert, {used} von {total} Puffern verwendet", + "OPcache" : "OPcache", + "Hit rate" : "Trefferquote", + "Cached scripts" : "Zwischengespeicherte Skripte", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Diese Zahlen beschreiben den PHP-Prozess, der diese Anfrage bearbeitet. Andere FPM-Pools oder die CLI behalten ihren eigenen OPcache.", + "Revalidate frequency:" : "Häufigkeit der erneuten Validierung:", + "seconds" : "Sekunden", + "Validate timestamps:" : "Zeitstempel der Validierung:", + "Yes" : "Ja", + "No" : "Nein", + "OOM restarts:" : "OOM Neustarts:", + "Last restart:" : "Letzter Neustart:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP-Erweiterungen", + "Extension" : "Erweiterung", + "Unable to list extensions" : "Erweiterungen konnten nicht aufgeführt werden", + "{count} loaded" : "{count} geladen", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Speicherlimit:", + "Version" : "Version", + "Memory limit" : "Speicherlimit", "Max execution time:" : "Maximale Ausführungszeit:", "Upload max size:" : "Maximale Größe zum Hochladen:", - "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", + "Post max size:" : "Max. Größe für Uploads per POST-Methode:", + "SAPI:" : "SAPI:", "Extensions:" : "Erweiterungen:", - "Unable to list extensions" : "Erweiterungen konnten nicht aufgeführt werden", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "phpinfo anzeigen", "FPM worker pool" : "FPM-Worker-Pool", "Pool name:" : "Pool-Name:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):", "Max active processes:" : "Maximal aktive Prozesse:", "Max children reached:" : "Maximal erreichte Kindzahl:", - "Database" : "Datenbank", - "Type:" : "Art:", + "CPU" : "Prozessor", + "Swap" : "Swap", + "Resource usage" : "Ressourcenverbrauch", + "Shares" : "Freigaben", + "Users:" : "Benutzer:", + "Groups:" : "Gruppen:", + "Links:" : "Links:", + "Emails:" : "E-Mails:", + "Federated sent:" : "Federated gesendet:", + "Federated received:" : "Federated empfangen:", + "Talk conversations:" : "Talk-Unterhaltungen:", + "Runs" : "Ausführungen", + "Average" : "Durchschnittlich", + "Longest" : "Längeste", + "Warning" : "Warnung", + "Critical" : "Kritisch", + "Operating System:" : "Betriebssystem:", + "CPU:" : "Prozessor:", + "{name} ({threads} threads)" : "{name} ({threads} Threads)", + "Server time:" : "Serverzeit:", + "Uptime:" : "Betriebszeit:", + "Temperature" : "Temperatur", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} sek", + "CPU Usage:" : "CPU-Auslastung:", + "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzten Minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzte Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzten 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzten 15 Minuten", + "RAM Usage:" : "Speicherauslastung:", + "SWAP Usage:" : "SWAP-Auslastung:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", + "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", + "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", + "threads" : "Threads", + "Memory:" : "Speicher:", + "Files:" : "Dateien:", + "Storages:" : "Speicher:", + "Free Space:" : "Freier Speicherplatz:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% aller Benutzer", + "Memory limit:" : "Speicherlimit:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", "External monitoring tool" : "Externes Überwachungsprogramm", "Use this end point to connect an external monitoring tool:" : "Diesen Endpunkt verwenden, um mit einem externen Überwachungstool zu verbinden:", "Copy" : "Kopieren", - "Output in JSON" : "Ausgabe in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Abschnitt \"Apps\" überspringen (das Einschließen des Abschnitts \"Apps\" sendet eine externe Anfrage an den App Store)", - "Skip server update" : "Serveraktualisierung überspringen", "To use an access token, please generate one then set it using the following command:" : "Um ein Zugriffstoken zu verwenden, generiere bitte ein Token und lege es mit dem folgenden Befehl fest:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Übergib dann das Token mit dem \"NC-Token\"-Header bei der Abfrage der obigen URL.", - "Unknown Processor" : "Unbekannter Prozessor" + "%1$s (%2$d threads)" : "%1$s (%2$d Threads)", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de.json b/l10n/de.json index 1ef4d601..483d4b90 100644 --- a/l10n/de.json +++ b/l10n/de.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "Informationen zur CPU nicht verfügbar", - "CPU Usage:" : "CPU-Auslastung:", - "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzten Minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzten Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzten 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzten 15 Minuten", - "RAM Usage:" : "Speicherauslastung:", - "SWAP Usage:" : "SWAP-Auslastung:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", - "RAM info not available" : "Informationen zum RAM nicht verfügbar", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", - "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", - "Copied!" : "Kopiert!", - "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", - "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", "System" : "System", + "Unknown" : "Unbekannt", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d Tage, %2$d Stunden, %3$d Minuten, %4$d Sekunden", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d Stunden, %2$d Minuten, %3$d Sekunden", "Monitoring" : "Information", "Monitoring app with useful server information" : "Monitoring-App mit nützlichen Serverinformationen", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nützliche Informationen des Servers an wie z. B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", - "Operating System:" : "Betriebssystem:", - "CPU:" : "Prozessor:", - "threads" : "Threads", - "Memory:" : "Speicher:", - "Server time:" : "Serverzeit:", - "Uptime:" : "Betriebszeit:", - "Temperature" : "Temperatur", + "{0}% of all users" : "{0} % aller Benutzer", + "Active users" : "Aktive Benutzer", + "Last hour" : "In der letzten Stunde", + "Last 24 Hours" : "In den letzten 24 Stunden", + "Last 7 Days" : "In den letzten 7 Tagen", + "Last 30 Days" : "In den letzten 30 Tagen", + "System cron" : "System-Cron", + "Webcron" : "Web-Cron", + "AJAX (not recommended)" : "AJAX (Nicht empfohlen)", + "Background jobs" : "Hintergrundaufgaben", + "Mode" : "Modus", + "Last run" : "Letzte Ausführung", + "Never" : "Nie", + "Latest runs" : "Letzte Ausführungen", + "No background job has run yet." : "Bislang wurde keine Backupaufgabe ausgeführt.", + "Slowest jobs" : "Langsamste Jobs", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Die Statistiken über langsame Aufgaben liegen noch nicht vor. Sie werden von einem Hintergrundjob gesammelt und erscheinen nach dessen nächstem Lauf.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Letzte Fehler (Letzte %n Tag)","Letzte Fehler (Letzte %n Tage)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Am letzten %n Tag ist keine Hintergrund-Job fehlgeschlagen.","In den letzten %n Tagen sind keine Hintergrund-Jobs fehlgeschlagen."], "Load" : "Auslastung", - "Memory" : "Speicher", + "CPU info not available" : "Informationen zur CPU nicht verfügbar", + "Current usage" : "Aktuelle Nutzung", + "Threads" : "Themen", + "Load average" : "Durchschnittsauslastung", + "Database" : "Datenbank", + "Type:" : "Art:", + "Version:" : "Version:", + "Size:" : "Größe:", + "{used} of {total} used" : "{used} von {total} verwendet", + "Used" : "Verwendet", + "Available" : "Verfügbar", "Disk" : "Festplatte", + "Files" : "Dateien", + "Storages" : "Speicher", + "Free space" : "Freier Speicherplatz", "Mount:" : "Mount:", "Filesystem:" : "Dateisystem:", - "Size:" : "Größe:", "Available:" : "Verfügbar:", "Used:" : "Verwendet:", - "Files:" : "Dateien:", - "Storages:" : "Speicher:", - "Free Space:" : "Freier Speicherplatz:", + "Class" : "Klasse", + "Status" : "Status", + "Started" : "Gestartet", + "Duration" : "Dauer", + "Peak memory" : "Speicherspitze", + "Run ID" : "Run-ID", + "Server ID" : "Server-ID", + "Process ID" : "Prozess-ID", + "Details about {job} from {time}" : "Einzelheiten über {job} von {time}", + "Job" : "Job", + "When" : "Wenn", + "Details" : "Details", + "Succeeded" : "Erfolgreich", + "Failed" : "Fehlgeschlagen", + "Crashed" : "Abgestürzt", + "Running" : "Läuft", + "RAM usage" : "RAM-Verwendung", + "Swap usage" : "Swap-Verwendung", + "Memory" : "Speicher", + "RAM info not available" : "Informationen zum RAM nicht verfügbar", + "Total" : "Gesamt", + "Swap used" : "Swap verwendet", + "External monitoring API" : "Externe Überwachungs-API", + "Endpoint URL" : "Endpunkt-URL", + "Configuration" : "Konfiguration", + "Output in JSON" : "Ausgabe in JSON", + "Skip apps section" : "Apps-Abschnitt überspringen", + "Including the apps section sends an external request to the app store" : "Durch die Einbindung des Apps-Bereichs wird eine externe Anfrage an den App Store gesendet", + "Skip server update" : "Serveraktualisierung überspringen", + "Authentication" : "Authentifizierung", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Dieses Token wurde in Ihrem Browser generiert und wird erst gespeichert, wenn du den folgenden Befehl ausführst. Sende es bei jeder Anfrage im {header}-Header.", + "Command to store the token" : "Befehl zum Speichern des Tokens", + "Request header" : "Anfrageheader", "Network" : "Netzwerk", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Host-Name", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Geschwindigkeit:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktive Benutzer", - "Last hour" : "In der letzten Stunde", - "%s%% of all users" : "%s%% aller Benutzer", - "Last 24 Hours" : "In den letzten 24 Stunden", - "Last 7 Days" : "In den letzten 7 Tagen", - "Last 30 Days" : "In den letzten 30 Tagen", - "Shares" : "Freigaben", - "Users:" : "Benutzer:", - "Groups:" : "Gruppen:", - "Links:" : "Links:", - "Emails:" : "E-Mails:", - "Federated sent:" : "Federated gesendet:", - "Federated received:" : "Federated empfangen:", - "Talk conversations:" : "Talk-Unterhaltungen:", + "OPcache is not loaded." : "OPcache ist nicht geladen", + "OPcache is disabled." : "OPCache ist deaktiviert", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud darf den OPcache-Status („opcache.restrict_api“) nicht lesen.", + "OPcache status is unavailable." : "Der OPcache-Status ist nicht verfügbar.", + "{used} of {total}" : "{used} von {total}", + "Interned strings" : "Intern gespeicherte Zeichenfolgen im OPcache (interned strings)", + "Keys" : "Schlüssel", + "{used} of {max}" : "{used} von {max}", + "Disabled" : "Deaktiviert", + "Enabled, {used} of {total} buffer used" : "Aktiviert, {used} von {total} Puffern verwendet", + "OPcache" : "OPcache", + "Hit rate" : "Trefferquote", + "Cached scripts" : "Zwischengespeicherte Skripte", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Diese Zahlen beschreiben den PHP-Prozess, der diese Anfrage bearbeitet. Andere FPM-Pools oder die CLI behalten ihren eigenen OPcache.", + "Revalidate frequency:" : "Häufigkeit der erneuten Validierung:", + "seconds" : "Sekunden", + "Validate timestamps:" : "Zeitstempel der Validierung:", + "Yes" : "Ja", + "No" : "Nein", + "OOM restarts:" : "OOM Neustarts:", + "Last restart:" : "Letzter Neustart:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP-Erweiterungen", + "Extension" : "Erweiterung", + "Unable to list extensions" : "Erweiterungen konnten nicht aufgeführt werden", + "{count} loaded" : "{count} geladen", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Speicherlimit:", + "Version" : "Version", + "Memory limit" : "Speicherlimit", "Max execution time:" : "Maximale Ausführungszeit:", "Upload max size:" : "Maximale Größe zum Hochladen:", - "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", + "Post max size:" : "Max. Größe für Uploads per POST-Methode:", + "SAPI:" : "SAPI:", "Extensions:" : "Erweiterungen:", - "Unable to list extensions" : "Erweiterungen konnten nicht aufgeführt werden", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "phpinfo anzeigen", "FPM worker pool" : "FPM-Worker-Pool", "Pool name:" : "Pool-Name:", @@ -80,16 +137,60 @@ "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):", "Max active processes:" : "Maximal aktive Prozesse:", "Max children reached:" : "Maximal erreichte Kindzahl:", - "Database" : "Datenbank", - "Type:" : "Art:", + "CPU" : "Prozessor", + "Swap" : "Swap", + "Resource usage" : "Ressourcenverbrauch", + "Shares" : "Freigaben", + "Users:" : "Benutzer:", + "Groups:" : "Gruppen:", + "Links:" : "Links:", + "Emails:" : "E-Mails:", + "Federated sent:" : "Federated gesendet:", + "Federated received:" : "Federated empfangen:", + "Talk conversations:" : "Talk-Unterhaltungen:", + "Runs" : "Ausführungen", + "Average" : "Durchschnittlich", + "Longest" : "Längeste", + "Warning" : "Warnung", + "Critical" : "Kritisch", + "Operating System:" : "Betriebssystem:", + "CPU:" : "Prozessor:", + "{name} ({threads} threads)" : "{name} ({threads} Threads)", + "Server time:" : "Serverzeit:", + "Uptime:" : "Betriebszeit:", + "Temperature" : "Temperatur", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} sek", + "CPU Usage:" : "CPU-Auslastung:", + "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzten Minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzte Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzten 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzten 15 Minuten", + "RAM Usage:" : "Speicherauslastung:", + "SWAP Usage:" : "SWAP-Auslastung:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", + "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "⌘-C zum Kopieren drücken.", + "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", + "threads" : "Threads", + "Memory:" : "Speicher:", + "Files:" : "Dateien:", + "Storages:" : "Speicher:", + "Free Space:" : "Freier Speicherplatz:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% aller Benutzer", + "Memory limit:" : "Speicherlimit:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", "External monitoring tool" : "Externes Überwachungsprogramm", "Use this end point to connect an external monitoring tool:" : "Diesen Endpunkt verwenden, um mit einem externen Überwachungstool zu verbinden:", "Copy" : "Kopieren", - "Output in JSON" : "Ausgabe in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Abschnitt \"Apps\" überspringen (das Einschließen des Abschnitts \"Apps\" sendet eine externe Anfrage an den App Store)", - "Skip server update" : "Serveraktualisierung überspringen", "To use an access token, please generate one then set it using the following command:" : "Um ein Zugriffstoken zu verwenden, generiere bitte ein Token und lege es mit dem folgenden Befehl fest:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Übergib dann das Token mit dem \"NC-Token\"-Header bei der Abfrage der obigen URL.", - "Unknown Processor" : "Unbekannter Prozessor" + "%1$s (%2$d threads)" : "%1$s (%2$d Threads)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/de_DE.js b/l10n/de_DE.js index bcd6436a..e6b646d6 100644 --- a/l10n/de_DE.js +++ b/l10n/de_DE.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informationen zur CPU nicht verfügbar", - "CPU Usage:" : "CPU-Auslastung:", - "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzen Minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzte Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzte 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzte 15 Minuten", - "RAM Usage:" : "Speicherauslastung:", - "SWAP Usage:" : "SWAP-Auslastung:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", - "RAM info not available" : "Informationen zum RAM nicht verfügbar", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", - "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", - "Copied!" : "Kopiert!", - "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", - "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", "System" : "System", + "Unknown" : "Unbekannt", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d Tage, %2$d Stunden, %3$d Minuten, %4$d Sekunden", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d Stunden, %2$d Minuten, %3$d Sekunden", "Monitoring" : "Information", "Monitoring app with useful server information" : "Monitoring-App mit nützlichen Serverinformationen", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nützliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", - "Operating System:" : "Betriebssystem:", - "CPU:" : "Prozessor:", - "threads" : "Threads", - "Memory:" : "Speicher:", - "Server time:" : "Serverzeit:", - "Uptime:" : "Betriebszeit:", - "Temperature" : "Temperatur", + "{0}% of all users" : "{0} % aller Benutzer", + "Active users" : "Aktive Benutzer", + "Last hour" : "In der letzten Stunde", + "Last 24 Hours" : "In den letzten 24 Stunden", + "Last 7 Days" : "In den letzten 7 Tagen", + "Last 30 Days" : "In den letzten 30 Tagen", + "System cron" : "System-Cron", + "Webcron" : "Web-Cron", + "AJAX (not recommended)" : "AJAX (Nicht empfohlen)", + "Background jobs" : "Hintergrundaufgaben", + "Mode" : "Modus", + "Last run" : "Letzte Ausführung", + "Never" : "Niemals", + "Latest runs" : "Letzte Ausführungen", + "No background job has run yet." : "Bislang wurde keine Backupaufgabe ausgeführt.", + "Slowest jobs" : "Langsamste Jobs", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Die Statistiken über langsame Aufgaben liegen noch nicht vor. Sie werden von einem Hintergrundjob gesammelt und erscheinen nach dessen nächstem Lauf.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Letzte Fehler (Letzte %n Tag)","Letzte Fehler (Letzte %n Tage)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Am letzten %n Tag ist keine Hintergrund-Job fehlgeschlagen.","In den letzten %n Tagen sind keine Hintergrund-Jobs fehlgeschlagen."], "Load" : "Auslastung", - "Memory" : "Speicher", + "CPU info not available" : "Informationen zur CPU nicht verfügbar", + "Current usage" : "Aktuelle Nutzung", + "Threads" : "Themen", + "Load average" : "Durchschnittsauslastung", + "Database" : "Datenbank", + "Type:" : "Art:", + "Version:" : "Version:", + "Size:" : "Größe:", + "{used} of {total} used" : "{used} von {total} verwendet", + "Used" : "Verwendet", + "Available" : "Verfügbar", "Disk" : "Festplatte", + "Files" : "Dateien", + "Storages" : "Speicher", + "Free space" : "Freier Speicherplatz", "Mount:" : "Mount:", "Filesystem:" : "Dateisystem:", - "Size:" : "Größe:", "Available:" : "Verfügbar:", "Used:" : "Verwendet:", - "Files:" : "Dateien:", - "Storages:" : "Speicher:", - "Free Space:" : "Freier Speicherplatz:", + "Class" : "Klasse", + "Status" : "Status", + "Started" : "Gestartet", + "Duration" : "Dauer", + "Peak memory" : "Speicherspitze", + "Run ID" : "Run-ID", + "Server ID" : "Server-ID", + "Process ID" : "Prozess-ID", + "Details about {job} from {time}" : "Einzelheiten über {job} von {time}", + "Job" : "Job", + "When" : "Wenn", + "Details" : "Details", + "Succeeded" : "Erfolgreich", + "Failed" : "Fehlgeschlagen", + "Crashed" : "Abgestürzt", + "Running" : "Läuft", + "RAM usage" : "RAM-Verwendung", + "Swap usage" : "Swap-Verwendung", + "Memory" : "Speicher", + "RAM info not available" : "Informationen zum RAM nicht verfügbar", + "Total" : "Gesamt", + "Swap used" : "Swap verwendet", + "External monitoring API" : "Externe Überwachungs-API", + "Endpoint URL" : "Endpunkt-URL", + "Configuration" : "Konfiguration", + "Output in JSON" : "Ausgabe in JSON", + "Skip apps section" : "Apps-Abschnitt überspringen", + "Including the apps section sends an external request to the app store" : "Durch die Einbindung des Apps-Bereichs wird eine externe Anfrage an den App Store gesendet", + "Skip server update" : "Serveraktualisierung überspringen", + "Authentication" : "Authentifizierung", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Dieses Token wurde in Ihrem Browser generiert und wird erst gespeichert, wenn Sie den folgenden Befehl ausführen. Senden Sie es bei jeder Anfrage im {header}-Header.", + "Command to store the token" : "Befehl zum Speichern des Tokens", + "Request header" : "Anfrageheader", "Network" : "Netzwerk", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Host-Name", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Geschwindigkeit:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktive Benutzer", - "Last hour" : "In der letzten Stunde", - "%s%% of all users" : "%s%% aller Benutzer", - "Last 24 Hours" : "In den letzten 24 Stunden", - "Last 7 Days" : "In den letzten 7 Tagen", - "Last 30 Days" : "In den letzten 30 Tagen", - "Shares" : "Freigaben", - "Users:" : "Benutzer:", - "Groups:" : "Gruppen:", - "Links:" : "Links:", - "Emails:" : "E-Mails:", - "Federated sent:" : "Federated gesendet:", - "Federated received:" : "Federated empfangen:", - "Talk conversations:" : "Talk-Unterhaltungen:", + "OPcache is not loaded." : "OPcache ist nicht geladen", + "OPcache is disabled." : "OPCache ist deaktiviert", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud darf den OPcache-Status („opcache.restrict_api“) nicht lesen.", + "OPcache status is unavailable." : "Der OPcache-Status ist nicht verfügbar.", + "{used} of {total}" : "{used} von {total}", + "Interned strings" : "Intern gespeicherte Zeichenfolgen im OPcache (interned strings)", + "Keys" : "Schlüssel", + "{used} of {max}" : "{used} von {max}", + "Disabled" : "Deaktiviert", + "Enabled, {used} of {total} buffer used" : "Aktiviert, {used} von {total} Puffern verwendet", + "OPcache" : "OPcache", + "Hit rate" : "Trefferquote", + "Cached scripts" : "Zwischengespeicherte Skripte", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Diese Zahlen beschreiben den PHP-Prozess, der diese Anfrage bearbeitet. Andere FPM-Pools oder die CLI behalten ihren eigenen OPcache.", + "Revalidate frequency:" : "Häufigkeit der erneuten Validierung:", + "seconds" : "Sekunden", + "Validate timestamps:" : "Zeitstempel der Validierung:", + "Yes" : "Ja", + "No" : "Nein", + "OOM restarts:" : "OOM Neustarts:", + "Last restart:" : "Letzter Neustart:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP-Erweiterungen", + "Extension" : "Erweiterung", + "Unable to list extensions" : "Erweiterungen können nicht aufgelistet werden", + "{count} loaded" : "{count} geladen", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Speicherlimit:", + "Version" : "Version", + "Memory limit" : "Speicherlimit", "Max execution time:" : "Maximale Ausführungszeit:", "Upload max size:" : "Maximale Größe zum Hochladen:", - "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", + "Post max size:" : "Max. Größe für Uploads per POST-Methode:", + "SAPI:" : "SAPI:", "Extensions:" : "Erweiterungen:", - "Unable to list extensions" : "Erweiterungen können nicht aufgelistet werden", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "phpinfo anzeigen", "FPM worker pool" : "FPM-Worker-Pool", "Pool name:" : "Pool-Name:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):", "Max active processes:" : "Maximal aktive Prozesse:", "Max children reached:" : "Maximal erreichte Kindzahl:", - "Database" : "Datenbank", - "Type:" : "Art:", + "CPU" : "Prozessor", + "Swap" : "Swap", + "Resource usage" : "Ressourcenverbrauch", + "Shares" : "Freigaben", + "Users:" : "Benutzer:", + "Groups:" : "Gruppen:", + "Links:" : "Links:", + "Emails:" : "E-Mails:", + "Federated sent:" : "Federated gesendet:", + "Federated received:" : "Federated empfangen:", + "Talk conversations:" : "Talk-Unterhaltungen:", + "Runs" : "Ausführungen", + "Average" : "Durchschnitt", + "Longest" : "Längeste", + "Warning" : "Warnung", + "Critical" : "Kritisch", + "Operating System:" : "Betriebssystem:", + "CPU:" : "Prozessor:", + "{name} ({threads} threads)" : "{name} ({threads} Threads)", + "Server time:" : "Serverzeit:", + "Uptime:" : "Betriebszeit:", + "Temperature" : "Temperatur", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} sek", + "CPU Usage:" : "CPU-Auslastung:", + "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzen Minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzte Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzte 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzte 15 Minuten", + "RAM Usage:" : "Speicherauslastung:", + "SWAP Usage:" : "SWAP-Auslastung:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", + "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", + "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", + "threads" : "Threads", + "Memory:" : "Speicher:", + "Files:" : "Dateien:", + "Storages:" : "Speicher:", + "Free Space:" : "Freier Speicherplatz:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% aller Benutzer", + "Memory limit:" : "Speicherlimit:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", "External monitoring tool" : "Externes Überwachungsprogramm", "Use this end point to connect an external monitoring tool:" : "Diesen Endpunkt verwenden, um mit einem externen Überwachungstool zu verbinden:", "Copy" : "Kopieren", - "Output in JSON" : "Ausgabe in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Abschnitt \"Apps\" überspringen (das Einschließen des Abschnitts \"Apps\" sendet eine externe Anfrage an den App Store)", - "Skip server update" : "Serveraktualisierung überspringen", "To use an access token, please generate one then set it using the following command:" : "Um ein Zugriffstoken zu verwenden, generieren Sie bitte eines und legen Sie es mit dem folgenden Befehl fest:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Übergeben Sie dann das Token mit dem Header \"NC-Token\" durch Aufrufen der obigen URL.", - "Unknown Processor" : "Unbekannter Prozessor" + "%1$s (%2$d threads)" : "%1$s (%2$d Threads)", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/de_DE.json b/l10n/de_DE.json index fb7bc6c8..a222365b 100644 --- a/l10n/de_DE.json +++ b/l10n/de_DE.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "Informationen zur CPU nicht verfügbar", - "CPU Usage:" : "CPU-Auslastung:", - "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzen Minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzte Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzte 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzte 15 Minuten", - "RAM Usage:" : "Speicherauslastung:", - "SWAP Usage:" : "SWAP-Auslastung:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", - "RAM info not available" : "Informationen zum RAM nicht verfügbar", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", - "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", - "Copied!" : "Kopiert!", - "Not supported!" : "Nicht unterstützt!", - "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", - "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", "System" : "System", + "Unknown" : "Unbekannt", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d Tage, %2$d Stunden, %3$d Minuten, %4$d Sekunden", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d Stunden, %2$d Minuten, %3$d Sekunden", "Monitoring" : "Information", "Monitoring app with useful server information" : "Monitoring-App mit nützlichen Serverinformationen", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zeigt nützliche Informationen des Servers an wie z.B. CPU-Last, Arbeitsspeicherauslastung, Massenspeicherauslastung, Anzahl der Benutzer, usw.", - "Operating System:" : "Betriebssystem:", - "CPU:" : "Prozessor:", - "threads" : "Threads", - "Memory:" : "Speicher:", - "Server time:" : "Serverzeit:", - "Uptime:" : "Betriebszeit:", - "Temperature" : "Temperatur", + "{0}% of all users" : "{0} % aller Benutzer", + "Active users" : "Aktive Benutzer", + "Last hour" : "In der letzten Stunde", + "Last 24 Hours" : "In den letzten 24 Stunden", + "Last 7 Days" : "In den letzten 7 Tagen", + "Last 30 Days" : "In den letzten 30 Tagen", + "System cron" : "System-Cron", + "Webcron" : "Web-Cron", + "AJAX (not recommended)" : "AJAX (Nicht empfohlen)", + "Background jobs" : "Hintergrundaufgaben", + "Mode" : "Modus", + "Last run" : "Letzte Ausführung", + "Never" : "Niemals", + "Latest runs" : "Letzte Ausführungen", + "No background job has run yet." : "Bislang wurde keine Backupaufgabe ausgeführt.", + "Slowest jobs" : "Langsamste Jobs", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Die Statistiken über langsame Aufgaben liegen noch nicht vor. Sie werden von einem Hintergrundjob gesammelt und erscheinen nach dessen nächstem Lauf.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Letzte Fehler (Letzte %n Tag)","Letzte Fehler (Letzte %n Tage)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Am letzten %n Tag ist keine Hintergrund-Job fehlgeschlagen.","In den letzten %n Tagen sind keine Hintergrund-Jobs fehlgeschlagen."], "Load" : "Auslastung", - "Memory" : "Speicher", + "CPU info not available" : "Informationen zur CPU nicht verfügbar", + "Current usage" : "Aktuelle Nutzung", + "Threads" : "Themen", + "Load average" : "Durchschnittsauslastung", + "Database" : "Datenbank", + "Type:" : "Art:", + "Version:" : "Version:", + "Size:" : "Größe:", + "{used} of {total} used" : "{used} von {total} verwendet", + "Used" : "Verwendet", + "Available" : "Verfügbar", "Disk" : "Festplatte", + "Files" : "Dateien", + "Storages" : "Speicher", + "Free space" : "Freier Speicherplatz", "Mount:" : "Mount:", "Filesystem:" : "Dateisystem:", - "Size:" : "Größe:", "Available:" : "Verfügbar:", "Used:" : "Verwendet:", - "Files:" : "Dateien:", - "Storages:" : "Speicher:", - "Free Space:" : "Freier Speicherplatz:", + "Class" : "Klasse", + "Status" : "Status", + "Started" : "Gestartet", + "Duration" : "Dauer", + "Peak memory" : "Speicherspitze", + "Run ID" : "Run-ID", + "Server ID" : "Server-ID", + "Process ID" : "Prozess-ID", + "Details about {job} from {time}" : "Einzelheiten über {job} von {time}", + "Job" : "Job", + "When" : "Wenn", + "Details" : "Details", + "Succeeded" : "Erfolgreich", + "Failed" : "Fehlgeschlagen", + "Crashed" : "Abgestürzt", + "Running" : "Läuft", + "RAM usage" : "RAM-Verwendung", + "Swap usage" : "Swap-Verwendung", + "Memory" : "Speicher", + "RAM info not available" : "Informationen zum RAM nicht verfügbar", + "Total" : "Gesamt", + "Swap used" : "Swap verwendet", + "External monitoring API" : "Externe Überwachungs-API", + "Endpoint URL" : "Endpunkt-URL", + "Configuration" : "Konfiguration", + "Output in JSON" : "Ausgabe in JSON", + "Skip apps section" : "Apps-Abschnitt überspringen", + "Including the apps section sends an external request to the app store" : "Durch die Einbindung des Apps-Bereichs wird eine externe Anfrage an den App Store gesendet", + "Skip server update" : "Serveraktualisierung überspringen", + "Authentication" : "Authentifizierung", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Dieses Token wurde in Ihrem Browser generiert und wird erst gespeichert, wenn Sie den folgenden Befehl ausführen. Senden Sie es bei jeder Anfrage im {header}-Header.", + "Command to store the token" : "Befehl zum Speichern des Tokens", + "Request header" : "Anfrageheader", "Network" : "Netzwerk", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Host-Name", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Geschwindigkeit:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktive Benutzer", - "Last hour" : "In der letzten Stunde", - "%s%% of all users" : "%s%% aller Benutzer", - "Last 24 Hours" : "In den letzten 24 Stunden", - "Last 7 Days" : "In den letzten 7 Tagen", - "Last 30 Days" : "In den letzten 30 Tagen", - "Shares" : "Freigaben", - "Users:" : "Benutzer:", - "Groups:" : "Gruppen:", - "Links:" : "Links:", - "Emails:" : "E-Mails:", - "Federated sent:" : "Federated gesendet:", - "Federated received:" : "Federated empfangen:", - "Talk conversations:" : "Talk-Unterhaltungen:", + "OPcache is not loaded." : "OPcache ist nicht geladen", + "OPcache is disabled." : "OPCache ist deaktiviert", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud darf den OPcache-Status („opcache.restrict_api“) nicht lesen.", + "OPcache status is unavailable." : "Der OPcache-Status ist nicht verfügbar.", + "{used} of {total}" : "{used} von {total}", + "Interned strings" : "Intern gespeicherte Zeichenfolgen im OPcache (interned strings)", + "Keys" : "Schlüssel", + "{used} of {max}" : "{used} von {max}", + "Disabled" : "Deaktiviert", + "Enabled, {used} of {total} buffer used" : "Aktiviert, {used} von {total} Puffern verwendet", + "OPcache" : "OPcache", + "Hit rate" : "Trefferquote", + "Cached scripts" : "Zwischengespeicherte Skripte", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Diese Zahlen beschreiben den PHP-Prozess, der diese Anfrage bearbeitet. Andere FPM-Pools oder die CLI behalten ihren eigenen OPcache.", + "Revalidate frequency:" : "Häufigkeit der erneuten Validierung:", + "seconds" : "Sekunden", + "Validate timestamps:" : "Zeitstempel der Validierung:", + "Yes" : "Ja", + "No" : "Nein", + "OOM restarts:" : "OOM Neustarts:", + "Last restart:" : "Letzter Neustart:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP-Erweiterungen", + "Extension" : "Erweiterung", + "Unable to list extensions" : "Erweiterungen können nicht aufgelistet werden", + "{count} loaded" : "{count} geladen", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Speicherlimit:", + "Version" : "Version", + "Memory limit" : "Speicherlimit", "Max execution time:" : "Maximale Ausführungszeit:", "Upload max size:" : "Maximale Größe zum Hochladen:", - "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", + "Post max size:" : "Max. Größe für Uploads per POST-Methode:", + "SAPI:" : "SAPI:", "Extensions:" : "Erweiterungen:", - "Unable to list extensions" : "Erweiterungen können nicht aufgelistet werden", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "phpinfo anzeigen", "FPM worker pool" : "FPM-Worker-Pool", "Pool name:" : "Pool-Name:", @@ -80,16 +137,60 @@ "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):", "Max active processes:" : "Maximal aktive Prozesse:", "Max children reached:" : "Maximal erreichte Kindzahl:", - "Database" : "Datenbank", - "Type:" : "Art:", + "CPU" : "Prozessor", + "Swap" : "Swap", + "Resource usage" : "Ressourcenverbrauch", + "Shares" : "Freigaben", + "Users:" : "Benutzer:", + "Groups:" : "Gruppen:", + "Links:" : "Links:", + "Emails:" : "E-Mails:", + "Federated sent:" : "Federated gesendet:", + "Federated received:" : "Federated empfangen:", + "Talk conversations:" : "Talk-Unterhaltungen:", + "Runs" : "Ausführungen", + "Average" : "Durchschnitt", + "Longest" : "Längeste", + "Warning" : "Warnung", + "Critical" : "Kritisch", + "Operating System:" : "Betriebssystem:", + "CPU:" : "Prozessor:", + "{name} ({threads} threads)" : "{name} ({threads} Threads)", + "Server time:" : "Serverzeit:", + "Uptime:" : "Betriebszeit:", + "Temperature" : "Temperatur", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} sek", + "CPU Usage:" : "CPU-Auslastung:", + "Load average: {percentage} % ({load}) last minute" : "Durchschnittliche Last: {percentage} % ({load}) in der letzen Minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) letzte Minute\n{last5MinutesPercentage} % ({last5Minutes}) letzte 5 Minuten\n{last15MinutesPercentage} % ({last15Minutes}) letzte 15 Minuten", + "RAM Usage:" : "Speicherauslastung:", + "SWAP Usage:" : "SWAP-Auslastung:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Gesamt: {memTotalBytes}/Aktuelle Nutzung: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Gesamt: {swapTotalBytes}/Aktuelle Nutzung: {swapUsageBytes}", + "SWAP info not available" : "Informationen zum SWAP nicht verfügbar", + "Copied!" : "Kopiert!", + "Not supported!" : "Nicht unterstützt!", + "Press ⌘-C to copy." : "Zum Kopieren ⌘-C drücken.", + "Press Ctrl-C to copy." : "Zum Kopieren Strg-C drücken.", + "threads" : "Threads", + "Memory:" : "Speicher:", + "Files:" : "Dateien:", + "Storages:" : "Speicher:", + "Free Space:" : "Freier Speicherplatz:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% aller Benutzer", + "Memory limit:" : "Speicherlimit:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:", "External monitoring tool" : "Externes Überwachungsprogramm", "Use this end point to connect an external monitoring tool:" : "Diesen Endpunkt verwenden, um mit einem externen Überwachungstool zu verbinden:", "Copy" : "Kopieren", - "Output in JSON" : "Ausgabe in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Abschnitt \"Apps\" überspringen (das Einschließen des Abschnitts \"Apps\" sendet eine externe Anfrage an den App Store)", - "Skip server update" : "Serveraktualisierung überspringen", "To use an access token, please generate one then set it using the following command:" : "Um ein Zugriffstoken zu verwenden, generieren Sie bitte eines und legen Sie es mit dem folgenden Befehl fest:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Übergeben Sie dann das Token mit dem Header \"NC-Token\" durch Aufrufen der obigen URL.", - "Unknown Processor" : "Unbekannter Prozessor" + "%1$s (%2$d threads)" : "%1$s (%2$d Threads)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/el.js b/l10n/el.js index 7f2b3ed9..914a08df 100644 --- a/l10n/el.js +++ b/l10n/el.js @@ -1,56 +1,134 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Οι πληροφορίες επεξεργαστή CPU δεν είναι διαθέσιμες", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Σύνολο: {memTotalBytes}/Τρέχουσα χρήση: {memUsageBytes}", - "RAM info not available" : "Οι πληροφορίες RAM δεν είναι διαθέσιμες", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Σύνολο: {swapTotalBytes}/Τρέχουσα χρήση: {swapUsageBytes}", - "SWAP info not available" : "Οι πληροφορίες SWAP δεν είναι διαθέσιμες", - "Copied!" : "Αντιγράφηκε!", - "Not supported!" : "Δεν υποστηρίζεται!", - "Press ⌘-C to copy." : "Για αντιγραφή πατήστε ⌘-C.", - "Press Ctrl-C to copy." : "Για αντιγραφή πατήστε Ctrl-C.", "System" : "Σύστημα", + "Unknown" : "Άγνωστο", "Monitoring" : "Παρακολούθηση", "Monitoring app with useful server information" : "Εφαρμογή παρακολούθησης πληροφοριών διακομιστή", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Εμφανίζει χρήσιμες πληροφορίες του διακομιστή, όπως χρήση CPU, RAM, σκληρού δίσκου, αριθμός χρηστών, κλτ.", - "Operating System:" : "Λειτουργικό σύστημα", - "Memory:" : "Μνήμη:", - "Server time:" : "Ώρα διακομιστή:", - "Uptime:" : "Διάρκεια λειτουργίας:", - "Temperature" : "Θερμοκρασία", + "Active users" : "Ενεργοί χρήστες", + "Last hour" : "Τελευταία ώρα", + "Last 24 Hours" : "Τελευταίες 24 Ώρες", + "Last 7 Days" : "Τελευταίες 7 Ημέρες", + "Last 30 Days" : "Τελευταίες 30 Ημέρες", + "Webcron" : "Webcron", + "Background jobs" : "Εργασίες παρασκηνίου", + "Mode" : "Λειτουργία", + "Never" : "Ποτέ", "Load" : "Χρήση", - "Memory" : "Μνήμη", + "CPU info not available" : "Οι πληροφορίες επεξεργαστή CPU δεν είναι διαθέσιμες", + "Current usage" : "Τρέχουσα χρήση", + "Threads" : "Θέματα", + "Load average" : "Μέσος όρος φόρτωσης", + "Database" : "Βάση δεδομένων", + "Type:" : "Τύπος:", + "Version:" : "Έκδοση:", + "Size:" : "Μέγεθος:", + "Used" : "Σε χρήση", + "Available" : "Διαθέσιμα", "Disk" : "Δίσκος", + "Files" : "Αρχεία", "Mount:" : "Προσάρτηση:", "Filesystem:" : "Σύστημα αρχείων:", - "Size:" : "Μέγεθος:", "Available:" : "Διαθέσιμα:", "Used:" : "Σε χρήση:", - "Files:" : "Αρχεία:", - "Storages:" : "Αποθηκευτικοί χώροι:", - "Free Space:" : "Ελεύθερος Χώρος:", + "Status" : "Κατάσταση", + "Started" : "Ξεκίνησε", + "Duration" : "Διάρκεια", + "Job" : "Εργασία", + "When" : "Πότε", + "Details" : "Λεπτομέρειες", + "Succeeded" : "Επιτυχία", + "Failed" : "Αποτυχία", + "Running" : "Σε εκτέλεση", + "Memory" : "Μνήμη", + "RAM info not available" : "Οι πληροφορίες RAM δεν είναι διαθέσιμες", + "Total" : "Σύνολο", + "Configuration" : "Διαμόρφωση", + "Output in JSON" : "Έξοδος σε JSON", + "Skip server update" : "Παράλειψη ενημέρωσης διακομιστή", + "Authentication" : "Ταυτοποίηση", "Network" : "Δίκτυο", - "Hostname:" : "Όνομα υπολογιστή:", - "Gateway:" : "Πύλη:", + "Hostname" : "Όνομα Υπολογιστή", + "Gateway" : "Πύλη", + "DNS" : "DNS", "Status:" : "Κατάσταση:", "Speed:" : "Ταχύτητα:", - "Active users" : "Ενεργοί χρήστες", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Κλειδία", + "Disabled" : "Απενεργοποιημένο", + "seconds" : "δευτερόλεπτα", + "Yes" : "Ναι", + "No" : "Όχι", + "PHP extensions" : "Επεκτάσεις PHP", + "Extension" : "Επέκταση", + "Unable to list extensions" : "Αδυναμία λίστας επεκτάσεων", + "PHP" : "PHP", + "Version" : "Έκδοση", + "Memory limit" : "Όριο μνήμης", + "Max execution time:" : "Μέγιστος χρόνος εκτέλεσης:", + "Upload max size:" : "Μέγιστο μέγεθος μεταφόρτωσης:", + "Extensions:" : "Επεκτάσεις:", + "Show phpinfo" : "Εμφάνιση phpinfo", + "FPM worker pool" : "Συλλογή εργατών FPM", + "Pool name:" : "Όνομα συλλογής:", + "Pool type:" : "Τύπος συλλογής:", + "Start time:" : "Χρόνος έναρξης:", + "Accepted connections:" : "Αποδεκτές συνδέσεις:", + "Total processes:" : "Συνολικές διεργασίες:", + "Active processes:" : "Ενεργές διεργασίες:", + "Idle processes:" : "Αδρανείς διεργασίες:", + "Listen queue:" : "Ουρά ακρόασης:", + "Slow requests:" : "Αργά αιτήματα:", + "Max listen queue:" : "Μέγιστη ουρά ακρόασης:", + "Max active processes:" : "Μέγιστες ενεργές διεργασίες:", + "Max children reached:" : "Φτάστηκε μέγιστος αριθμός παιδιών:", + "CPU" : "CPU", + "Resource usage" : "Χρήση πόρων", "Shares" : "Κοινόχρηστοι φάκελοι", "Users:" : "Χρήστες:", "Groups:" : "Ομάδες:", "Links:" : "Σύνδεσμοι:", "Emails:" : "Email:", - "PHP" : "PHP", - "Version:" : "Έκδοση:", + "Federated sent:" : "Ομοσπονδιακά αποσταλμένα:", + "Federated received:" : "Ομοσπονδιακά ληφθέντα:", + "Talk conversations:" : "Συνομιλίες Talk:", + "Average" : "Μέσος όρος", + "Warning" : "Προειδοποίηση", + "Operating System:" : "Λειτουργικό σύστημα", + "CPU:" : "CPU:", + "Server time:" : "Ώρα διακομιστή:", + "Uptime:" : "Διάρκεια λειτουργίας:", + "Temperature" : "Θερμοκρασία", + "CPU Usage:" : "Χρήση CPU:", + "Load average: {percentage} % ({load}) last minute" : "Μέσος φόρτος: {percentage} % ({load}) τελευταίο λεπτό", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) τελευταίο Λεπτό\n{last5MinutesPercentage} % ({last5Minutes}) τελευταία 5 Λεπτά\n{last15MinutesPercentage} % ({last15Minutes}) τελευταία 15 Λεπτά", + "RAM Usage:" : "Χρήση RAM:", + "SWAP Usage:" : "Χρήση SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Σύνολο: {memTotalBytes}/Τρέχουσα χρήση: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Σύνολο: {swapTotalBytes}/Τρέχουσα χρήση: {swapUsageBytes}", + "SWAP info not available" : "Οι πληροφορίες SWAP δεν είναι διαθέσιμες", + "Copied!" : "Αντιγράφηκε!", + "Not supported!" : "Δεν υποστηρίζεται!", + "Press ⌘-C to copy." : "Για αντιγραφή πατήστε ⌘-C.", + "Press Ctrl-C to copy." : "Για αντιγραφή πατήστε Ctrl-C.", + "threads" : "νήματα", + "Memory:" : "Μνήμη:", + "Files:" : "Αρχεία:", + "Storages:" : "Αποθηκευτικοί χώροι:", + "Free Space:" : "Ελεύθερος Χώρος:", + "Hostname:" : "Όνομα υπολογιστή:", + "Gateway:" : "Πύλη:", + "%s%% of all users" : "%s%% όλων των χρηστών", "Memory limit:" : "Όριο μνήμης:", - "Max execution time:" : "Μέγιστος χρόνος εκτέλεσης:", - "Upload max size:" : "Μέγιστο μέγεθος μεταφόρτωσης:", - "Extensions:" : "Επεκτάσεις:", - "Database" : "Βάση δεδομένων", - "Type:" : "Τύπος:", + "OPcache Revalidate Frequency:" : "Συχνότητα Επανεπικύρωσης OPcache:", "External monitoring tool" : "Εξωτερικό εργαλείο παρακολούθησης", + "Use this end point to connect an external monitoring tool:" : "Χρησιμοποιήστε αυτό το τελικό σημείο για σύνδεση εξωτερικού εργαλείου παρακολούθησης:", "Copy" : "Αντιγραφή", + "Skip apps section (including apps section will send an external request to the app store)" : "Παράλειψη τμήματος εφαρμογών (η συμπερίληψη του τμήματος εφαρμογών θα στείλει εξωτερικό αίτημα στο app store)", "To use an access token, please generate one then set it using the following command:" : "Για να χρησιμοποιήσετε ένα αναγνωριστικό πρόσβασης (token), δημιουργήστε ένα και ορίστε το χρησιμοποιώντας την ακόλουθη εντολή:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Στη συνέχεια, περάστε το αναγνωριστικό με την κεφαλίδα \"NC-Token\" όταν υποβάλετε ερώτημα στην παραπάνω διεύθυνση URL." }, diff --git a/l10n/el.json b/l10n/el.json index 816b254d..4a09fc05 100644 --- a/l10n/el.json +++ b/l10n/el.json @@ -1,54 +1,132 @@ { "translations": { - "CPU info not available" : "Οι πληροφορίες επεξεργαστή CPU δεν είναι διαθέσιμες", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Σύνολο: {memTotalBytes}/Τρέχουσα χρήση: {memUsageBytes}", - "RAM info not available" : "Οι πληροφορίες RAM δεν είναι διαθέσιμες", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Σύνολο: {swapTotalBytes}/Τρέχουσα χρήση: {swapUsageBytes}", - "SWAP info not available" : "Οι πληροφορίες SWAP δεν είναι διαθέσιμες", - "Copied!" : "Αντιγράφηκε!", - "Not supported!" : "Δεν υποστηρίζεται!", - "Press ⌘-C to copy." : "Για αντιγραφή πατήστε ⌘-C.", - "Press Ctrl-C to copy." : "Για αντιγραφή πατήστε Ctrl-C.", "System" : "Σύστημα", + "Unknown" : "Άγνωστο", "Monitoring" : "Παρακολούθηση", "Monitoring app with useful server information" : "Εφαρμογή παρακολούθησης πληροφοριών διακομιστή", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Εμφανίζει χρήσιμες πληροφορίες του διακομιστή, όπως χρήση CPU, RAM, σκληρού δίσκου, αριθμός χρηστών, κλτ.", - "Operating System:" : "Λειτουργικό σύστημα", - "Memory:" : "Μνήμη:", - "Server time:" : "Ώρα διακομιστή:", - "Uptime:" : "Διάρκεια λειτουργίας:", - "Temperature" : "Θερμοκρασία", + "Active users" : "Ενεργοί χρήστες", + "Last hour" : "Τελευταία ώρα", + "Last 24 Hours" : "Τελευταίες 24 Ώρες", + "Last 7 Days" : "Τελευταίες 7 Ημέρες", + "Last 30 Days" : "Τελευταίες 30 Ημέρες", + "Webcron" : "Webcron", + "Background jobs" : "Εργασίες παρασκηνίου", + "Mode" : "Λειτουργία", + "Never" : "Ποτέ", "Load" : "Χρήση", - "Memory" : "Μνήμη", + "CPU info not available" : "Οι πληροφορίες επεξεργαστή CPU δεν είναι διαθέσιμες", + "Current usage" : "Τρέχουσα χρήση", + "Threads" : "Θέματα", + "Load average" : "Μέσος όρος φόρτωσης", + "Database" : "Βάση δεδομένων", + "Type:" : "Τύπος:", + "Version:" : "Έκδοση:", + "Size:" : "Μέγεθος:", + "Used" : "Σε χρήση", + "Available" : "Διαθέσιμα", "Disk" : "Δίσκος", + "Files" : "Αρχεία", "Mount:" : "Προσάρτηση:", "Filesystem:" : "Σύστημα αρχείων:", - "Size:" : "Μέγεθος:", "Available:" : "Διαθέσιμα:", "Used:" : "Σε χρήση:", - "Files:" : "Αρχεία:", - "Storages:" : "Αποθηκευτικοί χώροι:", - "Free Space:" : "Ελεύθερος Χώρος:", + "Status" : "Κατάσταση", + "Started" : "Ξεκίνησε", + "Duration" : "Διάρκεια", + "Job" : "Εργασία", + "When" : "Πότε", + "Details" : "Λεπτομέρειες", + "Succeeded" : "Επιτυχία", + "Failed" : "Αποτυχία", + "Running" : "Σε εκτέλεση", + "Memory" : "Μνήμη", + "RAM info not available" : "Οι πληροφορίες RAM δεν είναι διαθέσιμες", + "Total" : "Σύνολο", + "Configuration" : "Διαμόρφωση", + "Output in JSON" : "Έξοδος σε JSON", + "Skip server update" : "Παράλειψη ενημέρωσης διακομιστή", + "Authentication" : "Ταυτοποίηση", "Network" : "Δίκτυο", - "Hostname:" : "Όνομα υπολογιστή:", - "Gateway:" : "Πύλη:", + "Hostname" : "Όνομα Υπολογιστή", + "Gateway" : "Πύλη", + "DNS" : "DNS", "Status:" : "Κατάσταση:", "Speed:" : "Ταχύτητα:", - "Active users" : "Ενεργοί χρήστες", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Κλειδία", + "Disabled" : "Απενεργοποιημένο", + "seconds" : "δευτερόλεπτα", + "Yes" : "Ναι", + "No" : "Όχι", + "PHP extensions" : "Επεκτάσεις PHP", + "Extension" : "Επέκταση", + "Unable to list extensions" : "Αδυναμία λίστας επεκτάσεων", + "PHP" : "PHP", + "Version" : "Έκδοση", + "Memory limit" : "Όριο μνήμης", + "Max execution time:" : "Μέγιστος χρόνος εκτέλεσης:", + "Upload max size:" : "Μέγιστο μέγεθος μεταφόρτωσης:", + "Extensions:" : "Επεκτάσεις:", + "Show phpinfo" : "Εμφάνιση phpinfo", + "FPM worker pool" : "Συλλογή εργατών FPM", + "Pool name:" : "Όνομα συλλογής:", + "Pool type:" : "Τύπος συλλογής:", + "Start time:" : "Χρόνος έναρξης:", + "Accepted connections:" : "Αποδεκτές συνδέσεις:", + "Total processes:" : "Συνολικές διεργασίες:", + "Active processes:" : "Ενεργές διεργασίες:", + "Idle processes:" : "Αδρανείς διεργασίες:", + "Listen queue:" : "Ουρά ακρόασης:", + "Slow requests:" : "Αργά αιτήματα:", + "Max listen queue:" : "Μέγιστη ουρά ακρόασης:", + "Max active processes:" : "Μέγιστες ενεργές διεργασίες:", + "Max children reached:" : "Φτάστηκε μέγιστος αριθμός παιδιών:", + "CPU" : "CPU", + "Resource usage" : "Χρήση πόρων", "Shares" : "Κοινόχρηστοι φάκελοι", "Users:" : "Χρήστες:", "Groups:" : "Ομάδες:", "Links:" : "Σύνδεσμοι:", "Emails:" : "Email:", - "PHP" : "PHP", - "Version:" : "Έκδοση:", + "Federated sent:" : "Ομοσπονδιακά αποσταλμένα:", + "Federated received:" : "Ομοσπονδιακά ληφθέντα:", + "Talk conversations:" : "Συνομιλίες Talk:", + "Average" : "Μέσος όρος", + "Warning" : "Προειδοποίηση", + "Operating System:" : "Λειτουργικό σύστημα", + "CPU:" : "CPU:", + "Server time:" : "Ώρα διακομιστή:", + "Uptime:" : "Διάρκεια λειτουργίας:", + "Temperature" : "Θερμοκρασία", + "CPU Usage:" : "Χρήση CPU:", + "Load average: {percentage} % ({load}) last minute" : "Μέσος φόρτος: {percentage} % ({load}) τελευταίο λεπτό", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) τελευταίο Λεπτό\n{last5MinutesPercentage} % ({last5Minutes}) τελευταία 5 Λεπτά\n{last15MinutesPercentage} % ({last15Minutes}) τελευταία 15 Λεπτά", + "RAM Usage:" : "Χρήση RAM:", + "SWAP Usage:" : "Χρήση SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Σύνολο: {memTotalBytes}/Τρέχουσα χρήση: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Σύνολο: {swapTotalBytes}/Τρέχουσα χρήση: {swapUsageBytes}", + "SWAP info not available" : "Οι πληροφορίες SWAP δεν είναι διαθέσιμες", + "Copied!" : "Αντιγράφηκε!", + "Not supported!" : "Δεν υποστηρίζεται!", + "Press ⌘-C to copy." : "Για αντιγραφή πατήστε ⌘-C.", + "Press Ctrl-C to copy." : "Για αντιγραφή πατήστε Ctrl-C.", + "threads" : "νήματα", + "Memory:" : "Μνήμη:", + "Files:" : "Αρχεία:", + "Storages:" : "Αποθηκευτικοί χώροι:", + "Free Space:" : "Ελεύθερος Χώρος:", + "Hostname:" : "Όνομα υπολογιστή:", + "Gateway:" : "Πύλη:", + "%s%% of all users" : "%s%% όλων των χρηστών", "Memory limit:" : "Όριο μνήμης:", - "Max execution time:" : "Μέγιστος χρόνος εκτέλεσης:", - "Upload max size:" : "Μέγιστο μέγεθος μεταφόρτωσης:", - "Extensions:" : "Επεκτάσεις:", - "Database" : "Βάση δεδομένων", - "Type:" : "Τύπος:", + "OPcache Revalidate Frequency:" : "Συχνότητα Επανεπικύρωσης OPcache:", "External monitoring tool" : "Εξωτερικό εργαλείο παρακολούθησης", + "Use this end point to connect an external monitoring tool:" : "Χρησιμοποιήστε αυτό το τελικό σημείο για σύνδεση εξωτερικού εργαλείου παρακολούθησης:", "Copy" : "Αντιγραφή", + "Skip apps section (including apps section will send an external request to the app store)" : "Παράλειψη τμήματος εφαρμογών (η συμπερίληψη του τμήματος εφαρμογών θα στείλει εξωτερικό αίτημα στο app store)", "To use an access token, please generate one then set it using the following command:" : "Για να χρησιμοποιήσετε ένα αναγνωριστικό πρόσβασης (token), δημιουργήστε ένα και ορίστε το χρησιμοποιώντας την ακόλουθη εντολή:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Στη συνέχεια, περάστε το αναγνωριστικό με την κεφαλίδα \"NC-Token\" όταν υποβάλετε ερώτημα στην παραπάνω διεύθυνση URL." },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/en_GB.js b/l10n/en_GB.js index 7ef09f09..5ab2f3c2 100644 --- a/l10n/en_GB.js +++ b/l10n/en_GB.js @@ -1,73 +1,111 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU info not available", - "CPU Usage:" : "CPU Usage:", - "Load average: {percentage} % ({load}) last minute" : "Load average: {percentage} % ({load}) last minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes", - "RAM Usage:" : "RAM Usage:", - "SWAP Usage:" : "SWAP Usage:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", - "RAM info not available" : "RAM info not available", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", - "SWAP info not available" : "SWAP info not available", - "Copied!" : "Copied!", - "Not supported!" : "Not supported!", - "Press ⌘-C to copy." : "Press ⌘-C to copy.", - "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", "System" : "System", + "Unknown" : "Unknown", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d days, %2$d hours, %3$d minutes, %4$d seconds", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d hours, %2$d minutes, %3$d seconds", "Monitoring" : "Monitoring", "Monitoring app with useful server information" : "Monitoring app with useful server information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc.", - "Operating System:" : "Operating System:", - "CPU:" : "CPU:", - "threads" : "threads", - "Memory:" : "Memory:", - "Server time:" : "Server time:", - "Uptime:" : "Uptime:", - "Temperature" : "Temperature", + "{0}% of all users" : "{0}% of all users", + "Active users" : "Active users", + "Last hour" : "Last hour", + "Last 24 Hours" : "Last 24 Hours", + "Last 7 Days" : "Last 7 Days", + "Last 30 Days" : "Last 30 Days", + "System cron" : "System cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (not recommended)", + "Background jobs" : "Background jobs", + "Mode" : "Mode", + "Last run" : "Last run", + "Never" : "Never", + "Latest runs" : "Latest runs", + "No background job has run yet." : "No background job has run yet.", + "Slowest jobs" : "Slowest jobs", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Latest failures (last %n day)","Latest failures (last %n days)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["No background job failed in the last %n day.","No background job failed in the last %n days."], "Load" : "Load", - "Memory" : "Memory", + "CPU info not available" : "CPU info not available", + "Current usage" : "Current usage", + "Threads" : "Threads", + "Load average" : "Load average", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", + "Size:" : "Size:", + "{used} of {total} used" : "{used} of {total} used", + "Used" : "Used", + "Available" : "Available", "Disk" : "Disk", + "Files" : "Files", + "Storages" : "Storages", + "Free space" : "Free space", "Mount:" : "Mount:", "Filesystem:" : "Filesystem:", - "Size:" : "Size:", "Available:" : "Available:", "Used:" : "Used:", - "Files:" : "Files:", - "Storages:" : "Storages:", - "Free Space:" : "Free Space:", + "Class" : "Class", + "Status" : "Status", + "Started" : "Started", + "Duration" : "Duration", + "Peak memory" : "Peak memory", + "Run ID" : "Run ID", + "Server ID" : "Server ID", + "Process ID" : "Process ID", + "Details about {job} from {time}" : "Details about {job} from {time}", + "Job" : "Job", + "When" : "When", + "Details" : "Details", + "Succeeded" : "Succeeded", + "Failed" : "Failed", + "Crashed" : "Crashed", + "Running" : "Running", + "RAM usage" : "RAM usage", + "Swap usage" : "Swap usage", + "Memory" : "Memory", + "RAM info not available" : "RAM info not available", + "Total" : "Total", + "Swap used" : "Swap used", + "External monitoring API" : "External monitoring API", + "Endpoint URL" : "Endpoint URL", + "Configuration" : "Configuration", + "Output in JSON" : "Output in JSON", + "Skip apps section" : "Skip apps section", + "Including the apps section sends an external request to the app store" : "Including the apps section sends an external request to the app store", + "Skip server update" : "Skip server update", + "Authentication" : "Authentication", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request.", + "Command to store the token" : "Command to store the token", + "Request header" : "Request header", "Network" : "Network", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Hostname", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Speed:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Active users", - "Last hour" : "Last hour", - "%s%% of all users" : "%s%% of all users", - "Last 24 Hours" : "Last 24 Hours", - "Last 7 Days" : "Last 7 Days", - "Last 30 Days" : "Last 30 Days", - "Shares" : "Shares", - "Users:" : "Users:", - "Groups:" : "Groups:", - "Links:" : "Links:", - "Emails:" : "Emails:", - "Federated sent:" : "Federated sent:", - "Federated received:" : "Federated received:", - "Talk conversations:" : "Talk conversations:", + "{used} of {total}" : "{used} of {total}", + "Keys" : "Keys", + "Disabled" : "Disabled", + "seconds" : "seconds", + "Yes" : "Yes", + "No" : "No", + "PHP extensions" : "PHP extensions", + "Extension" : "Extension", + "Unable to list extensions" : "Unable to list extensions", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Memory limit:", + "Version" : "Version", + "Memory limit" : "Memory limit", "Max execution time:" : "Max execution time:", "Upload max size:" : "Upload max size:", - "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", "Extensions:" : "Extensions:", - "Unable to list extensions" : "Unable to list extensions", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "Show phpinfo", "FPM worker pool" : "FPM worker pool", "Pool name:" : "Pool name:", @@ -82,16 +120,60 @@ OC.L10N.register( "Max listen queue:" : "Max listen queue:", "Max active processes:" : "Max active processes:", "Max children reached:" : "Max children reached:", - "Database" : "Database", - "Type:" : "Type:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "Resource usage", + "Shares" : "Shares", + "Users:" : "Users:", + "Groups:" : "Groups:", + "Links:" : "Links:", + "Emails:" : "Emails:", + "Federated sent:" : "Federated sent:", + "Federated received:" : "Federated received:", + "Talk conversations:" : "Talk conversations:", + "Runs" : "Runs", + "Average" : "Average", + "Longest" : "Longest", + "Warning" : "Warning", + "Critical" : "Critical", + "Operating System:" : "Operating System:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} threads)", + "Server time:" : "Server time:", + "Uptime:" : "Uptime:", + "Temperature" : "Temperature", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "CPU Usage:", + "Load average: {percentage} % ({load}) last minute" : "Load average: {percentage} % ({load}) last minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes", + "RAM Usage:" : "RAM Usage:", + "SWAP Usage:" : "SWAP Usage:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", + "SWAP info not available" : "SWAP info not available", + "Copied!" : "Copied!", + "Not supported!" : "Not supported!", + "Press ⌘-C to copy." : "Press ⌘-C to copy.", + "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", + "threads" : "threads", + "Memory:" : "Memory:", + "Files:" : "Files:", + "Storages:" : "Storages:", + "Free Space:" : "Free Space:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% of all users", + "Memory limit:" : "Memory limit:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", "External monitoring tool" : "External monitoring tool", "Use this end point to connect an external monitoring tool:" : "Use this end point to connect an external monitoring tool:", "Copy" : "Copy", - "Output in JSON" : "Output in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Skip apps section (including apps section will send an external request to the app store)", - "Skip server update" : "Skip server update", "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL.", - "Unknown Processor" : "Unknown Processor" + "%1$s (%2$d threads)" : "%1$s (%2$d threads)", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/en_GB.json b/l10n/en_GB.json index 776570d0..35d2d683 100644 --- a/l10n/en_GB.json +++ b/l10n/en_GB.json @@ -1,71 +1,109 @@ { "translations": { - "CPU info not available" : "CPU info not available", - "CPU Usage:" : "CPU Usage:", - "Load average: {percentage} % ({load}) last minute" : "Load average: {percentage} % ({load}) last minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes", - "RAM Usage:" : "RAM Usage:", - "SWAP Usage:" : "SWAP Usage:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", - "RAM info not available" : "RAM info not available", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", - "SWAP info not available" : "SWAP info not available", - "Copied!" : "Copied!", - "Not supported!" : "Not supported!", - "Press ⌘-C to copy." : "Press ⌘-C to copy.", - "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", "System" : "System", + "Unknown" : "Unknown", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d days, %2$d hours, %3$d minutes, %4$d seconds", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d hours, %2$d minutes, %3$d seconds", "Monitoring" : "Monitoring", "Monitoring app with useful server information" : "Monitoring app with useful server information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc.", - "Operating System:" : "Operating System:", - "CPU:" : "CPU:", - "threads" : "threads", - "Memory:" : "Memory:", - "Server time:" : "Server time:", - "Uptime:" : "Uptime:", - "Temperature" : "Temperature", + "{0}% of all users" : "{0}% of all users", + "Active users" : "Active users", + "Last hour" : "Last hour", + "Last 24 Hours" : "Last 24 Hours", + "Last 7 Days" : "Last 7 Days", + "Last 30 Days" : "Last 30 Days", + "System cron" : "System cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (not recommended)", + "Background jobs" : "Background jobs", + "Mode" : "Mode", + "Last run" : "Last run", + "Never" : "Never", + "Latest runs" : "Latest runs", + "No background job has run yet." : "No background job has run yet.", + "Slowest jobs" : "Slowest jobs", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Latest failures (last %n day)","Latest failures (last %n days)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["No background job failed in the last %n day.","No background job failed in the last %n days."], "Load" : "Load", - "Memory" : "Memory", + "CPU info not available" : "CPU info not available", + "Current usage" : "Current usage", + "Threads" : "Threads", + "Load average" : "Load average", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", + "Size:" : "Size:", + "{used} of {total} used" : "{used} of {total} used", + "Used" : "Used", + "Available" : "Available", "Disk" : "Disk", + "Files" : "Files", + "Storages" : "Storages", + "Free space" : "Free space", "Mount:" : "Mount:", "Filesystem:" : "Filesystem:", - "Size:" : "Size:", "Available:" : "Available:", "Used:" : "Used:", - "Files:" : "Files:", - "Storages:" : "Storages:", - "Free Space:" : "Free Space:", + "Class" : "Class", + "Status" : "Status", + "Started" : "Started", + "Duration" : "Duration", + "Peak memory" : "Peak memory", + "Run ID" : "Run ID", + "Server ID" : "Server ID", + "Process ID" : "Process ID", + "Details about {job} from {time}" : "Details about {job} from {time}", + "Job" : "Job", + "When" : "When", + "Details" : "Details", + "Succeeded" : "Succeeded", + "Failed" : "Failed", + "Crashed" : "Crashed", + "Running" : "Running", + "RAM usage" : "RAM usage", + "Swap usage" : "Swap usage", + "Memory" : "Memory", + "RAM info not available" : "RAM info not available", + "Total" : "Total", + "Swap used" : "Swap used", + "External monitoring API" : "External monitoring API", + "Endpoint URL" : "Endpoint URL", + "Configuration" : "Configuration", + "Output in JSON" : "Output in JSON", + "Skip apps section" : "Skip apps section", + "Including the apps section sends an external request to the app store" : "Including the apps section sends an external request to the app store", + "Skip server update" : "Skip server update", + "Authentication" : "Authentication", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request.", + "Command to store the token" : "Command to store the token", + "Request header" : "Request header", "Network" : "Network", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Hostname", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Speed:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Active users", - "Last hour" : "Last hour", - "%s%% of all users" : "%s%% of all users", - "Last 24 Hours" : "Last 24 Hours", - "Last 7 Days" : "Last 7 Days", - "Last 30 Days" : "Last 30 Days", - "Shares" : "Shares", - "Users:" : "Users:", - "Groups:" : "Groups:", - "Links:" : "Links:", - "Emails:" : "Emails:", - "Federated sent:" : "Federated sent:", - "Federated received:" : "Federated received:", - "Talk conversations:" : "Talk conversations:", + "{used} of {total}" : "{used} of {total}", + "Keys" : "Keys", + "Disabled" : "Disabled", + "seconds" : "seconds", + "Yes" : "Yes", + "No" : "No", + "PHP extensions" : "PHP extensions", + "Extension" : "Extension", + "Unable to list extensions" : "Unable to list extensions", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Memory limit:", + "Version" : "Version", + "Memory limit" : "Memory limit", "Max execution time:" : "Max execution time:", "Upload max size:" : "Upload max size:", - "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", "Extensions:" : "Extensions:", - "Unable to list extensions" : "Unable to list extensions", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "Show phpinfo", "FPM worker pool" : "FPM worker pool", "Pool name:" : "Pool name:", @@ -80,16 +118,60 @@ "Max listen queue:" : "Max listen queue:", "Max active processes:" : "Max active processes:", "Max children reached:" : "Max children reached:", - "Database" : "Database", - "Type:" : "Type:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "Resource usage", + "Shares" : "Shares", + "Users:" : "Users:", + "Groups:" : "Groups:", + "Links:" : "Links:", + "Emails:" : "Emails:", + "Federated sent:" : "Federated sent:", + "Federated received:" : "Federated received:", + "Talk conversations:" : "Talk conversations:", + "Runs" : "Runs", + "Average" : "Average", + "Longest" : "Longest", + "Warning" : "Warning", + "Critical" : "Critical", + "Operating System:" : "Operating System:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} threads)", + "Server time:" : "Server time:", + "Uptime:" : "Uptime:", + "Temperature" : "Temperature", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "CPU Usage:", + "Load average: {percentage} % ({load}) last minute" : "Load average: {percentage} % ({load}) last minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes", + "RAM Usage:" : "RAM Usage:", + "SWAP Usage:" : "SWAP Usage:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", + "SWAP info not available" : "SWAP info not available", + "Copied!" : "Copied!", + "Not supported!" : "Not supported!", + "Press ⌘-C to copy." : "Press ⌘-C to copy.", + "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", + "threads" : "threads", + "Memory:" : "Memory:", + "Files:" : "Files:", + "Storages:" : "Storages:", + "Free Space:" : "Free Space:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% of all users", + "Memory limit:" : "Memory limit:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", "External monitoring tool" : "External monitoring tool", "Use this end point to connect an external monitoring tool:" : "Use this end point to connect an external monitoring tool:", "Copy" : "Copy", - "Output in JSON" : "Output in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Skip apps section (including apps section will send an external request to the app store)", - "Skip server update" : "Skip server update", "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL.", - "Unknown Processor" : "Unknown Processor" + "%1$s (%2$d threads)" : "%1$s (%2$d threads)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/eo.js b/l10n/eo.js index fe50be23..fab2951d 100644 --- a/l10n/eo.js +++ b/l10n/eo.js @@ -1,32 +1,56 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informo pri la ĉefprocesoro ne disponeblas", - "Copied!" : "Kopiita!", - "Not supported!" : "Ne subtenite!", - "Press ⌘-C to copy." : "Premu ⌘-C por kopii.", - "Press Ctrl-C to copy." : "Premu Ctrl-C por kopii.", "System" : "Sistemo", + "Unknown" : "Nekonata", "Monitoring" : "Observado", "Monitoring app with useful server information" : "Observa aplikaĵo kun utilaj informoj pri la servilo", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Montras utilajn servilajn informojn, kiel ŝarĝon de la ĉefprocesoro, ĉefmemoran uzadon, diskan uzadon, nombrojn de uzantoj, k.t.p.", - "Temperature" : "Temperaturo", + "Active users" : "Aktivaj uzantoj", + "Background jobs" : "Fonaj taskoj", + "Never" : "Neniam", "Load" : "Ŝarĝo", - "Memory" : "Ĉefmemoro", - "Disk" : "Disko", + "CPU info not available" : "Informo pri la ĉefprocesoro ne disponeblas", + "Current usage" : "Nuna uzado", + "Load average" : "Ŝarĝa mezonombro", + "Database" : "Datumbazo", + "Type:" : "Tipo:", + "Version:" : "Versio:", "Size:" : "Grando:", - "Files:" : "Dosieroj:", - "Storages:" : "Konservejoj:", - "Free Space:" : "Libera spaco:", + "Used" : "Uzitaj", + "Available" : "Disponeble", + "Disk" : "Disko", + "When" : "Kiam", + "Details" : "Detaloj", + "Running" : "Kuras", + "Memory" : "Ĉefmemoro", + "Total" : "Sumo", + "Authentication" : "Aŭtentigo", "Network" : "Reto", - "Active users" : "Aktivaj uzantoj", - "Shares" : "Kunhavoj", - "Users:" : "Uzantoj:", + "Hostname" : "Gastigonomo", + "Gateway" : "Kluzo", + "DNS" : "DNS", + "Disabled" : "Malkapabligita", + "seconds" : "sekundoj", + "Yes" : "Jes", + "No" : "Ne", + "PHP extensions" : "PHP-moduloj", + "Extension" : "Dosiersufikso", "PHP" : "PHP", - "Version:" : "Versio:", + "Version" : "Versio", "Upload max size:" : "Maksimuma alŝutgrando:", - "Database" : "Datumbazo", - "Type:" : "Tipo:", + "CPU" : "Ĉefprocesoro", + "Shares" : "Kunhavoj", + "Users:" : "Uzantoj:", + "Warning" : "Averto", + "Temperature" : "Temperaturo", + "Copied!" : "Kopiita!", + "Not supported!" : "Ne subtenite!", + "Press ⌘-C to copy." : "Premu ⌘-C por kopii.", + "Press Ctrl-C to copy." : "Premu Ctrl-C por kopii.", + "Files:" : "Dosieroj:", + "Storages:" : "Konservejoj:", + "Free Space:" : "Libera spaco:", "External monitoring tool" : "Ekstera observa ilo", "Copy" : "Kopii" }, diff --git a/l10n/eo.json b/l10n/eo.json index c87dae6b..97a39f8a 100644 --- a/l10n/eo.json +++ b/l10n/eo.json @@ -1,30 +1,54 @@ { "translations": { - "CPU info not available" : "Informo pri la ĉefprocesoro ne disponeblas", - "Copied!" : "Kopiita!", - "Not supported!" : "Ne subtenite!", - "Press ⌘-C to copy." : "Premu ⌘-C por kopii.", - "Press Ctrl-C to copy." : "Premu Ctrl-C por kopii.", "System" : "Sistemo", + "Unknown" : "Nekonata", "Monitoring" : "Observado", "Monitoring app with useful server information" : "Observa aplikaĵo kun utilaj informoj pri la servilo", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Montras utilajn servilajn informojn, kiel ŝarĝon de la ĉefprocesoro, ĉefmemoran uzadon, diskan uzadon, nombrojn de uzantoj, k.t.p.", - "Temperature" : "Temperaturo", + "Active users" : "Aktivaj uzantoj", + "Background jobs" : "Fonaj taskoj", + "Never" : "Neniam", "Load" : "Ŝarĝo", - "Memory" : "Ĉefmemoro", - "Disk" : "Disko", + "CPU info not available" : "Informo pri la ĉefprocesoro ne disponeblas", + "Current usage" : "Nuna uzado", + "Load average" : "Ŝarĝa mezonombro", + "Database" : "Datumbazo", + "Type:" : "Tipo:", + "Version:" : "Versio:", "Size:" : "Grando:", - "Files:" : "Dosieroj:", - "Storages:" : "Konservejoj:", - "Free Space:" : "Libera spaco:", + "Used" : "Uzitaj", + "Available" : "Disponeble", + "Disk" : "Disko", + "When" : "Kiam", + "Details" : "Detaloj", + "Running" : "Kuras", + "Memory" : "Ĉefmemoro", + "Total" : "Sumo", + "Authentication" : "Aŭtentigo", "Network" : "Reto", - "Active users" : "Aktivaj uzantoj", - "Shares" : "Kunhavoj", - "Users:" : "Uzantoj:", + "Hostname" : "Gastigonomo", + "Gateway" : "Kluzo", + "DNS" : "DNS", + "Disabled" : "Malkapabligita", + "seconds" : "sekundoj", + "Yes" : "Jes", + "No" : "Ne", + "PHP extensions" : "PHP-moduloj", + "Extension" : "Dosiersufikso", "PHP" : "PHP", - "Version:" : "Versio:", + "Version" : "Versio", "Upload max size:" : "Maksimuma alŝutgrando:", - "Database" : "Datumbazo", - "Type:" : "Tipo:", + "CPU" : "Ĉefprocesoro", + "Shares" : "Kunhavoj", + "Users:" : "Uzantoj:", + "Warning" : "Averto", + "Temperature" : "Temperaturo", + "Copied!" : "Kopiita!", + "Not supported!" : "Ne subtenite!", + "Press ⌘-C to copy." : "Premu ⌘-C por kopii.", + "Press Ctrl-C to copy." : "Premu Ctrl-C por kopii.", + "Files:" : "Dosieroj:", + "Storages:" : "Konservejoj:", + "Free Space:" : "Libera spaco:", "External monitoring tool" : "Ekstera observa ilo", "Copy" : "Kopii" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/es.js b/l10n/es.js index 0fcd687a..bac5a3b6 100644 --- a/l10n/es.js +++ b/l10n/es.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Información de CPU no disponible", - "CPU Usage:" : "Uso de CPU:", - "Load average: {percentage} % ({load}) last minute" : "Carga promedio: {percentage}% ({load}) en el último minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) último minuto\n{last5MinutesPercentage}% ({last5Minutes}) últimos 5 minutos \n{last15MinutesPercentage}% ({last15Minutes}) últimos 15 minutos", - "RAM Usage:" : "Uso de RAM:", - "SWAP Usage:" : "Uso de SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes} / Uso actual: {memUsageBytes}", - "RAM info not available" : "Los datos de la RAM no están disponibles", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes} / Uso actual: {swapUsageBytes}", - "SWAP info not available" : "La información sobre el SWAP no está disponible", - "Copied!" : "¡Copiado!", - "Not supported!" : "No está soportado.", - "Press ⌘-C to copy." : "Pulsa ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Pulsa Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d días, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Monitorización", "Monitoring app with useful server information" : "App de monitorización con información útil sobre el servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil como la carga de la CPU, el uso de RAM y disco, el número de usuarios, etc.", - "Operating System:" : "Sistema Operativo:", - "CPU:" : "CPU:", - "threads" : "hilos", - "Memory:" : "Memoria", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Tiempo de actividad:", - "Temperature" : "Temperatura", + "{0}% of all users" : "{0}% de todos los usuarios ", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Last 24 Hours" : "Últimas 24 horas", + "Last 7 Days" : "Últimos 7 días", + "Last 30 Days" : "Últimos 30 días", + "System cron" : "Cron del sistema", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (no recomendado)", + "Background jobs" : "Procesos en segundo plano", + "Mode" : "Modo", + "Last run" : "Última ejecución", + "Never" : "Nunca", + "Latest runs" : "Últimas ejecuciones", + "No background job has run yet." : "Aún no se ha ejecutado ningún proceso en segundo plano.", + "Slowest jobs" : "Tareas más lentas", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Las estadísticas sobre tareas lentas no están disponibles aún. Se recopilan mediante un proceso en segundo plano y aparecen después de su siguiente ejecución.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Últimos fallos (último %n día)","Últimos fallos (últimos %n días)","Últimos fallos (últimos %n días)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["En el último %n día no ha fallado ningún proceso en segundo plano.","En los últimos %n días no ha fallado ningún proceso en segundo plano.","En los últimos %n días no ha fallado ningún proceso en segundo plano."], "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "Información de CPU no disponible", + "Current usage" : "Uso actual", + "Threads" : "Hilos", + "Load average" : "Carga media", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "{used} of {total} used" : "{used} de{total} usado", + "Used" : "Usado", + "Available" : "Disponible", "Disk" : "Disco", + "Files" : "Archivos", + "Storages" : "Almacenamientos", + "Free space" : "Espacio libre", "Mount:" : "Punto de montaje:", "Filesystem:" : "Sistema de archivos:", - "Size:" : "Tamaño:", "Available:" : "Disponible:", "Used:" : "Usado:", - "Files:" : "Archivos:", - "Storages:" : "Almacenamientos:", - "Free Space:" : "Espacio libre:", + "Class" : "Clase", + "Status" : "Estado", + "Started" : "Comenzado", + "Duration" : "Duración", + "Peak memory" : "Pico de memoria", + "Run ID" : "ID de ejecución", + "Server ID" : "ID del servidor", + "Process ID" : "ID del proceso", + "Details about {job} from {time}" : "Detalles sobre {job} desde {time}", + "Job" : "Trabajo", + "When" : "Cuando", + "Details" : "Detalles", + "Succeeded" : "Fue exitosa", + "Failed" : "Falló", + "Crashed" : "Fallados", + "Running" : "Corriendo", + "RAM usage" : "Uso de RAM", + "Swap usage" : "Uso de swap", + "Memory" : "Memoria", + "RAM info not available" : "Los datos de la RAM no están disponibles", + "Total" : "Total", + "Swap used" : "Uso de swap", + "External monitoring API" : "API de monitorización externa", + "Endpoint URL" : "URL del endpoint", + "Configuration" : "Configuración", + "Output in JSON" : "Salida en JSON", + "Skip apps section" : "Saltar sección de apps", + "Including the apps section sends an external request to the app store" : "Incluir la sección de aplicaciones envía una solicitud externa a la tienda de aplicaciones.", + "Skip server update" : "Omitir actualización del servidor", + "Authentication" : "Autenticación", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Este token se generó en tu navegador y no se almacena hasta que ejecutes el comando que aparece a continuación. Envía {header} en el encabezado de cada solicitud.", + "Command to store the token" : "Comando para almacenar el token", + "Request header" : "Cabecera de solicitud", "Network" : "Red", - "Hostname:" : "Nombre del servidor:", - "Gateway:" : "Puerta de enlace:", + "Hostname" : "Dirección del servidor", + "Gateway" : "Puerta de acceso", + "DNS" : "DNS", "Status:" : "Estado:", "Speed:" : "Velocidad:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", - "%s%% of all users" : "%s%% de todos los usuarios", - "Last 24 Hours" : "Últimas 24 horas", - "Last 7 Days" : "Últimos 7 días", - "Last 30 Days" : "Últimos 30 días", - "Shares" : "Recursos compartidos", - "Users:" : "Usuarios:", - "Groups:" : "Grupos:", - "Links:" : "Enlaces:", - "Emails:" : "Correos:", - "Federated sent:" : "Federaciones enviadas:", - "Federated received:" : "Federaciones recibidas:", - "Talk conversations:" : "Conversaciones de Talk:", + "OPcache is not loaded." : "OPcache está sin cargar.", + "OPcache is disabled." : "OPcache está deshabilitado.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud no tiene permiso para leer el estado de OPcache (\"opcache.restrict_api\").", + "OPcache status is unavailable." : "OPcache no está disponible.", + "{used} of {total}" : "{used} de {total}", + "Interned strings" : "Cadenas integradas", + "Keys" : "Llaves", + "{used} of {max}" : "{used} de {max}", + "Disabled" : "Deshabilitado", + "Enabled, {used} of {total} buffer used" : "Activado, {used} de {total} del búfer utilizado", + "OPcache" : "OPcache", + "Hit rate" : "Tasa de aciertos", + "Cached scripts" : "Scripts en caché", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Estas cifras corresponden al proceso PHP que gestiona esta solicitud. Los demás grupos de FPM o la CLI mantienen su propio OPcache.", + "Revalidate frequency:" : "Frecuencia de revalidación:", + "seconds" : "seconds", + "Validate timestamps:" : "Marcas de tiempo validadas:", + "Yes" : "Sí", + "No" : "No", + "OOM restarts:" : "Reinicios por OOM:", + "Last restart:" : "Último reinicio:", + "JIT:" : "JIT:", + "PHP extensions" : "Extensiones PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "No se pueden listar las extensiones", + "{count} loaded" : "{count} cargado", "PHP" : "PHP", - "Version:" : "Versión:", - "Memory limit:" : "Límite de memoria:", + "Version" : "Versión", + "Memory limit" : "Límite de memoria", "Max execution time:" : "Tiempo máx. de ejecución:", "Upload max size:" : "Tamaño máx. de subida:", - "OPcache Revalidate Frequency:" : "Frecuencia de Revalidación de OPcache:", + "Post max size:" : "Post max size:", + "SAPI:" : "SAPI:", "Extensions:" : "Extensiones:", - "Unable to list extensions" : "No se pueden listar las extensiones", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "Mostrar phpinfo", "FPM worker pool" : "Pool de workers FPM", "Pool name:" : "Nombre del pool:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "Cola de atención máx.:", "Max active processes:" : "Número máx. de procesos activos:", "Max children reached:" : "Número máx. de procesos heredados alcanzados:", - "Database" : "Base de datos", - "Type:" : "Tipo:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "Utilización de recursos", + "Shares" : "Recursos compartidos", + "Users:" : "Usuarios:", + "Groups:" : "Grupos:", + "Links:" : "Enlaces:", + "Emails:" : "Correos:", + "Federated sent:" : "Federaciones enviadas:", + "Federated received:" : "Federaciones recibidas:", + "Talk conversations:" : "Conversaciones de Talk:", + "Runs" : "Ejecuciones", + "Average" : "Media", + "Longest" : "Más largo", + "Warning" : "Advertencia", + "Critical" : "Críticos", + "Operating System:" : "Sistema Operativo:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} hilos)", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Tiempo de actividad:", + "Temperature" : "Temperatura", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Uso de CPU:", + "Load average: {percentage} % ({load}) last minute" : "Carga promedio: {percentage}% ({load}) en el último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) último minuto\n{last5MinutesPercentage}% ({last5Minutes}) últimos 5 minutos \n{last15MinutesPercentage}% ({last15Minutes}) últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes} / Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes} / Uso actual: {swapUsageBytes}", + "SWAP info not available" : "La información sobre el SWAP no está disponible", + "Copied!" : "¡Copiado!", + "Not supported!" : "No está soportado.", + "Press ⌘-C to copy." : "Pulsa ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pulsa Ctrl-C para copiar.", + "threads" : "hilos", + "Memory:" : "Memoria", + "Files:" : "Archivos:", + "Storages:" : "Almacenamientos:", + "Free Space:" : "Espacio libre:", + "Hostname:" : "Nombre del servidor:", + "Gateway:" : "Puerta de enlace:", + "%s%% of all users" : "%s%% de todos los usuarios", + "Memory limit:" : "Límite de memoria:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frecuencia de Revalidación de OPcache:", "External monitoring tool" : "Herramienta externa de monitorización", "Use this end point to connect an external monitoring tool:" : "Utilice este endpoint para conectar una herramienta de monitoreo externa.", "Copy" : "Copiar", - "Output in JSON" : "Salida en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Omitir la sección de aplicaciones (al incluirla, se enviarán solicitudes externas a la tienda de aplicaciones)", - "Skip server update" : "Omitir actualización del servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar un token de acceso, por favor, genere uno y luego establezca el mismo usando el siguiente comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Luego pase el token con el encabezado \"NC-Token\" cuando solicite la URL anterior.", - "Unknown Processor" : "Processor desconocido" + "%1$s (%2$d threads)" : "%1$s (%2$d hilos)", + "DNS:" : "DNS:" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es.json b/l10n/es.json index 234f92d4..549d74e6 100644 --- a/l10n/es.json +++ b/l10n/es.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "Información de CPU no disponible", - "CPU Usage:" : "Uso de CPU:", - "Load average: {percentage} % ({load}) last minute" : "Carga promedio: {percentage}% ({load}) en el último minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) último minuto\n{last5MinutesPercentage}% ({last5Minutes}) últimos 5 minutos \n{last15MinutesPercentage}% ({last15Minutes}) últimos 15 minutos", - "RAM Usage:" : "Uso de RAM:", - "SWAP Usage:" : "Uso de SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes} / Uso actual: {memUsageBytes}", - "RAM info not available" : "Los datos de la RAM no están disponibles", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes} / Uso actual: {swapUsageBytes}", - "SWAP info not available" : "La información sobre el SWAP no está disponible", - "Copied!" : "¡Copiado!", - "Not supported!" : "No está soportado.", - "Press ⌘-C to copy." : "Pulsa ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Pulsa Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d días, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Monitorización", "Monitoring app with useful server information" : "App de monitorización con información útil sobre el servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil como la carga de la CPU, el uso de RAM y disco, el número de usuarios, etc.", - "Operating System:" : "Sistema Operativo:", - "CPU:" : "CPU:", - "threads" : "hilos", - "Memory:" : "Memoria", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Tiempo de actividad:", - "Temperature" : "Temperatura", + "{0}% of all users" : "{0}% de todos los usuarios ", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Last 24 Hours" : "Últimas 24 horas", + "Last 7 Days" : "Últimos 7 días", + "Last 30 Days" : "Últimos 30 días", + "System cron" : "Cron del sistema", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (no recomendado)", + "Background jobs" : "Procesos en segundo plano", + "Mode" : "Modo", + "Last run" : "Última ejecución", + "Never" : "Nunca", + "Latest runs" : "Últimas ejecuciones", + "No background job has run yet." : "Aún no se ha ejecutado ningún proceso en segundo plano.", + "Slowest jobs" : "Tareas más lentas", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Las estadísticas sobre tareas lentas no están disponibles aún. Se recopilan mediante un proceso en segundo plano y aparecen después de su siguiente ejecución.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Últimos fallos (último %n día)","Últimos fallos (últimos %n días)","Últimos fallos (últimos %n días)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["En el último %n día no ha fallado ningún proceso en segundo plano.","En los últimos %n días no ha fallado ningún proceso en segundo plano.","En los últimos %n días no ha fallado ningún proceso en segundo plano."], "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "Información de CPU no disponible", + "Current usage" : "Uso actual", + "Threads" : "Hilos", + "Load average" : "Carga media", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "{used} of {total} used" : "{used} de{total} usado", + "Used" : "Usado", + "Available" : "Disponible", "Disk" : "Disco", + "Files" : "Archivos", + "Storages" : "Almacenamientos", + "Free space" : "Espacio libre", "Mount:" : "Punto de montaje:", "Filesystem:" : "Sistema de archivos:", - "Size:" : "Tamaño:", "Available:" : "Disponible:", "Used:" : "Usado:", - "Files:" : "Archivos:", - "Storages:" : "Almacenamientos:", - "Free Space:" : "Espacio libre:", + "Class" : "Clase", + "Status" : "Estado", + "Started" : "Comenzado", + "Duration" : "Duración", + "Peak memory" : "Pico de memoria", + "Run ID" : "ID de ejecución", + "Server ID" : "ID del servidor", + "Process ID" : "ID del proceso", + "Details about {job} from {time}" : "Detalles sobre {job} desde {time}", + "Job" : "Trabajo", + "When" : "Cuando", + "Details" : "Detalles", + "Succeeded" : "Fue exitosa", + "Failed" : "Falló", + "Crashed" : "Fallados", + "Running" : "Corriendo", + "RAM usage" : "Uso de RAM", + "Swap usage" : "Uso de swap", + "Memory" : "Memoria", + "RAM info not available" : "Los datos de la RAM no están disponibles", + "Total" : "Total", + "Swap used" : "Uso de swap", + "External monitoring API" : "API de monitorización externa", + "Endpoint URL" : "URL del endpoint", + "Configuration" : "Configuración", + "Output in JSON" : "Salida en JSON", + "Skip apps section" : "Saltar sección de apps", + "Including the apps section sends an external request to the app store" : "Incluir la sección de aplicaciones envía una solicitud externa a la tienda de aplicaciones.", + "Skip server update" : "Omitir actualización del servidor", + "Authentication" : "Autenticación", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Este token se generó en tu navegador y no se almacena hasta que ejecutes el comando que aparece a continuación. Envía {header} en el encabezado de cada solicitud.", + "Command to store the token" : "Comando para almacenar el token", + "Request header" : "Cabecera de solicitud", "Network" : "Red", - "Hostname:" : "Nombre del servidor:", - "Gateway:" : "Puerta de enlace:", + "Hostname" : "Dirección del servidor", + "Gateway" : "Puerta de acceso", + "DNS" : "DNS", "Status:" : "Estado:", "Speed:" : "Velocidad:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", - "%s%% of all users" : "%s%% de todos los usuarios", - "Last 24 Hours" : "Últimas 24 horas", - "Last 7 Days" : "Últimos 7 días", - "Last 30 Days" : "Últimos 30 días", - "Shares" : "Recursos compartidos", - "Users:" : "Usuarios:", - "Groups:" : "Grupos:", - "Links:" : "Enlaces:", - "Emails:" : "Correos:", - "Federated sent:" : "Federaciones enviadas:", - "Federated received:" : "Federaciones recibidas:", - "Talk conversations:" : "Conversaciones de Talk:", + "OPcache is not loaded." : "OPcache está sin cargar.", + "OPcache is disabled." : "OPcache está deshabilitado.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud no tiene permiso para leer el estado de OPcache (\"opcache.restrict_api\").", + "OPcache status is unavailable." : "OPcache no está disponible.", + "{used} of {total}" : "{used} de {total}", + "Interned strings" : "Cadenas integradas", + "Keys" : "Llaves", + "{used} of {max}" : "{used} de {max}", + "Disabled" : "Deshabilitado", + "Enabled, {used} of {total} buffer used" : "Activado, {used} de {total} del búfer utilizado", + "OPcache" : "OPcache", + "Hit rate" : "Tasa de aciertos", + "Cached scripts" : "Scripts en caché", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Estas cifras corresponden al proceso PHP que gestiona esta solicitud. Los demás grupos de FPM o la CLI mantienen su propio OPcache.", + "Revalidate frequency:" : "Frecuencia de revalidación:", + "seconds" : "seconds", + "Validate timestamps:" : "Marcas de tiempo validadas:", + "Yes" : "Sí", + "No" : "No", + "OOM restarts:" : "Reinicios por OOM:", + "Last restart:" : "Último reinicio:", + "JIT:" : "JIT:", + "PHP extensions" : "Extensiones PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "No se pueden listar las extensiones", + "{count} loaded" : "{count} cargado", "PHP" : "PHP", - "Version:" : "Versión:", - "Memory limit:" : "Límite de memoria:", + "Version" : "Versión", + "Memory limit" : "Límite de memoria", "Max execution time:" : "Tiempo máx. de ejecución:", "Upload max size:" : "Tamaño máx. de subida:", - "OPcache Revalidate Frequency:" : "Frecuencia de Revalidación de OPcache:", + "Post max size:" : "Post max size:", + "SAPI:" : "SAPI:", "Extensions:" : "Extensiones:", - "Unable to list extensions" : "No se pueden listar las extensiones", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "Mostrar phpinfo", "FPM worker pool" : "Pool de workers FPM", "Pool name:" : "Nombre del pool:", @@ -80,16 +137,60 @@ "Max listen queue:" : "Cola de atención máx.:", "Max active processes:" : "Número máx. de procesos activos:", "Max children reached:" : "Número máx. de procesos heredados alcanzados:", - "Database" : "Base de datos", - "Type:" : "Tipo:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "Utilización de recursos", + "Shares" : "Recursos compartidos", + "Users:" : "Usuarios:", + "Groups:" : "Grupos:", + "Links:" : "Enlaces:", + "Emails:" : "Correos:", + "Federated sent:" : "Federaciones enviadas:", + "Federated received:" : "Federaciones recibidas:", + "Talk conversations:" : "Conversaciones de Talk:", + "Runs" : "Ejecuciones", + "Average" : "Media", + "Longest" : "Más largo", + "Warning" : "Advertencia", + "Critical" : "Críticos", + "Operating System:" : "Sistema Operativo:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} hilos)", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Tiempo de actividad:", + "Temperature" : "Temperatura", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Uso de CPU:", + "Load average: {percentage} % ({load}) last minute" : "Carga promedio: {percentage}% ({load}) en el último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) último minuto\n{last5MinutesPercentage}% ({last5Minutes}) últimos 5 minutos \n{last15MinutesPercentage}% ({last15Minutes}) últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes} / Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes} / Uso actual: {swapUsageBytes}", + "SWAP info not available" : "La información sobre el SWAP no está disponible", + "Copied!" : "¡Copiado!", + "Not supported!" : "No está soportado.", + "Press ⌘-C to copy." : "Pulsa ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pulsa Ctrl-C para copiar.", + "threads" : "hilos", + "Memory:" : "Memoria", + "Files:" : "Archivos:", + "Storages:" : "Almacenamientos:", + "Free Space:" : "Espacio libre:", + "Hostname:" : "Nombre del servidor:", + "Gateway:" : "Puerta de enlace:", + "%s%% of all users" : "%s%% de todos los usuarios", + "Memory limit:" : "Límite de memoria:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frecuencia de Revalidación de OPcache:", "External monitoring tool" : "Herramienta externa de monitorización", "Use this end point to connect an external monitoring tool:" : "Utilice este endpoint para conectar una herramienta de monitoreo externa.", "Copy" : "Copiar", - "Output in JSON" : "Salida en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Omitir la sección de aplicaciones (al incluirla, se enviarán solicitudes externas a la tienda de aplicaciones)", - "Skip server update" : "Omitir actualización del servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar un token de acceso, por favor, genere uno y luego establezca el mismo usando el siguiente comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Luego pase el token con el encabezado \"NC-Token\" cuando solicite la URL anterior.", - "Unknown Processor" : "Processor desconocido" + "%1$s (%2$d threads)" : "%1$s (%2$d hilos)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_419.js b/l10n/es_419.js index 8ecd9fac..dd64fe01 100644 --- a/l10n/es_419.js +++ b/l10n/es_419.js @@ -1,23 +1,36 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar. ", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Yes" : "Si", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar. ", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_419.json b/l10n/es_419.json index 4742fda0..20d7a6c8 100644 --- a/l10n/es_419.json +++ b/l10n/es_419.json @@ -1,21 +1,34 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar. ", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Yes" : "Si", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar. ", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_AR.js b/l10n/es_AR.js index 43fd5982..2d1eb189 100644 --- a/l10n/es_AR.js +++ b/l10n/es_AR.js @@ -1,23 +1,42 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Credenciales!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Available" : "Disponible", + "Files" : "Archivo", + "Started" : "Iniciado", + "Details" : "Detalles", + "Failed" : "Error", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "Yes" : "Sí", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Credenciales!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de montoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_AR.json b/l10n/es_AR.json index d53cfe08..291f84ef 100644 --- a/l10n/es_AR.json +++ b/l10n/es_AR.json @@ -1,21 +1,40 @@ { "translations": { - "Copied!" : "¡Credenciales!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Available" : "Disponible", + "Files" : "Archivo", + "Started" : "Iniciado", + "Details" : "Detalles", + "Failed" : "Error", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "Yes" : "Sí", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Credenciales!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de montoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_CL.js b/l10n/es_CL.js index d8601eea..64407b7e 100644 --- a/l10n/es_CL.js +++ b/l10n/es_CL.js @@ -1,23 +1,39 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Failed" : "Falló", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "Yes" : "Si", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_CL.json b/l10n/es_CL.json index 77a89739..221e1041 100644 --- a/l10n/es_CL.json +++ b/l10n/es_CL.json @@ -1,21 +1,37 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Failed" : "Falló", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "Yes" : "Si", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_CO.js b/l10n/es_CO.js index d8601eea..46867c3a 100644 --- a/l10n/es_CO.js +++ b/l10n/es_CO.js @@ -1,23 +1,37 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_CO.json b/l10n/es_CO.json index 77a89739..f67717c9 100644 --- a/l10n/es_CO.json +++ b/l10n/es_CO.json @@ -1,21 +1,35 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_CR.js b/l10n/es_CR.js index d8601eea..ece30285 100644 --- a/l10n/es_CR.js +++ b/l10n/es_CR.js @@ -1,23 +1,36 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_CR.json b/l10n/es_CR.json index 77a89739..0404e5ff 100644 --- a/l10n/es_CR.json +++ b/l10n/es_CR.json @@ -1,21 +1,34 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_DO.js b/l10n/es_DO.js index d8601eea..ece30285 100644 --- a/l10n/es_DO.js +++ b/l10n/es_DO.js @@ -1,23 +1,36 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_DO.json b/l10n/es_DO.json index 77a89739..0404e5ff 100644 --- a/l10n/es_DO.json +++ b/l10n/es_DO.json @@ -1,21 +1,34 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_EC.js b/l10n/es_EC.js index fd5fcbaf..e4e29191 100644 --- a/l10n/es_EC.js +++ b/l10n/es_EC.js @@ -1,47 +1,65 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Información de la CPU no disponible", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", - "RAM info not available" : "Información de RAM no disponible", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", - "SWAP info not available" : "Información de SWAP no disponible", - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", "Monitoring app with useful server information" : "Aplicación de monitoreo con información útil del servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Proporciona información útil del servidor, como carga de CPU, uso de RAM, uso de disco, número de usuarios, etc.", - "Operating System:" : "Sistema operativo:", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Tiempo de actividad:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Webcron" : "Webcron", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "Información de la CPU no disponible", + "Current usage" : "Uso actual", + "Threads" : "Hilos", + "Load average" : "Carga promedio", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Available" : "Disponible", "Disk" : "Disco", + "Files" : "Archivo", "Mount:" : "Montaje:", "Filesystem:" : "Sistema de archivos:", - "Size:" : "Tamaño:", "Available:" : "Disponible:", "Used:" : "Usado:", - "Files:" : "Archivos:", - "Storages:" : "Almacenamientos:", - "Free Space:" : "Espacio libre:", + "Status" : "Estado", + "Started" : "Iniciado", + "Duration" : "Duración", + "Job" : "Trabajo", + "When" : "Cuando", + "Details" : "Detalles", + "Failed" : "Error", + "Running" : "Correr", + "Memory" : "Memoria", + "RAM info not available" : "Información de RAM no disponible", + "Total" : "Total", + "Authentication" : "Autenticación", "Network" : "Red", - "Hostname:" : "Nombre del host:", - "Gateway:" : "Gateway:", + "Hostname" : "Nombre del servidor", "Status:" : "Estado:", "Speed:" : "Velocidad:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", + "Keys" : "Llaves", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "No se pueden enumerar las extensiones", + "PHP" : "PHP", + "Version" : "Versión", + "Max execution time:" : "Tiempo máximo de ejecución:", + "Upload max size:" : "Tamaño máximo de carga:", + "Extensions:" : "Extensiones:", + "Show phpinfo" : "Mostrar phpinfo", "Shares" : "Elementos compartido", "Users:" : "Usuarios:", "Groups:" : "Grupos:", @@ -50,21 +68,31 @@ OC.L10N.register( "Federated sent:" : "Enviados federados:", "Federated received:" : "Recibidos federados:", "Talk conversations:" : "Conversaciones de Talk:", - "PHP" : "PHP", - "Version:" : "Versión:", + "Average" : "Promedio", + "Operating System:" : "Sistema operativo:", + "CPU:" : "CPU:", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Tiempo de actividad:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", + "SWAP info not available" : "Información de SWAP no disponible", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Memory:" : "Memoria:", + "Files:" : "Archivos:", + "Storages:" : "Almacenamientos:", + "Free Space:" : "Espacio libre:", + "Hostname:" : "Nombre del host:", + "Gateway:" : "Gateway:", "Memory limit:" : "Límite de memoria:", - "Max execution time:" : "Tiempo máximo de ejecución:", - "Upload max size:" : "Tamaño máximo de carga:", "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", - "Extensions:" : "Extensiones:", - "Unable to list extensions" : "No se pueden enumerar las extensiones", - "Show phpinfo" : "Mostrar phpinfo", - "Database" : "Base de datos", - "Type:" : "Tipo:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar", "To use an access token, please generate one then set it using the following command:" : "Para usar un token de acceso, por favor genera uno y luego configúralo usando el siguiente comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Luego pasa el token con la cabecera \"NC-Token\" al consultar la URL anterior.", - "Unknown Processor" : "Procesador desconocido" + "DNS:" : "DNS:" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_EC.json b/l10n/es_EC.json index 93850d94..be52f0c3 100644 --- a/l10n/es_EC.json +++ b/l10n/es_EC.json @@ -1,45 +1,63 @@ { "translations": { - "CPU info not available" : "Información de la CPU no disponible", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", - "RAM info not available" : "Información de RAM no disponible", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", - "SWAP info not available" : "Información de SWAP no disponible", - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", "Monitoring app with useful server information" : "Aplicación de monitoreo con información útil del servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Proporciona información útil del servidor, como carga de CPU, uso de RAM, uso de disco, número de usuarios, etc.", - "Operating System:" : "Sistema operativo:", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Tiempo de actividad:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Webcron" : "Webcron", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "Información de la CPU no disponible", + "Current usage" : "Uso actual", + "Threads" : "Hilos", + "Load average" : "Carga promedio", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Available" : "Disponible", "Disk" : "Disco", + "Files" : "Archivo", "Mount:" : "Montaje:", "Filesystem:" : "Sistema de archivos:", - "Size:" : "Tamaño:", "Available:" : "Disponible:", "Used:" : "Usado:", - "Files:" : "Archivos:", - "Storages:" : "Almacenamientos:", - "Free Space:" : "Espacio libre:", + "Status" : "Estado", + "Started" : "Iniciado", + "Duration" : "Duración", + "Job" : "Trabajo", + "When" : "Cuando", + "Details" : "Detalles", + "Failed" : "Error", + "Running" : "Correr", + "Memory" : "Memoria", + "RAM info not available" : "Información de RAM no disponible", + "Total" : "Total", + "Authentication" : "Autenticación", "Network" : "Red", - "Hostname:" : "Nombre del host:", - "Gateway:" : "Gateway:", + "Hostname" : "Nombre del servidor", "Status:" : "Estado:", "Speed:" : "Velocidad:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", + "Keys" : "Llaves", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "No se pueden enumerar las extensiones", + "PHP" : "PHP", + "Version" : "Versión", + "Max execution time:" : "Tiempo máximo de ejecución:", + "Upload max size:" : "Tamaño máximo de carga:", + "Extensions:" : "Extensiones:", + "Show phpinfo" : "Mostrar phpinfo", "Shares" : "Elementos compartido", "Users:" : "Usuarios:", "Groups:" : "Grupos:", @@ -48,21 +66,31 @@ "Federated sent:" : "Enviados federados:", "Federated received:" : "Recibidos federados:", "Talk conversations:" : "Conversaciones de Talk:", - "PHP" : "PHP", - "Version:" : "Versión:", + "Average" : "Promedio", + "Operating System:" : "Sistema operativo:", + "CPU:" : "CPU:", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Tiempo de actividad:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", + "SWAP info not available" : "Información de SWAP no disponible", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Memory:" : "Memoria:", + "Files:" : "Archivos:", + "Storages:" : "Almacenamientos:", + "Free Space:" : "Espacio libre:", + "Hostname:" : "Nombre del host:", + "Gateway:" : "Gateway:", "Memory limit:" : "Límite de memoria:", - "Max execution time:" : "Tiempo máximo de ejecución:", - "Upload max size:" : "Tamaño máximo de carga:", "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", - "Extensions:" : "Extensiones:", - "Unable to list extensions" : "No se pueden enumerar las extensiones", - "Show phpinfo" : "Mostrar phpinfo", - "Database" : "Base de datos", - "Type:" : "Tipo:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar", "To use an access token, please generate one then set it using the following command:" : "Para usar un token de acceso, por favor genera uno y luego configúralo usando el siguiente comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Luego pasa el token con la cabecera \"NC-Token\" al consultar la URL anterior.", - "Unknown Processor" : "Procesador desconocido" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_GT.js b/l10n/es_GT.js index d8601eea..0addbbe4 100644 --- a/l10n/es_GT.js +++ b/l10n/es_GT.js @@ -1,23 +1,38 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_GT.json b/l10n/es_GT.json index 77a89739..2014534a 100644 --- a/l10n/es_GT.json +++ b/l10n/es_GT.json @@ -1,21 +1,36 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_HN.js b/l10n/es_HN.js index d8601eea..0addbbe4 100644 --- a/l10n/es_HN.js +++ b/l10n/es_HN.js @@ -1,23 +1,38 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_HN.json b/l10n/es_HN.json index 77a89739..2014534a 100644 --- a/l10n/es_HN.json +++ b/l10n/es_HN.json @@ -1,21 +1,36 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_MX.js b/l10n/es_MX.js index d8076bbc..2866c3de 100644 --- a/l10n/es_MX.js +++ b/l10n/es_MX.js @@ -1,47 +1,63 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Información de CPU no disponible", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", - "RAM info not available" : "Información de RAM no disponible", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", - "SWAP info not available" : "Información de SWAP no disponible", - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", "Monitoring app with useful server information" : "App de monitoreo con información útil del servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil del servidor como carga del CPU, uso de RAM, uso de disco, número de usuarios, etc.", - "Operating System:" : "Sistema operativo:", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Tiempo de actividad:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Webcron" : "Webcron", + "Background jobs" : "Tareas en segundo plano", + "Mode" : "Modo", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "Información de CPU no disponible", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Available" : "Disponible", "Disk" : "Disco", + "Files" : "Archivo", "Mount:" : "Montaje:", "Filesystem:" : "Sistema de archivos:", - "Size:" : "Tamaño:", "Available:" : "Disponible:", "Used:" : "Usado:", - "Files:" : "Archivos:", - "Storages:" : "Almacenamiento:", - "Free Space:" : "Espacio Libre:", + "Started" : "Iniciado", + "Duration" : "Duración", + "Job" : "Trabajo", + "When" : "Cuando", + "Details" : "Detalles", + "Failed" : "Falló", + "Running" : "Correr", + "Memory" : "Memoria", + "RAM info not available" : "Información de RAM no disponible", + "Total" : "Total", + "Output in JSON" : "Salida en JSON", + "Skip server update" : "Omitir actualización del servidor", + "Authentication" : "Autenticación", "Network" : "Red", - "Hostname:" : "Nombre del host:", - "Gateway:" : "Puerta de enlace:", + "Hostname" : "Nombre del servidor", "Status:" : "Estado:", "Speed:" : "Velocidad:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "No se pueden enumerar las extensiones", + "PHP" : "PHP", + "Version" : "Versión", + "Max execution time:" : "Tiempo máximo de ejecución:", + "Upload max size:" : "Tamaño máximo de carga:", + "Extensions:" : "Extensiones:", + "Show phpinfo" : "Mostrar phpinfo", "Shares" : "Elementos compartido", "Users:" : "Usuarios:", "Groups:" : "Grupos:", @@ -50,25 +66,33 @@ OC.L10N.register( "Federated sent:" : "Federaciones enviadas:", "Federated received:" : "Federaciones recibidas:", "Talk conversations:" : "Conversaciones de Talk:", - "PHP" : "PHP", - "Version:" : "Versión:", + "Warning" : "Advertencia", + "Operating System:" : "Sistema operativo:", + "CPU:" : "CPU:", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Tiempo de actividad:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", + "SWAP info not available" : "Información de SWAP no disponible", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", + "Memory:" : "Memoria:", + "Files:" : "Archivos:", + "Storages:" : "Almacenamiento:", + "Free Space:" : "Espacio Libre:", + "Hostname:" : "Nombre del host:", + "Gateway:" : "Puerta de enlace:", "Memory limit:" : "Límite de memoria:", - "Max execution time:" : "Tiempo máximo de ejecución:", - "Upload max size:" : "Tamaño máximo de carga:", "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", - "Extensions:" : "Extensiones:", - "Unable to list extensions" : "No se pueden enumerar las extensiones", - "Show phpinfo" : "Mostrar phpinfo", - "Database" : "Base de datos", - "Type:" : "Tipo:", "External monitoring tool" : "Herramienta de monitoreo externa", "Use this end point to connect an external monitoring tool:" : "Utilice este endpoint para conectar una herramienta de monitoreo externa.", "Copy" : "Copiar", - "Output in JSON" : "Salida en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Omitir actualizaciones de la aplicación (incluir las actualizaciones de las aplicaciones enviará una solicitud externa al app store)", - "Skip server update" : "Omitir actualización del servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar un token de acceso, por favor genere uno y luego configúrelo usando el siguiente comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Luego pase el token con el encabezado \"NC-Token\" cuando solicite la URL anterior.", - "Unknown Processor" : "Procesador desconocido" + "DNS:" : "DNS:" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/es_MX.json b/l10n/es_MX.json index 8e956acf..5afc8698 100644 --- a/l10n/es_MX.json +++ b/l10n/es_MX.json @@ -1,45 +1,61 @@ { "translations": { - "CPU info not available" : "Información de CPU no disponible", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", - "RAM info not available" : "Información de RAM no disponible", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", - "SWAP info not available" : "Información de SWAP no disponible", - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", "Monitoring app with useful server information" : "App de monitoreo con información útil del servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provee información útil del servidor como carga del CPU, uso de RAM, uso de disco, número de usuarios, etc.", - "Operating System:" : "Sistema operativo:", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Hora del servidor:", - "Uptime:" : "Tiempo de actividad:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Webcron" : "Webcron", + "Background jobs" : "Tareas en segundo plano", + "Mode" : "Modo", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "Información de CPU no disponible", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Available" : "Disponible", "Disk" : "Disco", + "Files" : "Archivo", "Mount:" : "Montaje:", "Filesystem:" : "Sistema de archivos:", - "Size:" : "Tamaño:", "Available:" : "Disponible:", "Used:" : "Usado:", - "Files:" : "Archivos:", - "Storages:" : "Almacenamiento:", - "Free Space:" : "Espacio Libre:", + "Started" : "Iniciado", + "Duration" : "Duración", + "Job" : "Trabajo", + "When" : "Cuando", + "Details" : "Detalles", + "Failed" : "Falló", + "Running" : "Correr", + "Memory" : "Memoria", + "RAM info not available" : "Información de RAM no disponible", + "Total" : "Total", + "Output in JSON" : "Salida en JSON", + "Skip server update" : "Omitir actualización del servidor", + "Authentication" : "Autenticación", "Network" : "Red", - "Hostname:" : "Nombre del host:", - "Gateway:" : "Puerta de enlace:", + "Hostname" : "Nombre del servidor", "Status:" : "Estado:", "Speed:" : "Velocidad:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "No se pueden enumerar las extensiones", + "PHP" : "PHP", + "Version" : "Versión", + "Max execution time:" : "Tiempo máximo de ejecución:", + "Upload max size:" : "Tamaño máximo de carga:", + "Extensions:" : "Extensiones:", + "Show phpinfo" : "Mostrar phpinfo", "Shares" : "Elementos compartido", "Users:" : "Usuarios:", "Groups:" : "Grupos:", @@ -48,25 +64,33 @@ "Federated sent:" : "Federaciones enviadas:", "Federated received:" : "Federaciones recibidas:", "Talk conversations:" : "Conversaciones de Talk:", - "PHP" : "PHP", - "Version:" : "Versión:", + "Warning" : "Advertencia", + "Operating System:" : "Sistema operativo:", + "CPU:" : "CPU:", + "Server time:" : "Hora del servidor:", + "Uptime:" : "Tiempo de actividad:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", + "SWAP info not available" : "Información de SWAP no disponible", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presione Ctrl-C para copiar.", + "Memory:" : "Memoria:", + "Files:" : "Archivos:", + "Storages:" : "Almacenamiento:", + "Free Space:" : "Espacio Libre:", + "Hostname:" : "Nombre del host:", + "Gateway:" : "Puerta de enlace:", "Memory limit:" : "Límite de memoria:", - "Max execution time:" : "Tiempo máximo de ejecución:", - "Upload max size:" : "Tamaño máximo de carga:", "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", - "Extensions:" : "Extensiones:", - "Unable to list extensions" : "No se pueden enumerar las extensiones", - "Show phpinfo" : "Mostrar phpinfo", - "Database" : "Base de datos", - "Type:" : "Tipo:", "External monitoring tool" : "Herramienta de monitoreo externa", "Use this end point to connect an external monitoring tool:" : "Utilice este endpoint para conectar una herramienta de monitoreo externa.", "Copy" : "Copiar", - "Output in JSON" : "Salida en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Omitir actualizaciones de la aplicación (incluir las actualizaciones de las aplicaciones enviará una solicitud externa al app store)", - "Skip server update" : "Omitir actualización del servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar un token de acceso, por favor genere uno y luego configúrelo usando el siguiente comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Luego pase el token con el encabezado \"NC-Token\" cuando solicite la URL anterior.", - "Unknown Processor" : "Procesador desconocido" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/es_NI.js b/l10n/es_NI.js index d8601eea..60a174f0 100644 --- a/l10n/es_NI.js +++ b/l10n/es_NI.js @@ -1,23 +1,36 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_NI.json b/l10n/es_NI.json index 77a89739..efa4f6ac 100644 --- a/l10n/es_NI.json +++ b/l10n/es_NI.json @@ -1,21 +1,34 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PA.js b/l10n/es_PA.js index d8601eea..65216ea3 100644 --- a/l10n/es_PA.js +++ b/l10n/es_PA.js @@ -1,23 +1,37 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_PA.json b/l10n/es_PA.json index 77a89739..c446a35b 100644 --- a/l10n/es_PA.json +++ b/l10n/es_PA.json @@ -1,21 +1,35 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PE.js b/l10n/es_PE.js index d8601eea..1b70bbaf 100644 --- a/l10n/es_PE.js +++ b/l10n/es_PE.js @@ -1,23 +1,38 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_PE.json b/l10n/es_PE.json index 77a89739..3659c754 100644 --- a/l10n/es_PE.json +++ b/l10n/es_PE.json @@ -1,21 +1,36 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "seconds" : "segundos", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PR.js b/l10n/es_PR.js index d8601eea..60a174f0 100644 --- a/l10n/es_PR.js +++ b/l10n/es_PR.js @@ -1,23 +1,36 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_PR.json b/l10n/es_PR.json index 77a89739..efa4f6ac 100644 --- a/l10n/es_PR.json +++ b/l10n/es_PR.json @@ -1,21 +1,34 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_PY.js b/l10n/es_PY.js index d8601eea..3c1f7a57 100644 --- a/l10n/es_PY.js +++ b/l10n/es_PY.js @@ -1,23 +1,35 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_PY.json b/l10n/es_PY.json index 77a89739..53682fbe 100644 --- a/l10n/es_PY.json +++ b/l10n/es_PY.json @@ -1,21 +1,33 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_SV.js b/l10n/es_SV.js index 6bbaefa8..e7be1103 100644 --- a/l10n/es_SV.js +++ b/l10n/es_SV.js @@ -1,22 +1,36 @@ OC.L10N.register( "serverinfo", { - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_SV.json b/l10n/es_SV.json index 73ddbce6..e72c3aed 100644 --- a/l10n/es_SV.json +++ b/l10n/es_SV.json @@ -1,20 +1,34 @@ { "translations": { - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Temperature" : "Temperatura", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/es_UY.js b/l10n/es_UY.js index d8601eea..57879145 100644 --- a/l10n/es_UY.js +++ b/l10n/es_UY.js @@ -1,23 +1,37 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" }, diff --git a/l10n/es_UY.json b/l10n/es_UY.json index 77a89739..4c1d82a2 100644 --- a/l10n/es_UY.json +++ b/l10n/es_UY.json @@ -1,21 +1,35 @@ { "translations": { - "Copied!" : "¡Copiado!", - "Not supported!" : "¡No soportado!", - "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconocido", "Monitoring" : "Monitoreo", - "Temperature" : "Temperatura", - "Size:" : "Tamaño:", - "Files:" : "Archivos:", "Active users" : "Usuarios activos", - "Shares" : "Elementos compartido", - "Users:" : "Usuarios:", - "PHP" : "PHP", - "Version:" : "Versión:", - "Upload max size:" : "Tamaño máximo de carga:", + "Background jobs" : "Trabajos en segundo plano", + "Never" : "Nunca", + "Current usage" : "Uso actual", + "Load average" : "Carga promedio", "Database" : "Base de datos", "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Files" : "Archivo", + "Details" : "Detalles", + "Total" : "Total", + "Authentication" : "Autenticación", + "Hostname" : "Nombre del servidor", + "Disabled" : "Deshabilitado", + "PHP extensions" : "Extensiones de PHP", + "PHP" : "PHP", + "Version" : "Versión", + "Upload max size:" : "Tamaño máximo de carga:", + "Shares" : "Elementos compartido", + "Users:" : "Usuarios:", + "Warning" : "Advertencia", + "Temperature" : "Temperatura", + "Copied!" : "¡Copiado!", + "Not supported!" : "¡No soportado!", + "Press ⌘-C to copy." : "Presiona ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Presiona Ctrl-C para copiar.", + "Files:" : "Archivos:", "External monitoring tool" : "Herramienta de monitoreo externa", "Copy" : "Copiar" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" diff --git a/l10n/et_EE.js b/l10n/et_EE.js index f9f27fdc..3e76a7f4 100644 --- a/l10n/et_EE.js +++ b/l10n/et_EE.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Protsessori info pole saadaval", - "CPU Usage:" : "Protsessori koormus:", - "Load average: {percentage} % ({load}) last minute" : "Keskmine koormus: {percentage} % ({load}) viimase minuti kestel", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) viimane minut\n{last5MinutesPercentage} % ({last5Minutes}) viimased 5 minutit\n{last15MinutesPercentage} % ({last15Minutes}) viimased 15 minutit", - "RAM Usage:" : "Mälukasutus:", - "SWAP Usage:" : "Saaleala kasutus:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Mälu: Kokku: {memTotalBytes}/Kasutusel: {memUsageBytes}", - "RAM info not available" : "Vahemälu info pole saadaval", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Saaleala: Kokku: {swapTotalBytes}/Kasutusel: {swapUsageBytes}", - "SWAP info not available" : "Saaleala info pole saadaval", - "Copied!" : "Kopeeritud!", - "Not supported!" : "Pole toetatud!", - "Press ⌘-C to copy." : "Kopeerimiseks vajuta ⌘+C.", - "Press Ctrl-C to copy." : "Kopeerimiseks vajuta Ctrl+C.", "System" : "Süsteem", + "Unknown" : "Teadmata", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d päeva, %2$d tundi, %3$d minutit, %4$d sekundit", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d tundi, %2$d minutit, %3$d sekundit", "Monitoring" : "Monitooring", - "Monitoring app with useful server information" : "Monitoorimisrakendus kasuliku infoga serveri kohta", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näitab kasulikku infot serveri kohta, näiteks protsessori koormus, mälukasutus, kettaruum, kasutajate arv jne.", - "Operating System:" : "Operatsioonisüsteem:", - "CPU:" : "Protsessor:", - "threads" : "lõimesid", - "Memory:" : "Vahemälu:", - "Server time:" : "Serveri aeg:", - "Uptime:" : "Aktiivaeg:", - "Temperature" : "Temperatuur", + "Monitoring app with useful server information" : "Monitoorimisrakendus kasuliku teabega serveri kohta", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näitab kasulikku teavet serveri kohta, näiteks protsessori koormust, mälukasutust, kettaruumi, kasutajate arvu jne.", + "{0}% of all users" : "{0}% kõikidest kasutajatest", + "Active users" : "Aktiivseid kasutajaid", + "Last hour" : "Viimase tunni jooksul", + "Last 24 Hours" : "Viimase 24 tunni jooksul", + "Last 7 Days" : "Viimase 7 päeva jooksul", + "Last 30 Days" : "Viimase 30 päeva jooksul", + "System cron" : "Süsteemi cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (pole soovitatud)", + "Background jobs" : "Taustal toimivad haldustoimingud", + "Mode" : "Režiim", + "Last run" : "Viimane käivitus", + "Never" : "Mitte kunagi", + "Latest runs" : "Viimased käivitused", + "No background job has run yet." : "Ükski taustal töötav ülesanne pole veel käivitunud.", + "Slowest jobs" : "Kõige aeglasemad taustal töötavad ülesanded", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Aeglaste taustatööde statistika pole veel saadaval. Seda teavet kogub eraldu taustaprotsess ning andmed on nähtavad pärast järgmist käivitust.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Hiljutised ebaõnnestumised (viimase %n päeva jooksul)","Hiljutised ebaõnnestumised (viimase %n päeva jooksul)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Viimase %n päeva jooksul ei ebaõnnestunud ükski taustaülesanne.","Viimase %n päeva jooksul ei ebaõnnestunud ükski taustaülesanne."], "Load" : "Koormus", - "Memory" : "Vahemälu", + "CPU info not available" : "Protsessori teave pole saadaval", + "Current usage" : "Praegune kasutus", + "Threads" : "Lõimesid", + "Load average" : "Keskmine koormus", + "Database" : "Andmebaas", + "Type:" : "Tüüp:", + "Version:" : "Versioon:", + "Size:" : "Suurus:", + "{used} of {total} used" : "Kasutatud on {used} / {total} ", + "Used" : "Kasutatud", + "Available" : "Saadaval", "Disk" : "Ketas", + "Files" : "Failid", + "Storages" : "Andmeruumid", + "Free space" : "Vaba ruum", "Mount:" : "Haakepunkt:", "Filesystem:" : "Failisüsteem:", - "Size:" : "Suurus:", "Available:" : "Saadaval:", "Used:" : "Kasutusel:", - "Files:" : "Faile:", - "Storages:" : "Andmeruumid:", - "Free Space:" : "Vaba ruum:", + "Class" : "Klass", + "Status" : "Olek", + "Started" : "Käivitatud", + "Duration" : "Kestus", + "Peak memory" : "Suurim mälukasutus", + "Run ID" : "Käivitatud taustaülesande tunnus", + "Server ID" : "Serveri tunnus", + "Process ID" : "Protsessi tunnus", + "Details about {job} from {time}" : "Lisateave „{job} - {time}“ taustaülesande kohta", + "Job" : "Taustaülesanne", + "When" : "Millal", + "Details" : "Üksikasjad", + "Succeeded" : "Õnnestus", + "Failed" : "Ebaõnnestus", + "Crashed" : "Kokku jooksnud", + "Running" : "Töös", + "RAM usage" : "Mälukasutus", + "Swap usage" : "Saaleala kasutus", + "Memory" : "Mälu", + "RAM info not available" : "Vahemälu info pole saadaval", + "Total" : "Kokku", + "Swap used" : "Kasutatud saaleala", + "External monitoring API" : "Välise monitoorimistarviku API", + "Endpoint URL" : "Otspunkti võrguaadress", + "Configuration" : "Seadistused", + "Output in JSON" : "Väljund json-vormingus", + "Skip apps section" : "Jäta rakenduste alajaotus vahele", + "Including the apps section sends an external request to the app store" : "Rakenduste alajaotuse kaasamisel tehakse väline päring rakendustepoodi", + "Skip server update" : "Jäta serveri uuendus vahele", + "Authentication" : "Autentimine", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "See tunnusluba on loodud sinu veebibrauseri poolt ja seda ei salvestata enne, kui käivitad alljärgneva käsu. Lisad ta iga päringu puhul „{header}“ päisekirjele.", + "Command to store the token" : "Käsk tunnusloa salvestamiseks", + "Request header" : "Päringupäis", "Network" : "Võrk", - "Hostname:" : "Hostinimi:", - "Gateway:" : "Võrgulüüs:", - "Status:" : "Seisund:", + "Hostname" : "Hostinimi", + "Gateway" : "Lüüs", + "DNS" : "Nimelahendus", + "Status:" : "Olek:", "Speed:" : "Kiirus:", "Duplex:" : "Dupleks:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktiivseid kasutajaid", - "Last hour" : "Viimase tunni jooksul", - "%s%% of all users" : "%s%% kõikidest kasutajatest", - "Last 24 Hours" : "Viimase 24 tunni jooksul", - "Last 7 Days" : "Viimase 7 päeva jooksul", - "Last 30 Days" : "Viimase 30 päeva jooksul", - "Shares" : "Jaoskaustad", - "Users:" : "Kasutajaid:", - "Groups:" : "Gruppe:", - "Links:" : "Linke:", - "Emails:" : "E-kirju:", - "Federated sent:" : "Liitpilve saadetud:", - "Federated received:" : "Liitpilvest vastu võetud:", - "Talk conversations:" : "Vestlusi suhtlusrakenduses:", + "OPcache is not loaded." : "OPcache'i lisamoodul pole laaditud.", + "OPcache is disabled." : "OPcache'i lisamoodul on keelatud.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloudil pole õigust tuvastada OPcache'i lisamooduli olekut („opcache.restrict_api“).", + "OPcache status is unavailable." : "OPcache'i lisamooduli olek pole teada!", + "{used} of {total}" : "{used} / {total}", + "Interned strings" : "Jagatud sõned (interned strings)", + "Keys" : "Võtmed", + "{used} of {max}" : "{used} / {max}", + "Disabled" : "Väljalülitatud", + "Enabled, {used} of {total} buffer used" : "Sisselülitatud - puhvrist on kasutatud {used} / {total}", + "OPcache" : "OPcache", + "Hit rate" : "Päringute määr", + "Cached scripts" : "Puhverdatud skriptid", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Need numbrid kirjeldavad seda päringut töötlevat PHP-protsessi. Teised FPM-i kogumid või käsurida kasutavad oma OPcache’i.", + "Revalidate frequency:" : "Kordusvalideerimise sagedus:", + "seconds" : "sekundit", + "Validate timestamps:" : "Ajatemplite kontroll:", + "Yes" : "Jah", + "No" : "Ei", + "OOM restarts:" : "OOM-i juhitud uuestikäivitusi:", + "Last restart:" : "Viimane uuestikäivitus:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP laiendusmoodulid", + "Extension" : "Laiend", + "Unable to list extensions" : "Laienduste loetlemine ei õnnestunud", + "{count} loaded" : "Laaditud on {count} lisamoodulit", "PHP" : "PHP", - "Version:" : "Versioon:", - "Memory limit:" : "Mälukasutuse ülempiir:", + "Version" : "Versioon", + "Memory limit" : "Mälukasutuse ülempiir", "Max execution time:" : "Maksimaalne täitmisaeg:", "Upload max size:" : "Maksimaalne üleslaadimissuurus:", - "OPcache Revalidate Frequency:" : "OPcache'i kordusvalideerimise sagedus:", + "Post max size:" : "Post-päringu suurim lubatud suurus:", + "SAPI:" : "SAPI:", "Extensions:" : "Laiendused:", - "Unable to list extensions" : "Laienduste loetlemine ebaõnnestus", + "PHP Info:" : "PHP teave:", "Show phpinfo" : "Näita phpinfo väljundit", "FPM worker pool" : "FPM-i ühenduste fond", "Pool name:" : "Ühenduste fondi nimi:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "Maksimaalne kuulatavate päringute järjekord:", "Max active processes:" : "Suurim aktiivsete protsesside arv:", "Max children reached:" : "Maksimaalselt järglasprotsesse:", - "Database" : "Andmebaas", - "Type:" : "Tüüp:", + "CPU" : "Protsessor", + "Swap" : "Saaleala", + "Resource usage" : "Ressursikasutus", + "Shares" : "Jagamised", + "Users:" : "Kasutajaid:", + "Groups:" : "Gruppe:", + "Links:" : "Linke:", + "Emails:" : "E-kirju:", + "Federated sent:" : "Liitpilve saadetud:", + "Federated received:" : "Liitpilvest vastu võetud:", + "Talk conversations:" : "Vestlusi suhtlusrakenduses:", + "Runs" : "Käivitusi", + "Average" : "Keskmine", + "Longest" : "Kauakestvaim", + "Warning" : "Hoiatus (warning)", + "Critical" : "Kriitiline", + "Operating System:" : "Operatsioonisüsteem:", + "CPU:" : "Protsessor:", + "{name} ({threads} threads)" : "{name} ({threads} lõime)", + "Server time:" : "Serveri aeg:", + "Uptime:" : "Aeg viimasest serveri käivitusest:", + "Temperature" : "Temperatuur", + "{duration} ms" : "{duration} msek", + "{duration} s" : "{duration} sek", + "CPU Usage:" : "Protsessori koormus:", + "Load average: {percentage} % ({load}) last minute" : "Keskmine koormus: {percentage} % ({load}) viimase minuti kestel", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) viimane minut\n{last5MinutesPercentage} % ({last5Minutes}) viimased 5 minutit\n{last15MinutesPercentage} % ({last15Minutes}) viimased 15 minutit", + "RAM Usage:" : "Mälukasutus:", + "SWAP Usage:" : "Saaleala kasutus:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Mälu: Kokku: {memTotalBytes}/Kasutusel: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Saaleala: Kokku: {swapTotalBytes}/Kasutusel: {swapUsageBytes}", + "SWAP info not available" : "Saaleala teave pole saadaval", + "Copied!" : "Kopeeritud!", + "Not supported!" : "Pole toetatud!", + "Press ⌘-C to copy." : "Kopeerimiseks vajuta ⌘+C.", + "Press Ctrl-C to copy." : "Kopeerimiseks vajuta Ctrl+C.", + "threads" : "lõime", + "Memory:" : "Mälu:", + "Files:" : "Faile:", + "Storages:" : "Andmeruumid:", + "Free Space:" : "Vaba ruum:", + "Hostname:" : "Hostinimi:", + "Gateway:" : "Võrgulüüs:", + "%s%% of all users" : "%s%% kõikidest kasutajatest", + "Memory limit:" : "Mälukasutuse ülempiir:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache'i kordusvalideerimise sagedus:", "External monitoring tool" : "Väline monitoorimistarvik", "Use this end point to connect an external monitoring tool:" : "Kasuta seda otspunkti välise monitoorimistarviku ühenduse jaoks:", "Copy" : "Kopeeri", - "Output in JSON" : "Väljund json-vormingus", "Skip apps section (including apps section will send an external request to the app store)" : "Jäta rakenduste valik vahele (sh sellega seotud päring rakendustepoodi)", - "Skip server update" : "Jäta serveri uuendus vahele", - "To use an access token, please generate one then set it using the following command:" : "Ligipääsutunnuse kasutamiseks genereeri see ja seadista alljärgneva käsu abil:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Seejärel saada tunnus ülaloleva URL-i pärimisel \"NC-Token\" päisega.", - "Unknown Processor" : "Tundmatu protsessor" + "To use an access token, please generate one then set it using the following command:" : "Ligipääsuks vajaliku tunnusloa kasutamiseks genereeri see ja seadista alljärgneva käsu abil:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Seejärel kontrolli, et sinu kasutatav klientrakendus oskaks selle tunnusloa lisada ülaloleva võrguaadressi päringute „NC-Token“ päisesse.", + "%1$s (%2$d threads)" : "%1$s (%2$d lõime)", + "DNS:" : "Nimeserver:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/et_EE.json b/l10n/et_EE.json index 36b6ac77..c6e5227d 100644 --- a/l10n/et_EE.json +++ b/l10n/et_EE.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "Protsessori info pole saadaval", - "CPU Usage:" : "Protsessori koormus:", - "Load average: {percentage} % ({load}) last minute" : "Keskmine koormus: {percentage} % ({load}) viimase minuti kestel", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) viimane minut\n{last5MinutesPercentage} % ({last5Minutes}) viimased 5 minutit\n{last15MinutesPercentage} % ({last15Minutes}) viimased 15 minutit", - "RAM Usage:" : "Mälukasutus:", - "SWAP Usage:" : "Saaleala kasutus:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Mälu: Kokku: {memTotalBytes}/Kasutusel: {memUsageBytes}", - "RAM info not available" : "Vahemälu info pole saadaval", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Saaleala: Kokku: {swapTotalBytes}/Kasutusel: {swapUsageBytes}", - "SWAP info not available" : "Saaleala info pole saadaval", - "Copied!" : "Kopeeritud!", - "Not supported!" : "Pole toetatud!", - "Press ⌘-C to copy." : "Kopeerimiseks vajuta ⌘+C.", - "Press Ctrl-C to copy." : "Kopeerimiseks vajuta Ctrl+C.", "System" : "Süsteem", + "Unknown" : "Teadmata", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d päeva, %2$d tundi, %3$d minutit, %4$d sekundit", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d tundi, %2$d minutit, %3$d sekundit", "Monitoring" : "Monitooring", - "Monitoring app with useful server information" : "Monitoorimisrakendus kasuliku infoga serveri kohta", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näitab kasulikku infot serveri kohta, näiteks protsessori koormus, mälukasutus, kettaruum, kasutajate arv jne.", - "Operating System:" : "Operatsioonisüsteem:", - "CPU:" : "Protsessor:", - "threads" : "lõimesid", - "Memory:" : "Vahemälu:", - "Server time:" : "Serveri aeg:", - "Uptime:" : "Aktiivaeg:", - "Temperature" : "Temperatuur", + "Monitoring app with useful server information" : "Monitoorimisrakendus kasuliku teabega serveri kohta", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näitab kasulikku teavet serveri kohta, näiteks protsessori koormust, mälukasutust, kettaruumi, kasutajate arvu jne.", + "{0}% of all users" : "{0}% kõikidest kasutajatest", + "Active users" : "Aktiivseid kasutajaid", + "Last hour" : "Viimase tunni jooksul", + "Last 24 Hours" : "Viimase 24 tunni jooksul", + "Last 7 Days" : "Viimase 7 päeva jooksul", + "Last 30 Days" : "Viimase 30 päeva jooksul", + "System cron" : "Süsteemi cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (pole soovitatud)", + "Background jobs" : "Taustal toimivad haldustoimingud", + "Mode" : "Režiim", + "Last run" : "Viimane käivitus", + "Never" : "Mitte kunagi", + "Latest runs" : "Viimased käivitused", + "No background job has run yet." : "Ükski taustal töötav ülesanne pole veel käivitunud.", + "Slowest jobs" : "Kõige aeglasemad taustal töötavad ülesanded", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Aeglaste taustatööde statistika pole veel saadaval. Seda teavet kogub eraldu taustaprotsess ning andmed on nähtavad pärast järgmist käivitust.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Hiljutised ebaõnnestumised (viimase %n päeva jooksul)","Hiljutised ebaõnnestumised (viimase %n päeva jooksul)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Viimase %n päeva jooksul ei ebaõnnestunud ükski taustaülesanne.","Viimase %n päeva jooksul ei ebaõnnestunud ükski taustaülesanne."], "Load" : "Koormus", - "Memory" : "Vahemälu", + "CPU info not available" : "Protsessori teave pole saadaval", + "Current usage" : "Praegune kasutus", + "Threads" : "Lõimesid", + "Load average" : "Keskmine koormus", + "Database" : "Andmebaas", + "Type:" : "Tüüp:", + "Version:" : "Versioon:", + "Size:" : "Suurus:", + "{used} of {total} used" : "Kasutatud on {used} / {total} ", + "Used" : "Kasutatud", + "Available" : "Saadaval", "Disk" : "Ketas", + "Files" : "Failid", + "Storages" : "Andmeruumid", + "Free space" : "Vaba ruum", "Mount:" : "Haakepunkt:", "Filesystem:" : "Failisüsteem:", - "Size:" : "Suurus:", "Available:" : "Saadaval:", "Used:" : "Kasutusel:", - "Files:" : "Faile:", - "Storages:" : "Andmeruumid:", - "Free Space:" : "Vaba ruum:", + "Class" : "Klass", + "Status" : "Olek", + "Started" : "Käivitatud", + "Duration" : "Kestus", + "Peak memory" : "Suurim mälukasutus", + "Run ID" : "Käivitatud taustaülesande tunnus", + "Server ID" : "Serveri tunnus", + "Process ID" : "Protsessi tunnus", + "Details about {job} from {time}" : "Lisateave „{job} - {time}“ taustaülesande kohta", + "Job" : "Taustaülesanne", + "When" : "Millal", + "Details" : "Üksikasjad", + "Succeeded" : "Õnnestus", + "Failed" : "Ebaõnnestus", + "Crashed" : "Kokku jooksnud", + "Running" : "Töös", + "RAM usage" : "Mälukasutus", + "Swap usage" : "Saaleala kasutus", + "Memory" : "Mälu", + "RAM info not available" : "Vahemälu info pole saadaval", + "Total" : "Kokku", + "Swap used" : "Kasutatud saaleala", + "External monitoring API" : "Välise monitoorimistarviku API", + "Endpoint URL" : "Otspunkti võrguaadress", + "Configuration" : "Seadistused", + "Output in JSON" : "Väljund json-vormingus", + "Skip apps section" : "Jäta rakenduste alajaotus vahele", + "Including the apps section sends an external request to the app store" : "Rakenduste alajaotuse kaasamisel tehakse väline päring rakendustepoodi", + "Skip server update" : "Jäta serveri uuendus vahele", + "Authentication" : "Autentimine", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "See tunnusluba on loodud sinu veebibrauseri poolt ja seda ei salvestata enne, kui käivitad alljärgneva käsu. Lisad ta iga päringu puhul „{header}“ päisekirjele.", + "Command to store the token" : "Käsk tunnusloa salvestamiseks", + "Request header" : "Päringupäis", "Network" : "Võrk", - "Hostname:" : "Hostinimi:", - "Gateway:" : "Võrgulüüs:", - "Status:" : "Seisund:", + "Hostname" : "Hostinimi", + "Gateway" : "Lüüs", + "DNS" : "Nimelahendus", + "Status:" : "Olek:", "Speed:" : "Kiirus:", "Duplex:" : "Dupleks:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktiivseid kasutajaid", - "Last hour" : "Viimase tunni jooksul", - "%s%% of all users" : "%s%% kõikidest kasutajatest", - "Last 24 Hours" : "Viimase 24 tunni jooksul", - "Last 7 Days" : "Viimase 7 päeva jooksul", - "Last 30 Days" : "Viimase 30 päeva jooksul", - "Shares" : "Jaoskaustad", - "Users:" : "Kasutajaid:", - "Groups:" : "Gruppe:", - "Links:" : "Linke:", - "Emails:" : "E-kirju:", - "Federated sent:" : "Liitpilve saadetud:", - "Federated received:" : "Liitpilvest vastu võetud:", - "Talk conversations:" : "Vestlusi suhtlusrakenduses:", + "OPcache is not loaded." : "OPcache'i lisamoodul pole laaditud.", + "OPcache is disabled." : "OPcache'i lisamoodul on keelatud.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloudil pole õigust tuvastada OPcache'i lisamooduli olekut („opcache.restrict_api“).", + "OPcache status is unavailable." : "OPcache'i lisamooduli olek pole teada!", + "{used} of {total}" : "{used} / {total}", + "Interned strings" : "Jagatud sõned (interned strings)", + "Keys" : "Võtmed", + "{used} of {max}" : "{used} / {max}", + "Disabled" : "Väljalülitatud", + "Enabled, {used} of {total} buffer used" : "Sisselülitatud - puhvrist on kasutatud {used} / {total}", + "OPcache" : "OPcache", + "Hit rate" : "Päringute määr", + "Cached scripts" : "Puhverdatud skriptid", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Need numbrid kirjeldavad seda päringut töötlevat PHP-protsessi. Teised FPM-i kogumid või käsurida kasutavad oma OPcache’i.", + "Revalidate frequency:" : "Kordusvalideerimise sagedus:", + "seconds" : "sekundit", + "Validate timestamps:" : "Ajatemplite kontroll:", + "Yes" : "Jah", + "No" : "Ei", + "OOM restarts:" : "OOM-i juhitud uuestikäivitusi:", + "Last restart:" : "Viimane uuestikäivitus:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP laiendusmoodulid", + "Extension" : "Laiend", + "Unable to list extensions" : "Laienduste loetlemine ei õnnestunud", + "{count} loaded" : "Laaditud on {count} lisamoodulit", "PHP" : "PHP", - "Version:" : "Versioon:", - "Memory limit:" : "Mälukasutuse ülempiir:", + "Version" : "Versioon", + "Memory limit" : "Mälukasutuse ülempiir", "Max execution time:" : "Maksimaalne täitmisaeg:", "Upload max size:" : "Maksimaalne üleslaadimissuurus:", - "OPcache Revalidate Frequency:" : "OPcache'i kordusvalideerimise sagedus:", + "Post max size:" : "Post-päringu suurim lubatud suurus:", + "SAPI:" : "SAPI:", "Extensions:" : "Laiendused:", - "Unable to list extensions" : "Laienduste loetlemine ebaõnnestus", + "PHP Info:" : "PHP teave:", "Show phpinfo" : "Näita phpinfo väljundit", "FPM worker pool" : "FPM-i ühenduste fond", "Pool name:" : "Ühenduste fondi nimi:", @@ -80,16 +137,60 @@ "Max listen queue:" : "Maksimaalne kuulatavate päringute järjekord:", "Max active processes:" : "Suurim aktiivsete protsesside arv:", "Max children reached:" : "Maksimaalselt järglasprotsesse:", - "Database" : "Andmebaas", - "Type:" : "Tüüp:", + "CPU" : "Protsessor", + "Swap" : "Saaleala", + "Resource usage" : "Ressursikasutus", + "Shares" : "Jagamised", + "Users:" : "Kasutajaid:", + "Groups:" : "Gruppe:", + "Links:" : "Linke:", + "Emails:" : "E-kirju:", + "Federated sent:" : "Liitpilve saadetud:", + "Federated received:" : "Liitpilvest vastu võetud:", + "Talk conversations:" : "Vestlusi suhtlusrakenduses:", + "Runs" : "Käivitusi", + "Average" : "Keskmine", + "Longest" : "Kauakestvaim", + "Warning" : "Hoiatus (warning)", + "Critical" : "Kriitiline", + "Operating System:" : "Operatsioonisüsteem:", + "CPU:" : "Protsessor:", + "{name} ({threads} threads)" : "{name} ({threads} lõime)", + "Server time:" : "Serveri aeg:", + "Uptime:" : "Aeg viimasest serveri käivitusest:", + "Temperature" : "Temperatuur", + "{duration} ms" : "{duration} msek", + "{duration} s" : "{duration} sek", + "CPU Usage:" : "Protsessori koormus:", + "Load average: {percentage} % ({load}) last minute" : "Keskmine koormus: {percentage} % ({load}) viimase minuti kestel", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) viimane minut\n{last5MinutesPercentage} % ({last5Minutes}) viimased 5 minutit\n{last15MinutesPercentage} % ({last15Minutes}) viimased 15 minutit", + "RAM Usage:" : "Mälukasutus:", + "SWAP Usage:" : "Saaleala kasutus:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Mälu: Kokku: {memTotalBytes}/Kasutusel: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Saaleala: Kokku: {swapTotalBytes}/Kasutusel: {swapUsageBytes}", + "SWAP info not available" : "Saaleala teave pole saadaval", + "Copied!" : "Kopeeritud!", + "Not supported!" : "Pole toetatud!", + "Press ⌘-C to copy." : "Kopeerimiseks vajuta ⌘+C.", + "Press Ctrl-C to copy." : "Kopeerimiseks vajuta Ctrl+C.", + "threads" : "lõime", + "Memory:" : "Mälu:", + "Files:" : "Faile:", + "Storages:" : "Andmeruumid:", + "Free Space:" : "Vaba ruum:", + "Hostname:" : "Hostinimi:", + "Gateway:" : "Võrgulüüs:", + "%s%% of all users" : "%s%% kõikidest kasutajatest", + "Memory limit:" : "Mälukasutuse ülempiir:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache'i kordusvalideerimise sagedus:", "External monitoring tool" : "Väline monitoorimistarvik", "Use this end point to connect an external monitoring tool:" : "Kasuta seda otspunkti välise monitoorimistarviku ühenduse jaoks:", "Copy" : "Kopeeri", - "Output in JSON" : "Väljund json-vormingus", "Skip apps section (including apps section will send an external request to the app store)" : "Jäta rakenduste valik vahele (sh sellega seotud päring rakendustepoodi)", - "Skip server update" : "Jäta serveri uuendus vahele", - "To use an access token, please generate one then set it using the following command:" : "Ligipääsutunnuse kasutamiseks genereeri see ja seadista alljärgneva käsu abil:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Seejärel saada tunnus ülaloleva URL-i pärimisel \"NC-Token\" päisega.", - "Unknown Processor" : "Tundmatu protsessor" + "To use an access token, please generate one then set it using the following command:" : "Ligipääsuks vajaliku tunnusloa kasutamiseks genereeri see ja seadista alljärgneva käsu abil:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Seejärel kontrolli, et sinu kasutatav klientrakendus oskaks selle tunnusloa lisada ülaloleva võrguaadressi päringute „NC-Token“ päisesse.", + "%1$s (%2$d threads)" : "%1$s (%2$d lõime)", + "DNS:" : "Nimeserver:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/eu.js b/l10n/eu.js index b88d5f16..263c42a0 100644 --- a/l10n/eu.js +++ b/l10n/eu.js @@ -1,47 +1,75 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU informazioa ez dago eskuragarri", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totala: {memTotalBytes}/Erabiltzen: {memUsageBytes}", - "RAM info not available" : "RAM informazioa ez dago eskuragarri", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totala: {swapTotalBytes}/Erabiltzen: {swapUsageBytes}", - "SWAP info not available" : "SWAP informazioa ez dago eskuragarri", - "Copied!" : "Kopiatuta!", - "Not supported!" : "Ez da onartzen!", - "Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.", - "Press Ctrl-C to copy." : "Sakatu Ctrl-C kopiatzeko.", "System" : "Sistema", + "Unknown" : "Ezezaguna", "Monitoring" : "Jarraipena", "Monitoring app with useful server information" : "Monitorizazio aplikazioa zerbitzariaren informazio baliagarriarekin", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zerbitzariaren informazio baliagarria ematen du, CPU karga, RAM erabilera, diskoaren erabilera, erabiltzaile kopurua, etab. bezala.", - "Operating System:" : "Sistema eragilea:", - "CPU:" : "PUZ:", - "Memory:" : "Memoria:", - "Server time:" : "Zerbitzariaren ordua:", - "Uptime:" : "Denbora aktibo:", - "Temperature" : "Tenperatura", + "Active users" : "Erabiltzaile aktiboak", + "Last hour" : "Azken ordua", + "Webcron" : "Webcron", + "Background jobs" : "Atzeko planoko lanak", + "Mode" : "Modua", + "Never" : "Inoiz ez", "Load" : "Karga", - "Memory" : "Memoria", + "CPU info not available" : "CPU informazioa ez dago eskuragarri", + "Current usage" : "Gaur egungo erabilera", + "Load average" : "Batez besteko karga", + "Database" : "Datu-basea", + "Type:" : "Mota:", + "Version:" : "Bertsioa:", + "Size:" : "Tamaina:", + "Used" : "Erabilia", + "Available" : "Erabilgarri", "Disk" : "Diskoa", + "Files" : "Fitxategiak", + "Storages" : "Biltegiak", "Mount:" : "Muntatzea:", "Filesystem:" : "Fitxategi-sistema:", - "Size:" : "Tamaina:", "Available:" : "Erabilgarri:", "Used:" : "Erabilia:", - "Files:" : "Fitxategiak:", - "Storages:" : "Biltegiak:", - "Free Space:" : "Leku librea:", + "Status" : "Egoera", + "Started" : "Hasi da", + "Duration" : "Iraupena", + "Job" : "Lana", + "When" : "Noiz", + "Details" : "Xehetasunak", + "Succeeded" : "Arrakastatsua", + "Failed" : "Huts egin du", + "Running" : "Exekutatzen", + "Memory" : "Memoria", + "RAM info not available" : "RAM informazioa ez dago eskuragarri", + "Total" : "Denetara", + "Configuration" : "Ezarpenak", + "Authentication" : "Autentifikazioa", "Network" : "Sarea", - "Hostname:" : "Ostalari-izena:", - "Gateway:" : "Sarbidea:", + "Hostname" : "Ostalari-izena", + "Gateway" : "Atebidea", + "DNS" : "DNS", "Status:" : "Egoera:", "Speed:" : "Abiadura:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Erabiltzaile aktiboak", - "Last hour" : "Azken ordua", + "Keys" : "Gakoak", + "Disabled" : "Desgaituta", + "seconds" : "duela segundu batzuk", + "Yes" : "Bai", + "No" : "Ez", + "PHP extensions" : "PHP luzapenak", + "Extension" : "Hedapena", + "Unable to list extensions" : "Ezin dira zerrendatu luzapenak", + "PHP" : "PHP", + "Version" : "Bertsioa", + "Memory limit" : "Memoria muga", + "Max execution time:" : "Gehienezko exekuzio denbora:", + "Upload max size:" : "Igotzeko gehienezko tamaina:", + "Extensions:" : "Hedapenak:", + "Show phpinfo" : "Erakutsi phpinfo", + "CPU" : "PUZa", + "Resource usage" : "Baliabideen erabilpena", "Shares" : "Partekatutakoak", "Users:" : "Erabiltzaileak:", "Groups:" : "Taldeak:", @@ -50,20 +78,31 @@ OC.L10N.register( "Federated sent:" : "Bidalketa federatua:", "Federated received:" : "Jasoketa federatua:", "Talk conversations:" : "Talk elkarrizketak:", - "PHP" : "PHP", - "Version:" : "Bertsioa:", + "Average" : "Batezbestekoa", + "Warning" : "Abisua", + "Operating System:" : "Sistema eragilea:", + "CPU:" : "PUZ:", + "Server time:" : "Zerbitzariaren ordua:", + "Uptime:" : "Denbora aktibo:", + "Temperature" : "Tenperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totala: {memTotalBytes}/Erabiltzen: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totala: {swapTotalBytes}/Erabiltzen: {swapUsageBytes}", + "SWAP info not available" : "SWAP informazioa ez dago eskuragarri", + "Copied!" : "Kopiatuta!", + "Not supported!" : "Ez da onartzen!", + "Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.", + "Press Ctrl-C to copy." : "Sakatu Ctrl-C kopiatzeko.", + "Memory:" : "Memoria:", + "Files:" : "Fitxategiak:", + "Storages:" : "Biltegiak:", + "Free Space:" : "Leku librea:", + "Hostname:" : "Ostalari-izena:", + "Gateway:" : "Sarbidea:", "Memory limit:" : "Memoria muga:", - "Max execution time:" : "Gehienezko exekuzio denbora:", - "Upload max size:" : "Igotzeko gehienezko tamaina:", - "Extensions:" : "Hedapenak:", - "Unable to list extensions" : "Ezin dira zerrendatu luzapenak", - "Show phpinfo" : "Erakutsi phpinfo", - "Database" : "Datu-basea", - "Type:" : "Mota:", "External monitoring tool" : "Kanpo jarraipen tresna", "Copy" : "Kopiatu", "To use an access token, please generate one then set it using the following command:" : "Sarbide-token bat erabiltzeko, sortu bat eta ezarri komando hau erabiliz:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ondoren, pasatu token-a \"NC-Token\" goiburuarekin goiko URLa kontsultatzerakoan.", - "Unknown Processor" : "Prozesatzaile ezezaguna" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/eu.json b/l10n/eu.json index 167025ef..9898ff20 100644 --- a/l10n/eu.json +++ b/l10n/eu.json @@ -1,45 +1,73 @@ { "translations": { - "CPU info not available" : "CPU informazioa ez dago eskuragarri", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totala: {memTotalBytes}/Erabiltzen: {memUsageBytes}", - "RAM info not available" : "RAM informazioa ez dago eskuragarri", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totala: {swapTotalBytes}/Erabiltzen: {swapUsageBytes}", - "SWAP info not available" : "SWAP informazioa ez dago eskuragarri", - "Copied!" : "Kopiatuta!", - "Not supported!" : "Ez da onartzen!", - "Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.", - "Press Ctrl-C to copy." : "Sakatu Ctrl-C kopiatzeko.", "System" : "Sistema", + "Unknown" : "Ezezaguna", "Monitoring" : "Jarraipena", "Monitoring app with useful server information" : "Monitorizazio aplikazioa zerbitzariaren informazio baliagarriarekin", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zerbitzariaren informazio baliagarria ematen du, CPU karga, RAM erabilera, diskoaren erabilera, erabiltzaile kopurua, etab. bezala.", - "Operating System:" : "Sistema eragilea:", - "CPU:" : "PUZ:", - "Memory:" : "Memoria:", - "Server time:" : "Zerbitzariaren ordua:", - "Uptime:" : "Denbora aktibo:", - "Temperature" : "Tenperatura", + "Active users" : "Erabiltzaile aktiboak", + "Last hour" : "Azken ordua", + "Webcron" : "Webcron", + "Background jobs" : "Atzeko planoko lanak", + "Mode" : "Modua", + "Never" : "Inoiz ez", "Load" : "Karga", - "Memory" : "Memoria", + "CPU info not available" : "CPU informazioa ez dago eskuragarri", + "Current usage" : "Gaur egungo erabilera", + "Load average" : "Batez besteko karga", + "Database" : "Datu-basea", + "Type:" : "Mota:", + "Version:" : "Bertsioa:", + "Size:" : "Tamaina:", + "Used" : "Erabilia", + "Available" : "Erabilgarri", "Disk" : "Diskoa", + "Files" : "Fitxategiak", + "Storages" : "Biltegiak", "Mount:" : "Muntatzea:", "Filesystem:" : "Fitxategi-sistema:", - "Size:" : "Tamaina:", "Available:" : "Erabilgarri:", "Used:" : "Erabilia:", - "Files:" : "Fitxategiak:", - "Storages:" : "Biltegiak:", - "Free Space:" : "Leku librea:", + "Status" : "Egoera", + "Started" : "Hasi da", + "Duration" : "Iraupena", + "Job" : "Lana", + "When" : "Noiz", + "Details" : "Xehetasunak", + "Succeeded" : "Arrakastatsua", + "Failed" : "Huts egin du", + "Running" : "Exekutatzen", + "Memory" : "Memoria", + "RAM info not available" : "RAM informazioa ez dago eskuragarri", + "Total" : "Denetara", + "Configuration" : "Ezarpenak", + "Authentication" : "Autentifikazioa", "Network" : "Sarea", - "Hostname:" : "Ostalari-izena:", - "Gateway:" : "Sarbidea:", + "Hostname" : "Ostalari-izena", + "Gateway" : "Atebidea", + "DNS" : "DNS", "Status:" : "Egoera:", "Speed:" : "Abiadura:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Erabiltzaile aktiboak", - "Last hour" : "Azken ordua", + "Keys" : "Gakoak", + "Disabled" : "Desgaituta", + "seconds" : "duela segundu batzuk", + "Yes" : "Bai", + "No" : "Ez", + "PHP extensions" : "PHP luzapenak", + "Extension" : "Hedapena", + "Unable to list extensions" : "Ezin dira zerrendatu luzapenak", + "PHP" : "PHP", + "Version" : "Bertsioa", + "Memory limit" : "Memoria muga", + "Max execution time:" : "Gehienezko exekuzio denbora:", + "Upload max size:" : "Igotzeko gehienezko tamaina:", + "Extensions:" : "Hedapenak:", + "Show phpinfo" : "Erakutsi phpinfo", + "CPU" : "PUZa", + "Resource usage" : "Baliabideen erabilpena", "Shares" : "Partekatutakoak", "Users:" : "Erabiltzaileak:", "Groups:" : "Taldeak:", @@ -48,20 +76,31 @@ "Federated sent:" : "Bidalketa federatua:", "Federated received:" : "Jasoketa federatua:", "Talk conversations:" : "Talk elkarrizketak:", - "PHP" : "PHP", - "Version:" : "Bertsioa:", + "Average" : "Batezbestekoa", + "Warning" : "Abisua", + "Operating System:" : "Sistema eragilea:", + "CPU:" : "PUZ:", + "Server time:" : "Zerbitzariaren ordua:", + "Uptime:" : "Denbora aktibo:", + "Temperature" : "Tenperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totala: {memTotalBytes}/Erabiltzen: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totala: {swapTotalBytes}/Erabiltzen: {swapUsageBytes}", + "SWAP info not available" : "SWAP informazioa ez dago eskuragarri", + "Copied!" : "Kopiatuta!", + "Not supported!" : "Ez da onartzen!", + "Press ⌘-C to copy." : "Sakatu ⌘-C kopiatzeko.", + "Press Ctrl-C to copy." : "Sakatu Ctrl-C kopiatzeko.", + "Memory:" : "Memoria:", + "Files:" : "Fitxategiak:", + "Storages:" : "Biltegiak:", + "Free Space:" : "Leku librea:", + "Hostname:" : "Ostalari-izena:", + "Gateway:" : "Sarbidea:", "Memory limit:" : "Memoria muga:", - "Max execution time:" : "Gehienezko exekuzio denbora:", - "Upload max size:" : "Igotzeko gehienezko tamaina:", - "Extensions:" : "Hedapenak:", - "Unable to list extensions" : "Ezin dira zerrendatu luzapenak", - "Show phpinfo" : "Erakutsi phpinfo", - "Database" : "Datu-basea", - "Type:" : "Mota:", "External monitoring tool" : "Kanpo jarraipen tresna", "Copy" : "Kopiatu", "To use an access token, please generate one then set it using the following command:" : "Sarbide-token bat erabiltzeko, sortu bat eta ezarri komando hau erabiliz:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ondoren, pasatu token-a \"NC-Token\" goiburuarekin goiko URLa kontsultatzerakoan.", - "Unknown Processor" : "Prozesatzaile ezezaguna" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/fa.js b/l10n/fa.js index cbf77fbc..5f78f79c 100644 --- a/l10n/fa.js +++ b/l10n/fa.js @@ -1,70 +1,139 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "اطلاعات CPU در دسترس نیست", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", - "RAM info not available" : "RAM info not available", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", - "SWAP info not available" : "SWAP info not available", - "Copied!" : "رونوشت شد!", - "Not supported!" : "پشتیبانی وجود ندارد!", - "Press ⌘-C to copy." : "برای کپی کردن از دکمه های C+⌘ استفاده نمایید", - "Press Ctrl-C to copy." : "برای کپی کردن از دکمه ctrl+c استفاده نمایید", "System" : "سیستم", - "Monitoring" : "نظارت بر", - "Monitoring app with useful server information" : "برنامه نظارت با اطلاعات سرور مفید", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "اطلاعات سرور مفیدی مانند بار CPU ، استفاده از رم ، استفاده دیسک ، تعداد کاربران و غیره را ارائه می دهد.", - "Operating System:" : "Operating System:", - "CPU:" : "CPU:", - "Memory:" : "Memory:", - "Server time:" : "Server time:", - "Uptime:" : "Uptime:", - "Temperature" : "Temperature", + "Unknown" : "ناشناخته", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d روز، %2$d ساعت، %3$d دقیقه، %4$d ثانیه", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d ساعت، %2$d دقیقه، %3$d ثانیه", + "Monitoring" : "نظارت", + "Monitoring app with useful server information" : "برنامه نظارت با اطلاعات مفید سرور", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "اطلاعات مفید سرور مانند بار CPU، مصرف RAM، مصرف دیسک، تعداد کاربران و غیره را ارائه می‌دهد.", + "Active users" : "کاربران فعال", + "Last hour" : "ساعت گذشته", + "Last 24 Hours" : "۲۴ ساعت گذشته", + "Last 7 Days" : "۷ روز گذشته", + "Last 30 Days" : "۳۰ روز گذشته", + "Webcron" : "Webcron", + "Background jobs" : "وظایف پس‌زمینه", + "Mode" : "حالت", + "Never" : "هرگز", "Load" : "بار", - "Memory" : "حافظه", + "CPU info not available" : "اطلاعات CPU در دسترس نیست", + "Current usage" : "مصرف کنونی", + "Threads" : "موضوعات", + "Load average" : "متوسط بار", + "Database" : "پایگاه داده", + "Type:" : "نوع:", + "Version:" : "نسخه:", + "Size:" : "اندازه:", + "Used" : "استفاده شده", + "Available" : "موجود", "Disk" : "دیسک", - "Mount:" : "Mount:", - "Filesystem:" : "Filesystem:", - "Size:" : "اندازه", - "Available:" : "Available:", - "Used:" : "Used:", - "Files:" : "فایل ها:", - "Storages:" : "انبارها:", - "Free Space:" : "فضای خالی:", + "Files" : "پرونده‌ها", + "Mount:" : "محل اتصال:", + "Filesystem:" : "سیستم فایل:", + "Available:" : "موجود:", + "Used:" : "استفاده شده:", + "Status" : "وضعیت", + "Started" : "آغاز شده", + "Duration" : "مدت زمان", + "When" : "زمانی که", + "Details" : "جزئیات", + "Succeeded" : "موفق", + "Failed" : "ناموفق", + "Running" : "در حال اجرا", + "Memory" : "حافظه", + "RAM info not available" : "اطلاعات RAM در دسترس نیست", + "Total" : "مجموع", + "Configuration" : "تنظیمات", + "Output in JSON" : "خروجی به صورت JSON", + "Skip server update" : "رد کردن به‌روزرسانی سرور", + "Authentication" : "احراز هویت", "Network" : "شبکه", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", - "Status:" : "Status:", - "Speed:" : "Speed:", - "Duplex:" : "Duplex:", + "Hostname" : "نام میزبان", + "Gateway" : "دروازه", + "DNS" : "DNS", + "Status:" : "وضعیت:", + "Speed:" : "سرعت:", + "Duplex:" : "دوطرفه:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "کاربران فعال", - "Last hour" : "Last hour", - "Shares" : "اشتراک گذاری ها", - "Users:" : "کاربران:", - "Groups:" : "Groups:", - "Links:" : "Links:", - "Emails:" : "Emails:", - "Federated sent:" : "Federated sent:", - "Federated received:" : "Federated received:", - "Talk conversations:" : "Talk conversations:", + "Keys" : "کلیدها", + "Disabled" : "غیرفعال شده", + "seconds" : "ثانیه", + "Yes" : "بله", + "No" : "نه", + "PHP extensions" : "افزونه‌های PHP", + "Extension" : "پسوند", + "Unable to list extensions" : "امکان فهرست‌سازی افزونه‌ها وجود ندارد", "PHP" : "PHP", - "Version:" : "نسخه:", - "Memory limit:" : "Memory limit:", - "Max execution time:" : "Max execution time:", - "Upload max size:" : "اندازه حداکثر بارگذاری شود:", - "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", - "Extensions:" : "Extensions:", - "Unable to list extensions" : "Unable to list extensions", - "Show phpinfo" : "Show phpinfo", - "Database" : "پایگاه داده", - "Type:" : "نوع:", + "Version" : "نسخه", + "Memory limit" : "محدودیت حافظه", + "Max execution time:" : "حداکثر زمان اجرا:", + "Upload max size:" : "حداکثر اندازه آپلود:", + "Extensions:" : "افزونه‌ها:", + "PHP Info:" : "اطلاعات PHP:", + "Show phpinfo" : "نمایش phpinfo", + "FPM worker pool" : "استخر کارگران FPM", + "Pool name:" : "نام استخر:", + "Pool type:" : "نوع استخر:", + "Start time:" : "زمان شروع:", + "Accepted connections:" : "اتصالات پذیرفته شده:", + "Total processes:" : "مجموع فرآیندها:", + "Active processes:" : "فرآیندهای فعال:", + "Idle processes:" : "فرآیندهای بیکار:", + "Listen queue:" : "صف گوش دادن:", + "Slow requests:" : "درخواست‌های کند:", + "Max listen queue:" : "حداکثر صف گوش دادن:", + "Max active processes:" : "حداکثر فرآیندهای فعال:", + "Max children reached:" : "حداکثر فرزندان رسیده:", + "CPU" : "پردازنده", + "Resource usage" : "مصرف منابع", + "Shares" : "اشتراک‌گذاری‌ها", + "Users:" : "کاربران:", + "Groups:" : "گروه‌ها:", + "Links:" : "پیوندها:", + "Emails:" : "ایمیل‌ها:", + "Federated sent:" : "ارسال فدرال:", + "Federated received:" : "دریافت فدرال:", + "Talk conversations:" : "گفتگوهای Talk:", + "Average" : "میانگین", + "Warning" : "هشدار", + "Operating System:" : "سیستم عامل:", + "CPU:" : "CPU:", + "Server time:" : "زمان سرور:", + "Uptime:" : "زمان فعالیت:", + "Temperature" : "دما", + "CPU Usage:" : "مصرف CPU:", + "Load average: {percentage} % ({load}) last minute" : "میانگین بار: {percentage}% ({load}) در دقیقه گذشته", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) در دقیقه گذشته", + "RAM Usage:" : "مصرف RAM:", + "SWAP Usage:" : "مصرف SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: مجموع: {memTotalBytes}/مصرف فعلی: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: مجموع: {swapTotalBytes}/مصرف فعلی: {swapUsageBytes}", + "SWAP info not available" : "اطلاعات SWAP در دسترس نیست", + "Copied!" : "کپی شد!", + "Not supported!" : "پشتیبانی نمی‌شود!", + "Press ⌘-C to copy." : "برای کپی، ⌘-C را فشار دهید.", + "Press Ctrl-C to copy." : "برای کپی، Ctrl-C را فشار دهید.", + "threads" : "رشته", + "Memory:" : "حافظه:", + "Files:" : "فایل‌ها:", + "Storages:" : "ذخیره‌سازها:", + "Free Space:" : "فضای خالی:", + "Hostname:" : "نام میزبان:", + "Gateway:" : "دروازه:", + "%s%% of all users" : "%s%% از کل کاربران", + "Memory limit:" : "محدودیت حافظه:", + "MB" : "مگابایت", + "OPcache Revalidate Frequency:" : "فرکانس بازبینی OPcache:", "External monitoring tool" : "ابزار نظارت خارجی", - "Copy" : "کپی کردن", - "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL.", - "Unknown Processor" : "Unknown Processor" + "Use this end point to connect an external monitoring tool:" : "از این نقطه پایانی برای اتصال یک ابزار نظارت خارجی استفاده کنید:", + "Copy" : "کپی", + "Skip apps section (including apps section will send an external request to the app store)" : "رد کردن بخش برنامه‌ها (شامل بخش برنامه‌ها یک درخواست خارجی به فروشگاه برنامه ارسال می‌کند)", + "To use an access token, please generate one then set it using the following command:" : "برای استفاده از توکن دسترسی، لطفاً یکی را ایجاد کرده و سپس با دستور زیر تنظیم کنید:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "سپس توکن را با هدر \"NC-Token\" هنگام پرس‌وجوی URL بالا ارسال کنید.", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/fa.json b/l10n/fa.json index 3ef89e41..1182c8c3 100644 --- a/l10n/fa.json +++ b/l10n/fa.json @@ -1,68 +1,137 @@ { "translations": { - "CPU info not available" : "اطلاعات CPU در دسترس نیست", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", - "RAM info not available" : "RAM info not available", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", - "SWAP info not available" : "SWAP info not available", - "Copied!" : "رونوشت شد!", - "Not supported!" : "پشتیبانی وجود ندارد!", - "Press ⌘-C to copy." : "برای کپی کردن از دکمه های C+⌘ استفاده نمایید", - "Press Ctrl-C to copy." : "برای کپی کردن از دکمه ctrl+c استفاده نمایید", "System" : "سیستم", - "Monitoring" : "نظارت بر", - "Monitoring app with useful server information" : "برنامه نظارت با اطلاعات سرور مفید", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "اطلاعات سرور مفیدی مانند بار CPU ، استفاده از رم ، استفاده دیسک ، تعداد کاربران و غیره را ارائه می دهد.", - "Operating System:" : "Operating System:", - "CPU:" : "CPU:", - "Memory:" : "Memory:", - "Server time:" : "Server time:", - "Uptime:" : "Uptime:", - "Temperature" : "Temperature", + "Unknown" : "ناشناخته", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d روز، %2$d ساعت، %3$d دقیقه، %4$d ثانیه", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d ساعت، %2$d دقیقه، %3$d ثانیه", + "Monitoring" : "نظارت", + "Monitoring app with useful server information" : "برنامه نظارت با اطلاعات مفید سرور", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "اطلاعات مفید سرور مانند بار CPU، مصرف RAM، مصرف دیسک، تعداد کاربران و غیره را ارائه می‌دهد.", + "Active users" : "کاربران فعال", + "Last hour" : "ساعت گذشته", + "Last 24 Hours" : "۲۴ ساعت گذشته", + "Last 7 Days" : "۷ روز گذشته", + "Last 30 Days" : "۳۰ روز گذشته", + "Webcron" : "Webcron", + "Background jobs" : "وظایف پس‌زمینه", + "Mode" : "حالت", + "Never" : "هرگز", "Load" : "بار", - "Memory" : "حافظه", + "CPU info not available" : "اطلاعات CPU در دسترس نیست", + "Current usage" : "مصرف کنونی", + "Threads" : "موضوعات", + "Load average" : "متوسط بار", + "Database" : "پایگاه داده", + "Type:" : "نوع:", + "Version:" : "نسخه:", + "Size:" : "اندازه:", + "Used" : "استفاده شده", + "Available" : "موجود", "Disk" : "دیسک", - "Mount:" : "Mount:", - "Filesystem:" : "Filesystem:", - "Size:" : "اندازه", - "Available:" : "Available:", - "Used:" : "Used:", - "Files:" : "فایل ها:", - "Storages:" : "انبارها:", - "Free Space:" : "فضای خالی:", + "Files" : "پرونده‌ها", + "Mount:" : "محل اتصال:", + "Filesystem:" : "سیستم فایل:", + "Available:" : "موجود:", + "Used:" : "استفاده شده:", + "Status" : "وضعیت", + "Started" : "آغاز شده", + "Duration" : "مدت زمان", + "When" : "زمانی که", + "Details" : "جزئیات", + "Succeeded" : "موفق", + "Failed" : "ناموفق", + "Running" : "در حال اجرا", + "Memory" : "حافظه", + "RAM info not available" : "اطلاعات RAM در دسترس نیست", + "Total" : "مجموع", + "Configuration" : "تنظیمات", + "Output in JSON" : "خروجی به صورت JSON", + "Skip server update" : "رد کردن به‌روزرسانی سرور", + "Authentication" : "احراز هویت", "Network" : "شبکه", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", - "Status:" : "Status:", - "Speed:" : "Speed:", - "Duplex:" : "Duplex:", + "Hostname" : "نام میزبان", + "Gateway" : "دروازه", + "DNS" : "DNS", + "Status:" : "وضعیت:", + "Speed:" : "سرعت:", + "Duplex:" : "دوطرفه:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "کاربران فعال", - "Last hour" : "Last hour", - "Shares" : "اشتراک گذاری ها", - "Users:" : "کاربران:", - "Groups:" : "Groups:", - "Links:" : "Links:", - "Emails:" : "Emails:", - "Federated sent:" : "Federated sent:", - "Federated received:" : "Federated received:", - "Talk conversations:" : "Talk conversations:", + "Keys" : "کلیدها", + "Disabled" : "غیرفعال شده", + "seconds" : "ثانیه", + "Yes" : "بله", + "No" : "نه", + "PHP extensions" : "افزونه‌های PHP", + "Extension" : "پسوند", + "Unable to list extensions" : "امکان فهرست‌سازی افزونه‌ها وجود ندارد", "PHP" : "PHP", - "Version:" : "نسخه:", - "Memory limit:" : "Memory limit:", - "Max execution time:" : "Max execution time:", - "Upload max size:" : "اندازه حداکثر بارگذاری شود:", - "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", - "Extensions:" : "Extensions:", - "Unable to list extensions" : "Unable to list extensions", - "Show phpinfo" : "Show phpinfo", - "Database" : "پایگاه داده", - "Type:" : "نوع:", + "Version" : "نسخه", + "Memory limit" : "محدودیت حافظه", + "Max execution time:" : "حداکثر زمان اجرا:", + "Upload max size:" : "حداکثر اندازه آپلود:", + "Extensions:" : "افزونه‌ها:", + "PHP Info:" : "اطلاعات PHP:", + "Show phpinfo" : "نمایش phpinfo", + "FPM worker pool" : "استخر کارگران FPM", + "Pool name:" : "نام استخر:", + "Pool type:" : "نوع استخر:", + "Start time:" : "زمان شروع:", + "Accepted connections:" : "اتصالات پذیرفته شده:", + "Total processes:" : "مجموع فرآیندها:", + "Active processes:" : "فرآیندهای فعال:", + "Idle processes:" : "فرآیندهای بیکار:", + "Listen queue:" : "صف گوش دادن:", + "Slow requests:" : "درخواست‌های کند:", + "Max listen queue:" : "حداکثر صف گوش دادن:", + "Max active processes:" : "حداکثر فرآیندهای فعال:", + "Max children reached:" : "حداکثر فرزندان رسیده:", + "CPU" : "پردازنده", + "Resource usage" : "مصرف منابع", + "Shares" : "اشتراک‌گذاری‌ها", + "Users:" : "کاربران:", + "Groups:" : "گروه‌ها:", + "Links:" : "پیوندها:", + "Emails:" : "ایمیل‌ها:", + "Federated sent:" : "ارسال فدرال:", + "Federated received:" : "دریافت فدرال:", + "Talk conversations:" : "گفتگوهای Talk:", + "Average" : "میانگین", + "Warning" : "هشدار", + "Operating System:" : "سیستم عامل:", + "CPU:" : "CPU:", + "Server time:" : "زمان سرور:", + "Uptime:" : "زمان فعالیت:", + "Temperature" : "دما", + "CPU Usage:" : "مصرف CPU:", + "Load average: {percentage} % ({load}) last minute" : "میانگین بار: {percentage}% ({load}) در دقیقه گذشته", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) در دقیقه گذشته", + "RAM Usage:" : "مصرف RAM:", + "SWAP Usage:" : "مصرف SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: مجموع: {memTotalBytes}/مصرف فعلی: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: مجموع: {swapTotalBytes}/مصرف فعلی: {swapUsageBytes}", + "SWAP info not available" : "اطلاعات SWAP در دسترس نیست", + "Copied!" : "کپی شد!", + "Not supported!" : "پشتیبانی نمی‌شود!", + "Press ⌘-C to copy." : "برای کپی، ⌘-C را فشار دهید.", + "Press Ctrl-C to copy." : "برای کپی، Ctrl-C را فشار دهید.", + "threads" : "رشته", + "Memory:" : "حافظه:", + "Files:" : "فایل‌ها:", + "Storages:" : "ذخیره‌سازها:", + "Free Space:" : "فضای خالی:", + "Hostname:" : "نام میزبان:", + "Gateway:" : "دروازه:", + "%s%% of all users" : "%s%% از کل کاربران", + "Memory limit:" : "محدودیت حافظه:", + "MB" : "مگابایت", + "OPcache Revalidate Frequency:" : "فرکانس بازبینی OPcache:", "External monitoring tool" : "ابزار نظارت خارجی", - "Copy" : "کپی کردن", - "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL.", - "Unknown Processor" : "Unknown Processor" + "Use this end point to connect an external monitoring tool:" : "از این نقطه پایانی برای اتصال یک ابزار نظارت خارجی استفاده کنید:", + "Copy" : "کپی", + "Skip apps section (including apps section will send an external request to the app store)" : "رد کردن بخش برنامه‌ها (شامل بخش برنامه‌ها یک درخواست خارجی به فروشگاه برنامه ارسال می‌کند)", + "To use an access token, please generate one then set it using the following command:" : "برای استفاده از توکن دسترسی، لطفاً یکی را ایجاد کرده و سپس با دستور زیر تنظیم کنید:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "سپس توکن را با هدر \"NC-Token\" هنگام پرس‌وجوی URL بالا ارسال کنید.", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/fi.js b/l10n/fi.js index 7e003f03..d09abff0 100644 --- a/l10n/fi.js +++ b/l10n/fi.js @@ -1,63 +1,97 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Suorittimen tietoja ei ole saatavilla", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Yhteensä: {memTotalBytes}/Nykyinen käyttö: {memUsageBytes}", - "RAM info not available" : "RAM-tietoja ei saatavilla", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Yhteensä: {swapTotalBytes}/Nykyinen käyttö: {swapUsageBytes}", - "SWAP info not available" : "SWAP-tietoja ei saatavilla", - "Copied!" : "Kopioitu!", - "Not supported!" : "Ei tuettu!", - "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", - "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", "System" : "Järjestelmä", + "Unknown" : "Tuntematon", "Monitoring" : "Valvonta", "Monitoring app with useful server information" : "Valvontasovellus sisältäen hyödyllisiä tietoja palvelimesta", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näyttää hyödyllisiä tietoja palvelimesta, kuten suorittimen kuorman, muistin ja levytilan käytön, käyttäjien määrän jne.", - "Operating System:" : "Käyttöjärjestelmä:", - "CPU:" : "Suoritin:", - "Memory:" : "Muisti:", - "Server time:" : "Palvelimen aika:", - "Uptime:" : "Käynnissäoloaika:", - "Temperature" : "Lämpötila", + "Active users" : "Aktiiviset käyttäjät", + "Last hour" : "Viime tunti", + "Background jobs" : "Taustatyöt", + "Mode" : "Tila", + "Never" : "Ei koskaan", "Load" : "Kuorma", - "Memory" : "Muisti", + "CPU info not available" : "Suorittimen tietoja ei ole saatavilla", + "Current usage" : "Tämänhetkinen kulutus", + "Threads" : "Keskusteluketjut", + "Load average" : "Keskiarvoinen kuorma", + "Database" : "Tietokanta", + "Type:" : "Tyyppi:", + "Version:" : "Versio:", + "Size:" : "Koko:", + "Used" : "Käytetty", + "Available" : "Saatavilla", "Disk" : "Levy", + "Files" : "Tiedostot", + "Storages" : "Tallennustilat", "Mount:" : "Liitospiste:", "Filesystem:" : "Tiedostojärjestelmä:", - "Size:" : "Koko:", "Available:" : "Saatavilla:", "Used:" : "Käytetty:", - "Files:" : "Tiedostoja:", - "Storages:" : "Tallennustilat:", - "Free Space:" : "Vapaata tilaa:", + "Status" : "Tila", + "Started" : "Käynnistetty", + "Duration" : "Kesto", + "Details" : "Tiedot", + "Failed" : "Epäonnistui", + "Running" : "Juoksu", + "Memory" : "Muisti", + "RAM info not available" : "RAM-tietoja ei saatavilla", + "Total" : "Yhteensä", + "Authentication" : "Tunnistautuminen", "Network" : "Verkko", - "Hostname:" : "Tietokoneen nimi:", - "Gateway:" : "Yhdyskäytävä:", + "Hostname" : "Tietokoneen nimi", + "Gateway" : "Yhdyskäytävä", + "DNS" : "Nimipalvelu", "Status:" : "Tila:", "Speed:" : "Nopeus:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktiiviset käyttäjät", - "Last hour" : "Viime tunti", + "Keys" : "Avaimet", + "Disabled" : "Pois käytöstä", + "seconds" : "sekuntia", + "Yes" : "Kyllä", + "No" : "Ei", + "PHP extensions" : "PHP-laajennukset", + "Extension" : "Tiedostopääte", + "Unable to list extensions" : "Laajennuksia ei voi listata", + "PHP" : "PHP", + "Version" : "Versio", + "Memory limit" : "Muistin raja", + "Max execution time:" : "Suoritusaika enintään:", + "Upload max size:" : "Suurin lähetyksen koko:", + "Extensions:" : "Laajennukset:", + "CPU" : "Suoritin", "Shares" : "Jaot", "Users:" : "Käyttäjiä:", "Groups:" : "Ryhmät:", "Links:" : "Linkit:", "Emails:" : "Sähköpostit:", "Talk conversations:" : "Talk-keskustelut:", - "PHP" : "PHP", - "Version:" : "Versio:", + "Average" : "Keskiarvo", + "Warning" : "Varoitus", + "Operating System:" : "Käyttöjärjestelmä:", + "CPU:" : "Suoritin:", + "Server time:" : "Palvelimen aika:", + "Uptime:" : "Käynnissäoloaika:", + "Temperature" : "Lämpötila", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Yhteensä: {memTotalBytes}/Nykyinen käyttö: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Yhteensä: {swapTotalBytes}/Nykyinen käyttö: {swapUsageBytes}", + "SWAP info not available" : "SWAP-tietoja ei saatavilla", + "Copied!" : "Kopioitu!", + "Not supported!" : "Ei tuettu!", + "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", + "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", + "Memory:" : "Muisti:", + "Files:" : "Tiedostoja:", + "Storages:" : "Tallennustilat:", + "Free Space:" : "Vapaata tilaa:", + "Hostname:" : "Tietokoneen nimi:", + "Gateway:" : "Yhdyskäytävä:", "Memory limit:" : "Muistin raja:", - "Max execution time:" : "Suoritusaika enintään:", - "Upload max size:" : "Suurin lähetyksen koko:", - "Extensions:" : "Laajennukset:", - "Unable to list extensions" : "Laajennuksia ei voi listata", - "Database" : "Tietokanta", - "Type:" : "Tyyppi:", "External monitoring tool" : "Ulkopuolinen valvontatyökalu", "Copy" : "Kopioi", - "Unknown Processor" : "Tuntematon suoritin" + "DNS:" : "Nimipalvelu:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/fi.json b/l10n/fi.json index 27727a65..c21fffb3 100644 --- a/l10n/fi.json +++ b/l10n/fi.json @@ -1,61 +1,95 @@ { "translations": { - "CPU info not available" : "Suorittimen tietoja ei ole saatavilla", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Yhteensä: {memTotalBytes}/Nykyinen käyttö: {memUsageBytes}", - "RAM info not available" : "RAM-tietoja ei saatavilla", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Yhteensä: {swapTotalBytes}/Nykyinen käyttö: {swapUsageBytes}", - "SWAP info not available" : "SWAP-tietoja ei saatavilla", - "Copied!" : "Kopioitu!", - "Not supported!" : "Ei tuettu!", - "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", - "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", "System" : "Järjestelmä", + "Unknown" : "Tuntematon", "Monitoring" : "Valvonta", "Monitoring app with useful server information" : "Valvontasovellus sisältäen hyödyllisiä tietoja palvelimesta", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Näyttää hyödyllisiä tietoja palvelimesta, kuten suorittimen kuorman, muistin ja levytilan käytön, käyttäjien määrän jne.", - "Operating System:" : "Käyttöjärjestelmä:", - "CPU:" : "Suoritin:", - "Memory:" : "Muisti:", - "Server time:" : "Palvelimen aika:", - "Uptime:" : "Käynnissäoloaika:", - "Temperature" : "Lämpötila", + "Active users" : "Aktiiviset käyttäjät", + "Last hour" : "Viime tunti", + "Background jobs" : "Taustatyöt", + "Mode" : "Tila", + "Never" : "Ei koskaan", "Load" : "Kuorma", - "Memory" : "Muisti", + "CPU info not available" : "Suorittimen tietoja ei ole saatavilla", + "Current usage" : "Tämänhetkinen kulutus", + "Threads" : "Keskusteluketjut", + "Load average" : "Keskiarvoinen kuorma", + "Database" : "Tietokanta", + "Type:" : "Tyyppi:", + "Version:" : "Versio:", + "Size:" : "Koko:", + "Used" : "Käytetty", + "Available" : "Saatavilla", "Disk" : "Levy", + "Files" : "Tiedostot", + "Storages" : "Tallennustilat", "Mount:" : "Liitospiste:", "Filesystem:" : "Tiedostojärjestelmä:", - "Size:" : "Koko:", "Available:" : "Saatavilla:", "Used:" : "Käytetty:", - "Files:" : "Tiedostoja:", - "Storages:" : "Tallennustilat:", - "Free Space:" : "Vapaata tilaa:", + "Status" : "Tila", + "Started" : "Käynnistetty", + "Duration" : "Kesto", + "Details" : "Tiedot", + "Failed" : "Epäonnistui", + "Running" : "Juoksu", + "Memory" : "Muisti", + "RAM info not available" : "RAM-tietoja ei saatavilla", + "Total" : "Yhteensä", + "Authentication" : "Tunnistautuminen", "Network" : "Verkko", - "Hostname:" : "Tietokoneen nimi:", - "Gateway:" : "Yhdyskäytävä:", + "Hostname" : "Tietokoneen nimi", + "Gateway" : "Yhdyskäytävä", + "DNS" : "Nimipalvelu", "Status:" : "Tila:", "Speed:" : "Nopeus:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktiiviset käyttäjät", - "Last hour" : "Viime tunti", + "Keys" : "Avaimet", + "Disabled" : "Pois käytöstä", + "seconds" : "sekuntia", + "Yes" : "Kyllä", + "No" : "Ei", + "PHP extensions" : "PHP-laajennukset", + "Extension" : "Tiedostopääte", + "Unable to list extensions" : "Laajennuksia ei voi listata", + "PHP" : "PHP", + "Version" : "Versio", + "Memory limit" : "Muistin raja", + "Max execution time:" : "Suoritusaika enintään:", + "Upload max size:" : "Suurin lähetyksen koko:", + "Extensions:" : "Laajennukset:", + "CPU" : "Suoritin", "Shares" : "Jaot", "Users:" : "Käyttäjiä:", "Groups:" : "Ryhmät:", "Links:" : "Linkit:", "Emails:" : "Sähköpostit:", "Talk conversations:" : "Talk-keskustelut:", - "PHP" : "PHP", - "Version:" : "Versio:", + "Average" : "Keskiarvo", + "Warning" : "Varoitus", + "Operating System:" : "Käyttöjärjestelmä:", + "CPU:" : "Suoritin:", + "Server time:" : "Palvelimen aika:", + "Uptime:" : "Käynnissäoloaika:", + "Temperature" : "Lämpötila", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Yhteensä: {memTotalBytes}/Nykyinen käyttö: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Yhteensä: {swapTotalBytes}/Nykyinen käyttö: {swapUsageBytes}", + "SWAP info not available" : "SWAP-tietoja ei saatavilla", + "Copied!" : "Kopioitu!", + "Not supported!" : "Ei tuettu!", + "Press ⌘-C to copy." : "Paina ⌘-C kopioidaksesi.", + "Press Ctrl-C to copy." : "Paina Ctrl-C kopioidaksesi.", + "Memory:" : "Muisti:", + "Files:" : "Tiedostoja:", + "Storages:" : "Tallennustilat:", + "Free Space:" : "Vapaata tilaa:", + "Hostname:" : "Tietokoneen nimi:", + "Gateway:" : "Yhdyskäytävä:", "Memory limit:" : "Muistin raja:", - "Max execution time:" : "Suoritusaika enintään:", - "Upload max size:" : "Suurin lähetyksen koko:", - "Extensions:" : "Laajennukset:", - "Unable to list extensions" : "Laajennuksia ei voi listata", - "Database" : "Tietokanta", - "Type:" : "Tyyppi:", "External monitoring tool" : "Ulkopuolinen valvontatyökalu", "Copy" : "Kopioi", - "Unknown Processor" : "Tuntematon suoritin" + "DNS:" : "Nimipalvelu:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/fr.js b/l10n/fr.js index a1c69581..355c0500 100644 --- a/l10n/fr.js +++ b/l10n/fr.js @@ -1,78 +1,115 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Information CPU non disponible", - "CPU Usage:" : "Usage CPU:", - "Load average: {percentage} % ({load}) last minute" : "Moyenne de la charge : {percentage}% ( {load}) dernière minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) dernière Minute\n{last5MinutesPercentage} % ({last5Minutes}) 5 dernières Minutes\n{last15MinutesPercentage} % ({last15Minutes}) 15 dernières Minutes", - "RAM Usage:" : "Usage RAM:", - "SWAP Usage:" : "Usage SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM : Total : {memTotalBytes}/Utilisation actuelle : {memUsageBytes}", - "RAM info not available" : "Informations sur la RAM non disponibles", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP : Total : {swapTotalBytes}/Utilisation actuelle : {swapUsageBytes}", - "SWAP info not available" : "L'information SWAP n'est pas disponible", - "Copied!" : "Copié !", - "Not supported!" : "Non supporté !", - "Press ⌘-C to copy." : "Pressez ⌘-C pour copier.", - "Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.", "System" : "Système", + "Unknown" : "Inconnu", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d jours, %2$d heures, %3$d minutes, %4$d secondes", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d heures, %2$d minutes, %3$d secondes", "Monitoring" : "Surveillance", "Monitoring app with useful server information" : "Application de surveillance avec les informations utiles du serveur", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fournit des informations utiles sur le serveur, telles que la charge du processeur, l'utilisation de la RAM, l'utilisation du disque, le nombre d'utilisateurs, etc.", - "Operating System:" : "Système d’exploitation :", - "CPU:" : "CPU :", - "threads" : "fil de discussion", - "Memory:" : "Mémoire :", - "Server time:" : "Heure du serveur :", - "Uptime:" : "Durée de fonctionnement :", - "Temperature" : "Température", + "{0}% of all users" : "{0}% de tous les utilisateurs ", + "Active users" : "Utilisateurs actifs", + "Last hour" : "Dernière heure", + "Last 24 Hours" : "Dernières 24 heures", + "Last 7 Days" : "7 derniers jours", + "Last 30 Days" : "30 derniers jours", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (non recommandé)", + "Background jobs" : "Tâches d'arrière-plan", + "Mode" : "Mode", + "Last run" : "Dernière exécution", + "Never" : "Jamais", + "No background job has run yet." : "Aucune tâche d'arrière-plan n'a été exécutée pour le moment.", + "Slowest jobs" : "Tâches les plus lentes", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Les statistiques sur les tâches lentes ne sont pas disponibles pour le moment. Elles sont collectées par une tâche en arrière-plan et apparaîtront après la prochaine exécution de celle-ci.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Derniers échecs (%n dernier jour)","Derniers échecs (%n derniers jours)","Derniers échecs (%n derniers jours)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Aucune tâche d'arrière-plan n'a échoué au cours du %n dernier jour.","Aucune tâche d'arrière-plan n'a échoué au cours des %n derniers jours.","Aucune tâche d'arrière-plan n'a échoué au cours des %n derniers jours."], "Load" : "Charge", - "Memory" : "Mémoire", + "CPU info not available" : "Informations CPU non disponibles", + "Current usage" : "Utilisation actuelle", + "Threads" : "Fils de discussion", + "Load average" : "Moyenne de la charge système", + "Database" : "Base de données", + "Type:" : "Type :", + "Version:" : "Version :", + "Size:" : "Taille :", + "{used} of {total} used" : "{used} de {total} utilisé", + "Used" : "Utilisé", + "Available" : "Disponible", "Disk" : "Disque", + "Files" : "Fichiers", + "Storages" : "Stockages", + "Free space" : "Espace libre", "Mount:" : "Montage :", "Filesystem:" : "Système de fichiers :", - "Size:" : "Taille :", "Available:" : "Disponible :", "Used:" : "Utilisé :", - "Files:" : "Fichiers :", - "Storages:" : "Stockages :", - "Free Space:" : "Espace libre :", + "Status" : "Statut", + "Started" : "Démarré", + "Duration" : "Durée", + "Server ID" : "ID du serveur", + "Job" : "Travail", + "When" : "Quand", + "Details" : "Détails", + "Succeeded" : "Succès", + "Failed" : "Échec", + "Running" : "Exécution", + "RAM usage" : "Utilisation RAM", + "Memory" : "Mémoire", + "RAM info not available" : "Informations RAM non disponibles", + "Total" : "Total", + "External monitoring API" : "API de surveillance externe", + "Endpoint URL" : "URL du point de terminaison", + "Configuration" : "Configuration", + "Output in JSON" : "Sortie en JSON", + "Including the apps section sends an external request to the app store" : "Inclure la section des applications envoie une requête externe vers l'App Store", + "Skip server update" : "Ignorer la mise à jour du serveur", + "Authentication" : "Authentification", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Ce jeton a été généré dans votre navigateur et n'est pas enregistré tant que vous n'avez pas exécuté la commande ci-dessous. Envoyez-le dans l'entête {header} avec chaque requête.", + "Command to store the token" : "Commande pour enregistrer le jeton", + "Request header" : "Entête de requête", "Network" : "Réseau", - "Hostname:" : "Nom d'hôte :", - "Gateway:" : "Passerelle :", + "Hostname" : "Nom de l’hôte", + "Gateway" : "Passerelle", + "DNS" : "DNS", "Status:" : "État :", "Speed:" : "Vitesse :", "Duplex:" : "Duplex :", "MAC:" : "MAC :", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Utilisateurs actifs", - "Last hour" : "Dernière heure", - "%s%% of all users" : "%s%% pour tous les utilisateurs", - "Last 24 Hours" : "Dernières 24 heures", - "Last 7 Days" : "7 derniers jours", - "Last 30 Days" : "30 derniers jours", - "Shares" : "Partages", - "Users:" : "Utilisateurs :", - "Groups:" : "Groupes :", - "Links:" : "Liens :", - "Emails:" : "E-mails :", - "Federated sent:" : "Offre de fédération envoyée :", - "Federated received:" : "Offre de fédération reçue :", - "Talk conversations:" : "Conversations Talk :", + "OPcache is not loaded." : "OPcache n'est pas chargé.", + "OPcache is disabled." : "OPcache est désactivé.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud n'a pas la permission de lire le statut d'OPcache (« opcache.restrict_api »).", + "OPcache status is unavailable." : "Le statut d'OPcache n'est pas disponible.", + "{used} of {total}" : "{used} sur {total}", + "Keys" : "Clés", + "{used} of {max}" : "{used} sur {max}", + "Disabled" : "Désactivé", + "OPcache" : "OPcache", + "Hit rate" : "Taux de réussite", + "Cached scripts" : "Scripts mis en cache", + "Revalidate frequency:" : "Fréquence de revalidation :", + "seconds" : "secondes", + "Yes" : "Oui", + "No" : "Non", + "Last restart:" : "Dernier redémarrage :", + "PHP extensions" : "Extensions PHP", + "Extension" : "Extension", + "Unable to list extensions" : "Impossible de lister les extensions", "PHP" : "PHP", - "Version:" : "Version :", - "Memory limit:" : "Limite de mémoire :", + "Version" : "Version", + "Memory limit" : "Limite de mémoire", "Max execution time:" : "Temps d’exécution maximal :", "Upload max size:" : "Taille de téléversement maximale :", - "OPcache Revalidate Frequency:" : "Fréquence de revalidation de l'OPcache :", "Extensions:" : "Extensions :", - "Unable to list extensions" : "Impossible de lister les extensions", + "PHP Info:" : "PHP Info :", "Show phpinfo" : "Afficher phpinfo", "FPM worker pool" : "pool du worker FPM", "Pool name:" : "Nom du pool :", "Pool type:" : "Type de pool :", - "Start time:" : "Horaire de démarrage :", + "Start time:" : "Heure de début :", "Accepted connections:" : "Connexions acceptées :", "Total processes:" : "Nombre total de processus :", "Active processes:" : "Processus actifs :", @@ -82,16 +119,56 @@ OC.L10N.register( "Max listen queue:" : "File d'attente d'écoute maximale :", "Max active processes:" : "Nombre maximal de processus actifs :", "Max children reached:" : "Nombre maximal d'enfants atteint :", - "Database" : "Base de données", - "Type:" : "Type :", + "CPU" : "CPU", + "Resource usage" : "Utilisation des ressources", + "Shares" : "Partages", + "Users:" : "Utilisateurs :", + "Groups:" : "Groupes :", + "Links:" : "Liens :", + "Emails:" : "E-mails :", + "Federated sent:" : "Offre de fédération envoyée :", + "Federated received:" : "Offre de fédération reçue :", + "Talk conversations:" : "Conversations Talk :", + "Average" : "Moyenne", + "Warning" : "Avertissement", + "Operating System:" : "Système d’exploitation :", + "CPU:" : "CPU :", + "{name} ({threads} threads)" : "{name} ({threads} threads)", + "Server time:" : "Heure du serveur :", + "Uptime:" : "Durée de fonctionnement :", + "Temperature" : "Température", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Utilisation CPU :", + "Load average: {percentage} % ({load}) last minute" : "Charge moyenne : {percentage}% ( {load}) dernière minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) la dernière minute\n{last5MinutesPercentage} % ({last5Minutes}) les 5 dernières minutes\n{last15MinutesPercentage} % ({last15Minutes}) les 15 dernières minutes", + "RAM Usage:" : "Utilisation RAM :", + "SWAP Usage:" : "Utilisation SWAP :", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM : Total : {memTotalBytes} / Utilisation actuelle : {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP : Total : {swapTotalBytes} / Utilisation actuelle : {swapUsageBytes}", + "SWAP info not available" : "Informations SWAP non disponibles", + "Copied!" : "Copié !", + "Not supported!" : "Non supporté !", + "Press ⌘-C to copy." : "Appuyer sur ⌘-C pour copier.", + "Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.", + "threads" : "fil de discussion", + "Memory:" : "Mémoire :", + "Files:" : "Fichiers :", + "Storages:" : "Stockages :", + "Free Space:" : "Espace libre :", + "Hostname:" : "Nom d'hôte :", + "Gateway:" : "Passerelle :", + "%s%% of all users" : "%s%% pour tous les utilisateurs", + "Memory limit:" : "Limite de mémoire :", + "MB" : "Mo", + "OPcache Revalidate Frequency:" : "Fréquence de revalidation de l'OPcache :", "External monitoring tool" : "Outil de surveillance externe", "Use this end point to connect an external monitoring tool:" : "Utiliser ce point de terminaison pour connecter un outil de surveillance externe :", "Copy" : "Copier", - "Output in JSON" : "Sortie en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Ignorer la section des applications (y compris la section des applications enverra une demande externe à l'App Store)", - "Skip server update" : "Ignorer la mise à jour du serveur", "To use an access token, please generate one then set it using the following command:" : "Pour utiliser un jeton d'accès, veuillez en générer un puis le définir à l'aide de la commande suivante :", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Puis transmettez le jeton avec l’entête « NC-Token » lorsque vous appelez l’URL.", - "Unknown Processor" : "Processeur inconnu" + "%1$s (%2$d threads)" : "%1$s (%2$d threads)", + "DNS:" : "DNS :" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/fr.json b/l10n/fr.json index e32eba94..60213548 100644 --- a/l10n/fr.json +++ b/l10n/fr.json @@ -1,76 +1,113 @@ { "translations": { - "CPU info not available" : "Information CPU non disponible", - "CPU Usage:" : "Usage CPU:", - "Load average: {percentage} % ({load}) last minute" : "Moyenne de la charge : {percentage}% ( {load}) dernière minute", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) dernière Minute\n{last5MinutesPercentage} % ({last5Minutes}) 5 dernières Minutes\n{last15MinutesPercentage} % ({last15Minutes}) 15 dernières Minutes", - "RAM Usage:" : "Usage RAM:", - "SWAP Usage:" : "Usage SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM : Total : {memTotalBytes}/Utilisation actuelle : {memUsageBytes}", - "RAM info not available" : "Informations sur la RAM non disponibles", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP : Total : {swapTotalBytes}/Utilisation actuelle : {swapUsageBytes}", - "SWAP info not available" : "L'information SWAP n'est pas disponible", - "Copied!" : "Copié !", - "Not supported!" : "Non supporté !", - "Press ⌘-C to copy." : "Pressez ⌘-C pour copier.", - "Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.", "System" : "Système", + "Unknown" : "Inconnu", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d jours, %2$d heures, %3$d minutes, %4$d secondes", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d heures, %2$d minutes, %3$d secondes", "Monitoring" : "Surveillance", "Monitoring app with useful server information" : "Application de surveillance avec les informations utiles du serveur", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fournit des informations utiles sur le serveur, telles que la charge du processeur, l'utilisation de la RAM, l'utilisation du disque, le nombre d'utilisateurs, etc.", - "Operating System:" : "Système d’exploitation :", - "CPU:" : "CPU :", - "threads" : "fil de discussion", - "Memory:" : "Mémoire :", - "Server time:" : "Heure du serveur :", - "Uptime:" : "Durée de fonctionnement :", - "Temperature" : "Température", + "{0}% of all users" : "{0}% de tous les utilisateurs ", + "Active users" : "Utilisateurs actifs", + "Last hour" : "Dernière heure", + "Last 24 Hours" : "Dernières 24 heures", + "Last 7 Days" : "7 derniers jours", + "Last 30 Days" : "30 derniers jours", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (non recommandé)", + "Background jobs" : "Tâches d'arrière-plan", + "Mode" : "Mode", + "Last run" : "Dernière exécution", + "Never" : "Jamais", + "No background job has run yet." : "Aucune tâche d'arrière-plan n'a été exécutée pour le moment.", + "Slowest jobs" : "Tâches les plus lentes", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Les statistiques sur les tâches lentes ne sont pas disponibles pour le moment. Elles sont collectées par une tâche en arrière-plan et apparaîtront après la prochaine exécution de celle-ci.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Derniers échecs (%n dernier jour)","Derniers échecs (%n derniers jours)","Derniers échecs (%n derniers jours)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Aucune tâche d'arrière-plan n'a échoué au cours du %n dernier jour.","Aucune tâche d'arrière-plan n'a échoué au cours des %n derniers jours.","Aucune tâche d'arrière-plan n'a échoué au cours des %n derniers jours."], "Load" : "Charge", - "Memory" : "Mémoire", + "CPU info not available" : "Informations CPU non disponibles", + "Current usage" : "Utilisation actuelle", + "Threads" : "Fils de discussion", + "Load average" : "Moyenne de la charge système", + "Database" : "Base de données", + "Type:" : "Type :", + "Version:" : "Version :", + "Size:" : "Taille :", + "{used} of {total} used" : "{used} de {total} utilisé", + "Used" : "Utilisé", + "Available" : "Disponible", "Disk" : "Disque", + "Files" : "Fichiers", + "Storages" : "Stockages", + "Free space" : "Espace libre", "Mount:" : "Montage :", "Filesystem:" : "Système de fichiers :", - "Size:" : "Taille :", "Available:" : "Disponible :", "Used:" : "Utilisé :", - "Files:" : "Fichiers :", - "Storages:" : "Stockages :", - "Free Space:" : "Espace libre :", + "Status" : "Statut", + "Started" : "Démarré", + "Duration" : "Durée", + "Server ID" : "ID du serveur", + "Job" : "Travail", + "When" : "Quand", + "Details" : "Détails", + "Succeeded" : "Succès", + "Failed" : "Échec", + "Running" : "Exécution", + "RAM usage" : "Utilisation RAM", + "Memory" : "Mémoire", + "RAM info not available" : "Informations RAM non disponibles", + "Total" : "Total", + "External monitoring API" : "API de surveillance externe", + "Endpoint URL" : "URL du point de terminaison", + "Configuration" : "Configuration", + "Output in JSON" : "Sortie en JSON", + "Including the apps section sends an external request to the app store" : "Inclure la section des applications envoie une requête externe vers l'App Store", + "Skip server update" : "Ignorer la mise à jour du serveur", + "Authentication" : "Authentification", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Ce jeton a été généré dans votre navigateur et n'est pas enregistré tant que vous n'avez pas exécuté la commande ci-dessous. Envoyez-le dans l'entête {header} avec chaque requête.", + "Command to store the token" : "Commande pour enregistrer le jeton", + "Request header" : "Entête de requête", "Network" : "Réseau", - "Hostname:" : "Nom d'hôte :", - "Gateway:" : "Passerelle :", + "Hostname" : "Nom de l’hôte", + "Gateway" : "Passerelle", + "DNS" : "DNS", "Status:" : "État :", "Speed:" : "Vitesse :", "Duplex:" : "Duplex :", "MAC:" : "MAC :", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Utilisateurs actifs", - "Last hour" : "Dernière heure", - "%s%% of all users" : "%s%% pour tous les utilisateurs", - "Last 24 Hours" : "Dernières 24 heures", - "Last 7 Days" : "7 derniers jours", - "Last 30 Days" : "30 derniers jours", - "Shares" : "Partages", - "Users:" : "Utilisateurs :", - "Groups:" : "Groupes :", - "Links:" : "Liens :", - "Emails:" : "E-mails :", - "Federated sent:" : "Offre de fédération envoyée :", - "Federated received:" : "Offre de fédération reçue :", - "Talk conversations:" : "Conversations Talk :", + "OPcache is not loaded." : "OPcache n'est pas chargé.", + "OPcache is disabled." : "OPcache est désactivé.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud n'a pas la permission de lire le statut d'OPcache (« opcache.restrict_api »).", + "OPcache status is unavailable." : "Le statut d'OPcache n'est pas disponible.", + "{used} of {total}" : "{used} sur {total}", + "Keys" : "Clés", + "{used} of {max}" : "{used} sur {max}", + "Disabled" : "Désactivé", + "OPcache" : "OPcache", + "Hit rate" : "Taux de réussite", + "Cached scripts" : "Scripts mis en cache", + "Revalidate frequency:" : "Fréquence de revalidation :", + "seconds" : "secondes", + "Yes" : "Oui", + "No" : "Non", + "Last restart:" : "Dernier redémarrage :", + "PHP extensions" : "Extensions PHP", + "Extension" : "Extension", + "Unable to list extensions" : "Impossible de lister les extensions", "PHP" : "PHP", - "Version:" : "Version :", - "Memory limit:" : "Limite de mémoire :", + "Version" : "Version", + "Memory limit" : "Limite de mémoire", "Max execution time:" : "Temps d’exécution maximal :", "Upload max size:" : "Taille de téléversement maximale :", - "OPcache Revalidate Frequency:" : "Fréquence de revalidation de l'OPcache :", "Extensions:" : "Extensions :", - "Unable to list extensions" : "Impossible de lister les extensions", + "PHP Info:" : "PHP Info :", "Show phpinfo" : "Afficher phpinfo", "FPM worker pool" : "pool du worker FPM", "Pool name:" : "Nom du pool :", "Pool type:" : "Type de pool :", - "Start time:" : "Horaire de démarrage :", + "Start time:" : "Heure de début :", "Accepted connections:" : "Connexions acceptées :", "Total processes:" : "Nombre total de processus :", "Active processes:" : "Processus actifs :", @@ -80,16 +117,56 @@ "Max listen queue:" : "File d'attente d'écoute maximale :", "Max active processes:" : "Nombre maximal de processus actifs :", "Max children reached:" : "Nombre maximal d'enfants atteint :", - "Database" : "Base de données", - "Type:" : "Type :", + "CPU" : "CPU", + "Resource usage" : "Utilisation des ressources", + "Shares" : "Partages", + "Users:" : "Utilisateurs :", + "Groups:" : "Groupes :", + "Links:" : "Liens :", + "Emails:" : "E-mails :", + "Federated sent:" : "Offre de fédération envoyée :", + "Federated received:" : "Offre de fédération reçue :", + "Talk conversations:" : "Conversations Talk :", + "Average" : "Moyenne", + "Warning" : "Avertissement", + "Operating System:" : "Système d’exploitation :", + "CPU:" : "CPU :", + "{name} ({threads} threads)" : "{name} ({threads} threads)", + "Server time:" : "Heure du serveur :", + "Uptime:" : "Durée de fonctionnement :", + "Temperature" : "Température", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Utilisation CPU :", + "Load average: {percentage} % ({load}) last minute" : "Charge moyenne : {percentage}% ( {load}) dernière minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) la dernière minute\n{last5MinutesPercentage} % ({last5Minutes}) les 5 dernières minutes\n{last15MinutesPercentage} % ({last15Minutes}) les 15 dernières minutes", + "RAM Usage:" : "Utilisation RAM :", + "SWAP Usage:" : "Utilisation SWAP :", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM : Total : {memTotalBytes} / Utilisation actuelle : {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP : Total : {swapTotalBytes} / Utilisation actuelle : {swapUsageBytes}", + "SWAP info not available" : "Informations SWAP non disponibles", + "Copied!" : "Copié !", + "Not supported!" : "Non supporté !", + "Press ⌘-C to copy." : "Appuyer sur ⌘-C pour copier.", + "Press Ctrl-C to copy." : "Appuyez sur Ctrl-C pour copier.", + "threads" : "fil de discussion", + "Memory:" : "Mémoire :", + "Files:" : "Fichiers :", + "Storages:" : "Stockages :", + "Free Space:" : "Espace libre :", + "Hostname:" : "Nom d'hôte :", + "Gateway:" : "Passerelle :", + "%s%% of all users" : "%s%% pour tous les utilisateurs", + "Memory limit:" : "Limite de mémoire :", + "MB" : "Mo", + "OPcache Revalidate Frequency:" : "Fréquence de revalidation de l'OPcache :", "External monitoring tool" : "Outil de surveillance externe", "Use this end point to connect an external monitoring tool:" : "Utiliser ce point de terminaison pour connecter un outil de surveillance externe :", "Copy" : "Copier", - "Output in JSON" : "Sortie en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Ignorer la section des applications (y compris la section des applications enverra une demande externe à l'App Store)", - "Skip server update" : "Ignorer la mise à jour du serveur", "To use an access token, please generate one then set it using the following command:" : "Pour utiliser un jeton d'accès, veuillez en générer un puis le définir à l'aide de la commande suivante :", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Puis transmettez le jeton avec l’entête « NC-Token » lorsque vous appelez l’URL.", - "Unknown Processor" : "Processeur inconnu" + "%1$s (%2$d threads)" : "%1$s (%2$d threads)", + "DNS:" : "DNS :" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ga.js b/l10n/ga.js index 2e468aed..5c4e0986 100644 --- a/l10n/ga.js +++ b/l10n/ga.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Níl eolas LAP ar fáil", - "CPU Usage:" : "Úsáid LAP:", - "Load average: {percentage} % ({load}) last minute" : "Meán luchtaithe: {percentage}%({load}) nóiméad dheireanach", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) Nóiméad deireanach\n{last5MinutesPercentage} % ({last5Minutes}) 5 Nóiméad deireanach\n{last15MinutesPercentage} % ({last15Minutes}) 15 Nóiméad deireanach", - "RAM Usage:" : "Úsáid RAM:", - "SWAP Usage:" : "Úsáid SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iomlán: {memTotalBytes}/Úsáid reatha: {memUsageBytes}", - "RAM info not available" : "Níl eolas RAM ar fáil", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Iomlán: {swapTotalBytes}/Úsáid reatha: {swapUsageBytes}", - "SWAP info not available" : "Níl eolas SWAP ar fáil", - "Copied!" : "Cóipeáladh!", - "Not supported!" : "Gan tacaíocht!", - "Press ⌘-C to copy." : "Brúigh ⌘-C chun cóip a dhéanamh.", - "Press Ctrl-C to copy." : "Brúigh Ctrl-C chun cóip a dhéanamh.", "System" : "Córas", + "Unknown" : "Anaithnid", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d lá, %2$d uair an chloig, %3$d nóiméad, %4$d soicind", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d uair an chloig, %2$d nóiméad, %3$d soicind", "Monitoring" : "Monatóireacht", "Monitoring app with useful server information" : "Aip monatóireachta le faisnéis úsáideach freastalaí", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Soláthraíonn sé faisnéis úsáideach freastalaí, mar shampla ualach LAP, úsáid RAM, úsáid diosca, líon na n-úsáideoirí, etc.", - "Operating System:" : "Córas oibriucháin:", - "CPU:" : "LAP:", - "threads" : "snáitheanna", - "Memory:" : "Cuimhne:", - "Server time:" : "Am freastalaí:", - "Uptime:" : "Aga fónaimh:", - "Temperature" : "Teocht", + "{0}% of all users" : "{0}% de na húsáideoirí uile", + "Active users" : "Úsáideoirí gníomhacha", + "Last hour" : "Uair dheireanach", + "Last 24 Hours" : "24 uair an chloig caite", + "Last 7 Days" : "7 Lá deiridh", + "Last 30 Days" : "30 Lá deiridh", + "System cron" : "Cron an chórais", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (ní mholtar)", + "Background jobs" : "Cúlra poist", + "Mode" : "Mód", + "Last run" : "Rith dheireanach", + "Never" : "Riamh", + "Latest runs" : "Rith is déanaí", + "No background job has run yet." : "Níl aon phost cúlra rite fós.", + "Slowest jobs" : "Na poist is moille", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Níl na staitisticí maidir le poist mhall ar fáil go fóill. Bailítear iad ag post cúlra agus feictear iad tar éis a chéad rith eile.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Teipeanna is déanaí (an %n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas."], "Load" : "Luchtaigh", - "Memory" : "Cuimhne", + "CPU info not available" : "Níl eolas LAP ar fáil", + "Current usage" : "Úsáid reatha", + "Threads" : "Snáitheanna", + "Load average" : "Meánluchtú", + "Database" : "Bunachar Sonraí", + "Type:" : "Cineál:", + "Version:" : "Leagan:", + "Size:" : "Méid:", + "{used} of {total} used" : "{used} de {total} úsáidte", + "Used" : "Úsáidte", + "Available" : "Ar fáil", "Disk" : "Diosca", + "Files" : "Comhaid", + "Storages" : "Stórálacha", + "Free space" : "Spás saor", "Mount:" : "Gléasta:", "Filesystem:" : "Córas comhaid:", - "Size:" : "Méid:", "Available:" : "Ar fáil:", "Used:" : "Úsáidte:", - "Files:" : "Comhaid:", - "Storages:" : "Stórais:", - "Free Space:" : "Spás saor in aisce:", + "Class" : "Rang", + "Status" : "Stádas", + "Started" : "Thosaigh", + "Duration" : "Fad", + "Peak memory" : "Cuimhne buaic", + "Run ID" : "Aitheantas Rith", + "Server ID" : "Aitheantas Freastalaí", + "Process ID" : "Aitheantas Próisis", + "Details about {job} from {time}" : "Sonraí faoi {job} ó {time}", + "Job" : "Post", + "When" : "Cathain", + "Details" : "Sonraí", + "Succeeded" : "D'éirigh", + "Failed" : "Theip", + "Crashed" : "Tuairteáilte", + "Running" : "Ag rith", + "RAM usage" : "Úsáid RAM", + "Swap usage" : "Úsáid malartaithe", + "Memory" : "Cuimhne", + "RAM info not available" : "Níl eolas RAM ar fáil", + "Total" : "Iomlán", + "Swap used" : "Malartú a úsáideadh", + "External monitoring API" : "API monatóireachta seachtrach", + "Endpoint URL" : "URL críochphointe", + "Configuration" : "Cumraíocht", + "Output in JSON" : "Aschur in JSON", + "Skip apps section" : "Scipeáil an chuid aipeanna", + "Including the apps section sends an external request to the app store" : "Seoltar iarratas seachtrach chuig an siopa aipeanna trí chuid na n-aipeanna a chur san áireamh", + "Skip server update" : "Léim ar nuashonrú an fhreastalaí", + "Authentication" : "Fíordheimhniú", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Gineadh an comhartha seo i do bhrabhsálaí agus ní stóráiltear é go dtí go ritheann tú an t-ordú thíos. Seol é sa cheanntásc {header} le gach iarratas.", + "Command to store the token" : "Ordú chun an comhartha a stóráil", + "Request header" : "Ceanntásc an iarratais", "Network" : "Líonra", - "Hostname:" : "Ainm an ósta:", - "Gateway:" : "Geata:", + "Hostname" : "Óstainm", + "Gateway" : "Geata", + "DNS" : "DNS", "Status:" : "Stádas:", "Speed:" : "Luas:", "Duplex:" : "Déphléacsacha:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Úsáideoirí gníomhacha", - "Last hour" : "Uair dheireanach", - "%s%% of all users" : "%s%% de na húsáideoirí go léir", - "Last 24 Hours" : "24 uair an chloig caite", - "Last 7 Days" : "7 Lá deiridh", - "Last 30 Days" : "30 Lá deiridh", - "Shares" : "Scaireanna", - "Users:" : "Úsáideoirí:", - "Groups:" : "Grúpaí:", - "Links:" : "Naisc:", - "Emails:" : "Ríomhphoist:", - "Federated sent:" : "Seolta Cónaidhme:", - "Federated received:" : "Fuair ​​​​cónaidhm:", - "Talk conversations:" : "Comhráite:", + "OPcache is not loaded." : "Níl an OPcache luchtaithe.", + "OPcache is disabled." : "Tá OPcache díchumasaithe.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Níl cead ag Nextcloud stádas an OPcache (\"opcache.restrict_api\") a léamh.", + "OPcache status is unavailable." : "Níl stádas OPcache ar fáil.", + "{used} of {total}" : "{used} de {total}", + "Interned strings" : "Teaghráin inmheánacha", + "Keys" : "Eochracha", + "{used} of {max}" : "{used} de {max}", + "Disabled" : "Faoi mhíchumas", + "Enabled, {used} of {total} buffer used" : "Cumasaithe, {used} de {total} maolán úsáidte", + "OPcache" : "OPcache", + "Hit rate" : "Ráta buailte", + "Cached scripts" : "Scripteanna taisceáilte", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Déanann na huimhreacha seo cur síos ar an bpróiseas PHP atá ag láimhseáil an iarratais seo. Coinníonn linnte FPM eile nó an CLI a n-OPcache féin.", + "Revalidate frequency:" : "Athbhailíochtú minicíochta:", + "seconds" : "soicind", + "Validate timestamps:" : "Bailíochtú stampaí ama:", + "Yes" : "Tá", + "No" : "Níl", + "OOM restarts:" : "Atosaíonn OOM:", + "Last restart:" : "Atosú deireanach:", + "JIT:" : "JIT:", + "PHP extensions" : "Síntí PHP", + "Extension" : "Síneadh", + "Unable to list extensions" : "Ní féidir na síntí a liostú", + "{count} loaded" : "{count} luchtaithe", "PHP" : "PHP", - "Version:" : "Leagan:", - "Memory limit:" : "Teorainn chuimhne:", + "Version" : "Leagan", + "Memory limit" : "Teorainn chuimhne", "Max execution time:" : "Uasmhéid ama rite:", "Upload max size:" : "Uaslódáil méid uasta:", - "OPcache Revalidate Frequency:" : "Minicíocht Athbhailíochtaithe OPcache:", + "Post max size:" : "Uasmhéid an phoist:", + "SAPI:" : "SAPI:", "Extensions:" : "Eisínteachtaí:", - "Unable to list extensions" : "Ní féidir na síntí a liostú", + "PHP Info:" : "Eolas PHP:", "Show phpinfo" : "Taispeáin phpinfo", "FPM worker pool" : "Linn snámha oibrithe FPM", "Pool name:" : "Ainm na stór:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "Scuaine éisteachta uasta:", "Max active processes:" : "Próisis uasta gníomhacha:", "Max children reached:" : "Shroich max leanaí:", - "Database" : "Bunachar Sonraí", - "Type:" : "Cineál:", + "CPU" : "LAP", + "Swap" : "Malartú", + "Resource usage" : "Úsáid acmhainní", + "Shares" : "Scaireanna", + "Users:" : "Úsáideoirí:", + "Groups:" : "Grúpaí:", + "Links:" : "Naisc:", + "Emails:" : "Ríomhphoist:", + "Federated sent:" : "Seolta Cónaidhme:", + "Federated received:" : "Fuair ​​​​cónaidhm:", + "Talk conversations:" : "Comhráite:", + "Runs" : "Rith", + "Average" : "Meán", + "Longest" : "Is faide", + "Warning" : "Rabhadh", + "Critical" : "Criticiúil", + "Operating System:" : "Córas oibriucháin:", + "CPU:" : "LAP:", + "{name} ({threads} threads)" : "{name} ({threads} snáitheanna)", + "Server time:" : "Am freastalaí:", + "Uptime:" : "Aga fónaimh:", + "Temperature" : "Teocht", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Úsáid LAP:", + "Load average: {percentage} % ({load}) last minute" : "Meán luchtaithe: {percentage}%({load}) nóiméad dheireanach", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) Nóiméad deireanach\n{last5MinutesPercentage} % ({last5Minutes}) 5 Nóiméad deireanach\n{last15MinutesPercentage} % ({last15Minutes}) 15 Nóiméad deireanach", + "RAM Usage:" : "Úsáid RAM:", + "SWAP Usage:" : "Úsáid SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iomlán: {memTotalBytes}/Úsáid reatha: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Iomlán: {swapTotalBytes}/Úsáid reatha: {swapUsageBytes}", + "SWAP info not available" : "Níl eolas SWAP ar fáil", + "Copied!" : "Cóipeáladh!", + "Not supported!" : "Gan tacaíocht!", + "Press ⌘-C to copy." : "Brúigh ⌘-C chun cóip a dhéanamh.", + "Press Ctrl-C to copy." : "Brúigh Ctrl-C chun cóip a dhéanamh.", + "threads" : "snáitheanna", + "Memory:" : "Cuimhne:", + "Files:" : "Comhaid:", + "Storages:" : "Stórais:", + "Free Space:" : "Spás saor in aisce:", + "Hostname:" : "Ainm an ósta:", + "Gateway:" : "Geata:", + "%s%% of all users" : "%s%% de na húsáideoirí go léir", + "Memory limit:" : "Teorainn chuimhne:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Minicíocht Athbhailíochtaithe OPcache:", "External monitoring tool" : "Uirlis sheachtrach monatóireachta", "Use this end point to connect an external monitoring tool:" : "Úsáid an pointe deiridh seo chun uirlis sheachtrach monatóireachta a nascadh:", "Copy" : "Cóipeáil", - "Output in JSON" : "Aschur in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Scipeáil ar an rannán aipeanna (seolfar iarratas seachtrach chuig an siopa aipeanna san áireamh)", - "Skip server update" : "Léim ar nuashonrú an fhreastalaí", "To use an access token, please generate one then set it using the following command:" : "Chun comhartha rochtana a úsáid, giniúint ceann agus ansin socraigh é ag baint úsáide as an ordú seo a leanas le do thoil:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ansin cuir an comhartha leis an gceanntásc \"NC-Token\" agus an URL thuas á cheistiú.", - "Unknown Processor" : "Próiseálaí Anaithnid" + "%1$s (%2$d threads)" : "%1$s (%2$d snáitheanna)", + "DNS:" : "DNS:" }, "nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);"); diff --git a/l10n/ga.json b/l10n/ga.json index 85d19cc6..6f5b2eed 100644 --- a/l10n/ga.json +++ b/l10n/ga.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "Níl eolas LAP ar fáil", - "CPU Usage:" : "Úsáid LAP:", - "Load average: {percentage} % ({load}) last minute" : "Meán luchtaithe: {percentage}%({load}) nóiméad dheireanach", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) Nóiméad deireanach\n{last5MinutesPercentage} % ({last5Minutes}) 5 Nóiméad deireanach\n{last15MinutesPercentage} % ({last15Minutes}) 15 Nóiméad deireanach", - "RAM Usage:" : "Úsáid RAM:", - "SWAP Usage:" : "Úsáid SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iomlán: {memTotalBytes}/Úsáid reatha: {memUsageBytes}", - "RAM info not available" : "Níl eolas RAM ar fáil", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Iomlán: {swapTotalBytes}/Úsáid reatha: {swapUsageBytes}", - "SWAP info not available" : "Níl eolas SWAP ar fáil", - "Copied!" : "Cóipeáladh!", - "Not supported!" : "Gan tacaíocht!", - "Press ⌘-C to copy." : "Brúigh ⌘-C chun cóip a dhéanamh.", - "Press Ctrl-C to copy." : "Brúigh Ctrl-C chun cóip a dhéanamh.", "System" : "Córas", + "Unknown" : "Anaithnid", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d lá, %2$d uair an chloig, %3$d nóiméad, %4$d soicind", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d uair an chloig, %2$d nóiméad, %3$d soicind", "Monitoring" : "Monatóireacht", "Monitoring app with useful server information" : "Aip monatóireachta le faisnéis úsáideach freastalaí", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Soláthraíonn sé faisnéis úsáideach freastalaí, mar shampla ualach LAP, úsáid RAM, úsáid diosca, líon na n-úsáideoirí, etc.", - "Operating System:" : "Córas oibriucháin:", - "CPU:" : "LAP:", - "threads" : "snáitheanna", - "Memory:" : "Cuimhne:", - "Server time:" : "Am freastalaí:", - "Uptime:" : "Aga fónaimh:", - "Temperature" : "Teocht", + "{0}% of all users" : "{0}% de na húsáideoirí uile", + "Active users" : "Úsáideoirí gníomhacha", + "Last hour" : "Uair dheireanach", + "Last 24 Hours" : "24 uair an chloig caite", + "Last 7 Days" : "7 Lá deiridh", + "Last 30 Days" : "30 Lá deiridh", + "System cron" : "Cron an chórais", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (ní mholtar)", + "Background jobs" : "Cúlra poist", + "Mode" : "Mód", + "Last run" : "Rith dheireanach", + "Never" : "Riamh", + "Latest runs" : "Rith is déanaí", + "No background job has run yet." : "Níl aon phost cúlra rite fós.", + "Slowest jobs" : "Na poist is moille", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Níl na staitisticí maidir le poist mhall ar fáil go fóill. Bailítear iad ag post cúlra agus feictear iad tar éis a chéad rith eile.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Teipeanna is déanaí (an %n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)","Teipeanna is déanaí (%n lá seo caite)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas.","Níor theip ar aon phost cúlra le %n lá anuas."], "Load" : "Luchtaigh", - "Memory" : "Cuimhne", + "CPU info not available" : "Níl eolas LAP ar fáil", + "Current usage" : "Úsáid reatha", + "Threads" : "Snáitheanna", + "Load average" : "Meánluchtú", + "Database" : "Bunachar Sonraí", + "Type:" : "Cineál:", + "Version:" : "Leagan:", + "Size:" : "Méid:", + "{used} of {total} used" : "{used} de {total} úsáidte", + "Used" : "Úsáidte", + "Available" : "Ar fáil", "Disk" : "Diosca", + "Files" : "Comhaid", + "Storages" : "Stórálacha", + "Free space" : "Spás saor", "Mount:" : "Gléasta:", "Filesystem:" : "Córas comhaid:", - "Size:" : "Méid:", "Available:" : "Ar fáil:", "Used:" : "Úsáidte:", - "Files:" : "Comhaid:", - "Storages:" : "Stórais:", - "Free Space:" : "Spás saor in aisce:", + "Class" : "Rang", + "Status" : "Stádas", + "Started" : "Thosaigh", + "Duration" : "Fad", + "Peak memory" : "Cuimhne buaic", + "Run ID" : "Aitheantas Rith", + "Server ID" : "Aitheantas Freastalaí", + "Process ID" : "Aitheantas Próisis", + "Details about {job} from {time}" : "Sonraí faoi {job} ó {time}", + "Job" : "Post", + "When" : "Cathain", + "Details" : "Sonraí", + "Succeeded" : "D'éirigh", + "Failed" : "Theip", + "Crashed" : "Tuairteáilte", + "Running" : "Ag rith", + "RAM usage" : "Úsáid RAM", + "Swap usage" : "Úsáid malartaithe", + "Memory" : "Cuimhne", + "RAM info not available" : "Níl eolas RAM ar fáil", + "Total" : "Iomlán", + "Swap used" : "Malartú a úsáideadh", + "External monitoring API" : "API monatóireachta seachtrach", + "Endpoint URL" : "URL críochphointe", + "Configuration" : "Cumraíocht", + "Output in JSON" : "Aschur in JSON", + "Skip apps section" : "Scipeáil an chuid aipeanna", + "Including the apps section sends an external request to the app store" : "Seoltar iarratas seachtrach chuig an siopa aipeanna trí chuid na n-aipeanna a chur san áireamh", + "Skip server update" : "Léim ar nuashonrú an fhreastalaí", + "Authentication" : "Fíordheimhniú", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Gineadh an comhartha seo i do bhrabhsálaí agus ní stóráiltear é go dtí go ritheann tú an t-ordú thíos. Seol é sa cheanntásc {header} le gach iarratas.", + "Command to store the token" : "Ordú chun an comhartha a stóráil", + "Request header" : "Ceanntásc an iarratais", "Network" : "Líonra", - "Hostname:" : "Ainm an ósta:", - "Gateway:" : "Geata:", + "Hostname" : "Óstainm", + "Gateway" : "Geata", + "DNS" : "DNS", "Status:" : "Stádas:", "Speed:" : "Luas:", "Duplex:" : "Déphléacsacha:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Úsáideoirí gníomhacha", - "Last hour" : "Uair dheireanach", - "%s%% of all users" : "%s%% de na húsáideoirí go léir", - "Last 24 Hours" : "24 uair an chloig caite", - "Last 7 Days" : "7 Lá deiridh", - "Last 30 Days" : "30 Lá deiridh", - "Shares" : "Scaireanna", - "Users:" : "Úsáideoirí:", - "Groups:" : "Grúpaí:", - "Links:" : "Naisc:", - "Emails:" : "Ríomhphoist:", - "Federated sent:" : "Seolta Cónaidhme:", - "Federated received:" : "Fuair ​​​​cónaidhm:", - "Talk conversations:" : "Comhráite:", + "OPcache is not loaded." : "Níl an OPcache luchtaithe.", + "OPcache is disabled." : "Tá OPcache díchumasaithe.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Níl cead ag Nextcloud stádas an OPcache (\"opcache.restrict_api\") a léamh.", + "OPcache status is unavailable." : "Níl stádas OPcache ar fáil.", + "{used} of {total}" : "{used} de {total}", + "Interned strings" : "Teaghráin inmheánacha", + "Keys" : "Eochracha", + "{used} of {max}" : "{used} de {max}", + "Disabled" : "Faoi mhíchumas", + "Enabled, {used} of {total} buffer used" : "Cumasaithe, {used} de {total} maolán úsáidte", + "OPcache" : "OPcache", + "Hit rate" : "Ráta buailte", + "Cached scripts" : "Scripteanna taisceáilte", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Déanann na huimhreacha seo cur síos ar an bpróiseas PHP atá ag láimhseáil an iarratais seo. Coinníonn linnte FPM eile nó an CLI a n-OPcache féin.", + "Revalidate frequency:" : "Athbhailíochtú minicíochta:", + "seconds" : "soicind", + "Validate timestamps:" : "Bailíochtú stampaí ama:", + "Yes" : "Tá", + "No" : "Níl", + "OOM restarts:" : "Atosaíonn OOM:", + "Last restart:" : "Atosú deireanach:", + "JIT:" : "JIT:", + "PHP extensions" : "Síntí PHP", + "Extension" : "Síneadh", + "Unable to list extensions" : "Ní féidir na síntí a liostú", + "{count} loaded" : "{count} luchtaithe", "PHP" : "PHP", - "Version:" : "Leagan:", - "Memory limit:" : "Teorainn chuimhne:", + "Version" : "Leagan", + "Memory limit" : "Teorainn chuimhne", "Max execution time:" : "Uasmhéid ama rite:", "Upload max size:" : "Uaslódáil méid uasta:", - "OPcache Revalidate Frequency:" : "Minicíocht Athbhailíochtaithe OPcache:", + "Post max size:" : "Uasmhéid an phoist:", + "SAPI:" : "SAPI:", "Extensions:" : "Eisínteachtaí:", - "Unable to list extensions" : "Ní féidir na síntí a liostú", + "PHP Info:" : "Eolas PHP:", "Show phpinfo" : "Taispeáin phpinfo", "FPM worker pool" : "Linn snámha oibrithe FPM", "Pool name:" : "Ainm na stór:", @@ -80,16 +137,60 @@ "Max listen queue:" : "Scuaine éisteachta uasta:", "Max active processes:" : "Próisis uasta gníomhacha:", "Max children reached:" : "Shroich max leanaí:", - "Database" : "Bunachar Sonraí", - "Type:" : "Cineál:", + "CPU" : "LAP", + "Swap" : "Malartú", + "Resource usage" : "Úsáid acmhainní", + "Shares" : "Scaireanna", + "Users:" : "Úsáideoirí:", + "Groups:" : "Grúpaí:", + "Links:" : "Naisc:", + "Emails:" : "Ríomhphoist:", + "Federated sent:" : "Seolta Cónaidhme:", + "Federated received:" : "Fuair ​​​​cónaidhm:", + "Talk conversations:" : "Comhráite:", + "Runs" : "Rith", + "Average" : "Meán", + "Longest" : "Is faide", + "Warning" : "Rabhadh", + "Critical" : "Criticiúil", + "Operating System:" : "Córas oibriucháin:", + "CPU:" : "LAP:", + "{name} ({threads} threads)" : "{name} ({threads} snáitheanna)", + "Server time:" : "Am freastalaí:", + "Uptime:" : "Aga fónaimh:", + "Temperature" : "Teocht", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Úsáid LAP:", + "Load average: {percentage} % ({load}) last minute" : "Meán luchtaithe: {percentage}%({load}) nóiméad dheireanach", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) Nóiméad deireanach\n{last5MinutesPercentage} % ({last5Minutes}) 5 Nóiméad deireanach\n{last15MinutesPercentage} % ({last15Minutes}) 15 Nóiméad deireanach", + "RAM Usage:" : "Úsáid RAM:", + "SWAP Usage:" : "Úsáid SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iomlán: {memTotalBytes}/Úsáid reatha: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Iomlán: {swapTotalBytes}/Úsáid reatha: {swapUsageBytes}", + "SWAP info not available" : "Níl eolas SWAP ar fáil", + "Copied!" : "Cóipeáladh!", + "Not supported!" : "Gan tacaíocht!", + "Press ⌘-C to copy." : "Brúigh ⌘-C chun cóip a dhéanamh.", + "Press Ctrl-C to copy." : "Brúigh Ctrl-C chun cóip a dhéanamh.", + "threads" : "snáitheanna", + "Memory:" : "Cuimhne:", + "Files:" : "Comhaid:", + "Storages:" : "Stórais:", + "Free Space:" : "Spás saor in aisce:", + "Hostname:" : "Ainm an ósta:", + "Gateway:" : "Geata:", + "%s%% of all users" : "%s%% de na húsáideoirí go léir", + "Memory limit:" : "Teorainn chuimhne:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Minicíocht Athbhailíochtaithe OPcache:", "External monitoring tool" : "Uirlis sheachtrach monatóireachta", "Use this end point to connect an external monitoring tool:" : "Úsáid an pointe deiridh seo chun uirlis sheachtrach monatóireachta a nascadh:", "Copy" : "Cóipeáil", - "Output in JSON" : "Aschur in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Scipeáil ar an rannán aipeanna (seolfar iarratas seachtrach chuig an siopa aipeanna san áireamh)", - "Skip server update" : "Léim ar nuashonrú an fhreastalaí", "To use an access token, please generate one then set it using the following command:" : "Chun comhartha rochtana a úsáid, giniúint ceann agus ansin socraigh é ag baint úsáide as an ordú seo a leanas le do thoil:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ansin cuir an comhartha leis an gceanntásc \"NC-Token\" agus an URL thuas á cheistiú.", - "Unknown Processor" : "Próiseálaí Anaithnid" + "%1$s (%2$d threads)" : "%1$s (%2$d snáitheanna)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=5; plural=(n==1 ? 0 : n==2 ? 1 : n<7 ? 2 : n<11 ? 3 : 4);" } \ No newline at end of file diff --git a/l10n/gl.js b/l10n/gl.js index cb5f48a7..1f5b691d 100644 --- a/l10n/gl.js +++ b/l10n/gl.js @@ -1,75 +1,82 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "A información da CPU non está dispoñíbel", - "CPU Usage:" : "Uso da CPU:", - "Load average: {percentage} % ({load}) last minute" : "Carga media: {percentage} % ({load}) último minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) último minuto\n{last5MinutesPercentage} % ({last5Minutes}) últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) últimos 15 minutos", - "RAM Usage:" : "Uso de RAM:", - "SWAP Usage:" : "Uso de SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", - "RAM info not available" : "A información de RAM non está dispoñíbel", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", - "SWAP info not available" : "A información de SWAP non está dispoñíbel", - "Copied!" : "Copiado!", - "Not supported!" : "Non admitido!", - "Press ⌘-C to copy." : "Prema ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Prema Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Descoñecido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d días, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Seguimento", "Monitoring app with useful server information" : "Aplicación de seguimento con información útil do servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece información útil do servidor, como a carga da CPU, o uso da memoria RAM, o uso do disco, o número de usuarios, etc.", - "Operating System:" : "Sistema operativo", - "CPU:" : "CPU:", - "threads" : "fíos", - "Memory:" : "Memoria:", - "Server time:" : "Hora do servidor:", - "Uptime:" : "Tempo de actividade:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Last 24 Hours" : "Últimas 24 horas", + "Last 7 Days" : "Últimos 7 días", + "Last 30 Days" : "Últimos 30 días", + "Webcron" : "Webcron", + "Background jobs" : "Traballos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "A información da CPU non está dispoñíbel", + "Current usage" : "Uso actual", + "Threads" : "Fíos", + "Load average" : "Carga media", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Used" : "Usado", + "Available" : "Dispoñíbel", "Disk" : "Disco", + "Files" : "Ficheiros", + "Storages" : "Almacenamentos", "Mount:" : "Montaxe:", "Filesystem:" : "Sistema de ficheiros:", - "Size:" : "Tamaño:", "Available:" : "Dispoñíbel", "Used:" : "Usado:", - "Files:" : "Ficheiros:", - "Storages:" : "Almacenamentos:", - "Free Space:" : "Espazo libre:", + "Status" : "Estado", + "Started" : "Iniciado", + "Duration" : "Duración", + "When" : "Cando", + "Details" : "Detalles", + "Succeeded" : "Satisfactoriamente", + "Failed" : "Fallado", + "Running" : "En execución", + "Memory" : "Memoria", + "RAM info not available" : "A información de RAM non está dispoñíbel", + "Total" : "Total", + "Configuration" : "Configuración", + "Output in JSON" : "Saída en JSON", + "Skip server update" : "Omitir actualización do servidor", + "Authentication" : "Autenticación", "Network" : "Rede", - "Hostname:" : "Nome de máquina:", - "Gateway:" : "Pasarela:", + "Hostname" : "Nome de máquina", + "Gateway" : "Pasarela", + "DNS" : "DNS", "Status:" : "Estado:", "Speed:" : "Velocidade:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", - "%s%% of all users" : "%s%% de todos os usuarios", - "Last 24 Hours" : "Últimas 24 horas", - "Last 7 Days" : "Últimos 7 días", - "Last 30 Days" : "Últimos 30 días", - "Shares" : "Comparticións", - "Users:" : "Usuarios:", - "Groups:" : "Grupos:", - "Links:" : "Ligazóns:", - "Emails:" : "Correos-e", - "Federated sent:" : "Envíos á federación:", - "Federated received:" : "Recibido da federación:", - "Talk conversations:" : "Conversas no Parladoiro:", + "Keys" : "Chaves", + "Disabled" : "Desactivado", + "seconds" : "segundos", + "Yes" : "Si", + "No" : "Non", + "PHP extensions" : "Extensións PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "Non é posíbel listar as extensións", "PHP" : "PHP", - "Version:" : "Versión:", - "Memory limit:" : "Límite de memoria:", + "Version" : "Versión", + "Memory limit" : "Límite de memoria", "Max execution time:" : "Tempo máximo de execución:", "Upload max size:" : "Tamaño máximo de envío:", - "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", "Extensions:" : "Extensións:", - "Unable to list extensions" : "Non é posíbel listar as extensións", + "PHP Info:" : "Información PHP:", "Show phpinfo" : "Amosar phpinfo", - "FPM worker pool" : "Agrupamento de traballadores FPM", + "FPM worker pool" : "Agrupamento de traballadores do servizo FPM", "Pool name:" : "Nome do agrupamento:", "Pool type:" : "Tipo de agrupamento:", "Start time:" : "Hora de comezo:", @@ -82,16 +89,52 @@ OC.L10N.register( "Max listen queue:" : "Cola máxima de escoita:", "Max active processes:" : "Máximo de procesos activos:", "Max children reached:" : "Máximo de procesos fillo acadados:", - "Database" : "Base de datos", - "Type:" : "Tipo:", + "CPU" : "CPU", + "Resource usage" : "Uso de recursos", + "Shares" : "Comparticións", + "Users:" : "Usuarios:", + "Groups:" : "Grupos:", + "Links:" : "Ligazóns:", + "Emails:" : "Correos-e", + "Federated sent:" : "Envíos á federación:", + "Federated received:" : "Recibido da federación:", + "Talk conversations:" : "Conversas no Parladoiro:", + "Average" : "Media", + "Warning" : "Advertencia", + "Operating System:" : "Sistema operativo", + "CPU:" : "CPU:", + "Server time:" : "Hora do servidor:", + "Uptime:" : "Tempo de actividade:", + "Temperature" : "Temperatura", + "CPU Usage:" : "Uso da CPU:", + "Load average: {percentage} % ({load}) last minute" : "Carga media: {percentage} % ({load}) último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) último minuto\n{last5MinutesPercentage} % ({last5Minutes}) últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", + "SWAP info not available" : "A información de SWAP non está dispoñíbel", + "Copied!" : "Copiado!", + "Not supported!" : "Non admitido!", + "Press ⌘-C to copy." : "Prema ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Prema Ctrl-C para copiar.", + "threads" : "fíos", + "Memory:" : "Memoria:", + "Files:" : "Ficheiros:", + "Storages:" : "Almacenamentos:", + "Free Space:" : "Espazo libre:", + "Hostname:" : "Nome de máquina:", + "Gateway:" : "Pasarela:", + "%s%% of all users" : "%s%% de todos os usuarios", + "Memory limit:" : "Límite de memoria:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", "External monitoring tool" : "Ferramenta externa de supervisión", "Use this end point to connect an external monitoring tool:" : "Use este punto final para conectar unha ferramenta de supervisión externa:", "Copy" : "Copiar", - "Output in JSON" : "Saída en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Omitir a sección de aplicacións (se se inclúe a sección de aplicacións, enviarase unha solicitude externa á tenda de aplicacións)", - "Skip server update" : "Omitir actualización do servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar un testemuño de acceso, xere un e configúreo usando a seguinte orde:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "A continuación, pase o testemuño coa cabeceira «NC-Token» ao consultar o URL anterior.", - "Unknown Processor" : "Procesador descoñecido" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/gl.json b/l10n/gl.json index b7d60eec..1b8a548a 100644 --- a/l10n/gl.json +++ b/l10n/gl.json @@ -1,73 +1,80 @@ { "translations": { - "CPU info not available" : "A información da CPU non está dispoñíbel", - "CPU Usage:" : "Uso da CPU:", - "Load average: {percentage} % ({load}) last minute" : "Carga media: {percentage} % ({load}) último minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) último minuto\n{last5MinutesPercentage} % ({last5Minutes}) últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) últimos 15 minutos", - "RAM Usage:" : "Uso de RAM:", - "SWAP Usage:" : "Uso de SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", - "RAM info not available" : "A información de RAM non está dispoñíbel", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", - "SWAP info not available" : "A información de SWAP non está dispoñíbel", - "Copied!" : "Copiado!", - "Not supported!" : "Non admitido!", - "Press ⌘-C to copy." : "Prema ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Prema Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Descoñecido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d días, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Seguimento", "Monitoring app with useful server information" : "Aplicación de seguimento con información útil do servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece información útil do servidor, como a carga da CPU, o uso da memoria RAM, o uso do disco, o número de usuarios, etc.", - "Operating System:" : "Sistema operativo", - "CPU:" : "CPU:", - "threads" : "fíos", - "Memory:" : "Memoria:", - "Server time:" : "Hora do servidor:", - "Uptime:" : "Tempo de actividade:", - "Temperature" : "Temperatura", + "Active users" : "Usuarios activos", + "Last hour" : "Última hora", + "Last 24 Hours" : "Últimas 24 horas", + "Last 7 Days" : "Últimos 7 días", + "Last 30 Days" : "Últimos 30 días", + "Webcron" : "Webcron", + "Background jobs" : "Traballos en segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", "Load" : "Carga", - "Memory" : "Memoria", + "CPU info not available" : "A información da CPU non está dispoñíbel", + "Current usage" : "Uso actual", + "Threads" : "Fíos", + "Load average" : "Carga media", + "Database" : "Base de datos", + "Type:" : "Tipo:", + "Version:" : "Versión:", + "Size:" : "Tamaño:", + "Used" : "Usado", + "Available" : "Dispoñíbel", "Disk" : "Disco", + "Files" : "Ficheiros", + "Storages" : "Almacenamentos", "Mount:" : "Montaxe:", "Filesystem:" : "Sistema de ficheiros:", - "Size:" : "Tamaño:", "Available:" : "Dispoñíbel", "Used:" : "Usado:", - "Files:" : "Ficheiros:", - "Storages:" : "Almacenamentos:", - "Free Space:" : "Espazo libre:", + "Status" : "Estado", + "Started" : "Iniciado", + "Duration" : "Duración", + "When" : "Cando", + "Details" : "Detalles", + "Succeeded" : "Satisfactoriamente", + "Failed" : "Fallado", + "Running" : "En execución", + "Memory" : "Memoria", + "RAM info not available" : "A información de RAM non está dispoñíbel", + "Total" : "Total", + "Configuration" : "Configuración", + "Output in JSON" : "Saída en JSON", + "Skip server update" : "Omitir actualización do servidor", + "Authentication" : "Autenticación", "Network" : "Rede", - "Hostname:" : "Nome de máquina:", - "Gateway:" : "Pasarela:", + "Hostname" : "Nome de máquina", + "Gateway" : "Pasarela", + "DNS" : "DNS", "Status:" : "Estado:", "Speed:" : "Velocidade:", "Duplex:" : "Dúplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuarios activos", - "Last hour" : "Última hora", - "%s%% of all users" : "%s%% de todos os usuarios", - "Last 24 Hours" : "Últimas 24 horas", - "Last 7 Days" : "Últimos 7 días", - "Last 30 Days" : "Últimos 30 días", - "Shares" : "Comparticións", - "Users:" : "Usuarios:", - "Groups:" : "Grupos:", - "Links:" : "Ligazóns:", - "Emails:" : "Correos-e", - "Federated sent:" : "Envíos á federación:", - "Federated received:" : "Recibido da federación:", - "Talk conversations:" : "Conversas no Parladoiro:", + "Keys" : "Chaves", + "Disabled" : "Desactivado", + "seconds" : "segundos", + "Yes" : "Si", + "No" : "Non", + "PHP extensions" : "Extensións PHP", + "Extension" : "Extensión", + "Unable to list extensions" : "Non é posíbel listar as extensións", "PHP" : "PHP", - "Version:" : "Versión:", - "Memory limit:" : "Límite de memoria:", + "Version" : "Versión", + "Memory limit" : "Límite de memoria", "Max execution time:" : "Tempo máximo de execución:", "Upload max size:" : "Tamaño máximo de envío:", - "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", "Extensions:" : "Extensións:", - "Unable to list extensions" : "Non é posíbel listar as extensións", + "PHP Info:" : "Información PHP:", "Show phpinfo" : "Amosar phpinfo", - "FPM worker pool" : "Agrupamento de traballadores FPM", + "FPM worker pool" : "Agrupamento de traballadores do servizo FPM", "Pool name:" : "Nome do agrupamento:", "Pool type:" : "Tipo de agrupamento:", "Start time:" : "Hora de comezo:", @@ -80,16 +87,52 @@ "Max listen queue:" : "Cola máxima de escoita:", "Max active processes:" : "Máximo de procesos activos:", "Max children reached:" : "Máximo de procesos fillo acadados:", - "Database" : "Base de datos", - "Type:" : "Tipo:", + "CPU" : "CPU", + "Resource usage" : "Uso de recursos", + "Shares" : "Comparticións", + "Users:" : "Usuarios:", + "Groups:" : "Grupos:", + "Links:" : "Ligazóns:", + "Emails:" : "Correos-e", + "Federated sent:" : "Envíos á federación:", + "Federated received:" : "Recibido da federación:", + "Talk conversations:" : "Conversas no Parladoiro:", + "Average" : "Media", + "Warning" : "Advertencia", + "Operating System:" : "Sistema operativo", + "CPU:" : "CPU:", + "Server time:" : "Hora do servidor:", + "Uptime:" : "Tempo de actividade:", + "Temperature" : "Temperatura", + "CPU Usage:" : "Uso da CPU:", + "Load average: {percentage} % ({load}) last minute" : "Carga media: {percentage} % ({load}) último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) último minuto\n{last5MinutesPercentage} % ({last5Minutes}) últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso actual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso actual: {swapUsageBytes}", + "SWAP info not available" : "A información de SWAP non está dispoñíbel", + "Copied!" : "Copiado!", + "Not supported!" : "Non admitido!", + "Press ⌘-C to copy." : "Prema ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Prema Ctrl-C para copiar.", + "threads" : "fíos", + "Memory:" : "Memoria:", + "Files:" : "Ficheiros:", + "Storages:" : "Almacenamentos:", + "Free Space:" : "Espazo libre:", + "Hostname:" : "Nome de máquina:", + "Gateway:" : "Pasarela:", + "%s%% of all users" : "%s%% de todos os usuarios", + "Memory limit:" : "Límite de memoria:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frecuencia de revalidación de OPcache:", "External monitoring tool" : "Ferramenta externa de supervisión", "Use this end point to connect an external monitoring tool:" : "Use este punto final para conectar unha ferramenta de supervisión externa:", "Copy" : "Copiar", - "Output in JSON" : "Saída en JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Omitir a sección de aplicacións (se se inclúe a sección de aplicacións, enviarase unha solicitude externa á tenda de aplicacións)", - "Skip server update" : "Omitir actualización do servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar un testemuño de acceso, xere un e configúreo usando a seguinte orde:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "A continuación, pase o testemuño coa cabeceira «NC-Token» ao consultar o URL anterior.", - "Unknown Processor" : "Procesador descoñecido" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/he.js b/l10n/he.js index 34494343..477babac 100644 --- a/l10n/he.js +++ b/l10n/he.js @@ -1,33 +1,61 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "פרטי המעבד לא זמינים", - "Copied!" : "הועתק!", - "Not supported!" : "אין תמיכה!", - "Press ⌘-C to copy." : "להעתקה: ‎⌘-C.", - "Press Ctrl-C to copy." : "להעתקה: Ctrl-C.", "System" : "מערכת", + "Unknown" : "לא ידוע", "Monitoring" : "מעקב", "Monitoring app with useful server information" : "יישום מעקב עם פרטים חשובים על השרת", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "מספק פרטים חיוניים על השרת כגון העומס על המעבד, ניצולת הזיכרון, ניצולת נפח הכונן מספר המשתמשים וכו׳", - "Temperature" : "טמפרטורה", + "Active users" : "משתמשים פעילים", + "Last hour" : "השעה החולפת", + "Background jobs" : "משימות רקע", + "Mode" : "מצב", + "Never" : "מעולם לא", "Load" : "עומס", - "Memory" : "זיכרון", - "Disk" : "כונן", + "CPU info not available" : "פרטי המעבד לא זמינים", + "Current usage" : "שימוש נוכחי", + "Threads" : "שרשורים", + "Load average" : "ממוצע עומס", + "Database" : "מסד נתונים", + "Type:" : "סוג:", + "Version:" : "גרסה:", "Size:" : "גודל:", - "Files:" : "קבצים", - "Storages:" : "אמצעי אחסון:", - "Free Space:" : "מקום פנוי:", + "Used" : "מנוצלים", + "Available" : "זמינות", + "Disk" : "כונן", + "Files" : "קבצים", + "Started" : "התחלה", + "Duration" : "משך", + "Job" : "עבודה", + "When" : "מתי", + "Details" : "פרטים", + "Running" : "ריצה", + "Memory" : "זיכרון", + "Total" : "סך הכול", + "Authentication" : "אימות", "Network" : "רשת", - "Active users" : "משתמשים פעילים", - "Last hour" : "השעה החולפת", - "Shares" : "שיתופים", - "Users:" : "משתמשים:", + "Hostname" : "שם מארח", + "Gateway" : "שער גישה", + "DNS" : "DNS", + "Disabled" : "מושבת", + "seconds" : "שניות", + "PHP extensions" : "הרחבות PHP", + "Extension" : "הרחבה", "PHP" : "PHP", - "Version:" : "גרסה:", + "Version" : "גרסה", "Upload max size:" : "גודל העלאה מרבי:", - "Database" : "מסד נתונים", - "Type:" : "סוג:", + "CPU" : "מעבד", + "Shares" : "שיתופים", + "Users:" : "משתמשים:", + "Warning" : "אזהרה", + "Temperature" : "טמפרטורה", + "Copied!" : "הועתק!", + "Not supported!" : "אין תמיכה!", + "Press ⌘-C to copy." : "להעתקה: ‎⌘-C.", + "Press Ctrl-C to copy." : "להעתקה: Ctrl-C.", + "Files:" : "קבצים", + "Storages:" : "אמצעי אחסון:", + "Free Space:" : "מקום פנוי:", "External monitoring tool" : "כלי מעקב חיצוני", "Copy" : "העתקה", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "לאחר מכן יש להעביר את האסימון עם כותרת „NC-Token” בעת תשאול הכתובת שלעיל." diff --git a/l10n/he.json b/l10n/he.json index 51c9d056..b1fad2da 100644 --- a/l10n/he.json +++ b/l10n/he.json @@ -1,31 +1,59 @@ { "translations": { - "CPU info not available" : "פרטי המעבד לא זמינים", - "Copied!" : "הועתק!", - "Not supported!" : "אין תמיכה!", - "Press ⌘-C to copy." : "להעתקה: ‎⌘-C.", - "Press Ctrl-C to copy." : "להעתקה: Ctrl-C.", "System" : "מערכת", + "Unknown" : "לא ידוע", "Monitoring" : "מעקב", "Monitoring app with useful server information" : "יישום מעקב עם פרטים חשובים על השרת", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "מספק פרטים חיוניים על השרת כגון העומס על המעבד, ניצולת הזיכרון, ניצולת נפח הכונן מספר המשתמשים וכו׳", - "Temperature" : "טמפרטורה", + "Active users" : "משתמשים פעילים", + "Last hour" : "השעה החולפת", + "Background jobs" : "משימות רקע", + "Mode" : "מצב", + "Never" : "מעולם לא", "Load" : "עומס", - "Memory" : "זיכרון", - "Disk" : "כונן", + "CPU info not available" : "פרטי המעבד לא זמינים", + "Current usage" : "שימוש נוכחי", + "Threads" : "שרשורים", + "Load average" : "ממוצע עומס", + "Database" : "מסד נתונים", + "Type:" : "סוג:", + "Version:" : "גרסה:", "Size:" : "גודל:", - "Files:" : "קבצים", - "Storages:" : "אמצעי אחסון:", - "Free Space:" : "מקום פנוי:", + "Used" : "מנוצלים", + "Available" : "זמינות", + "Disk" : "כונן", + "Files" : "קבצים", + "Started" : "התחלה", + "Duration" : "משך", + "Job" : "עבודה", + "When" : "מתי", + "Details" : "פרטים", + "Running" : "ריצה", + "Memory" : "זיכרון", + "Total" : "סך הכול", + "Authentication" : "אימות", "Network" : "רשת", - "Active users" : "משתמשים פעילים", - "Last hour" : "השעה החולפת", - "Shares" : "שיתופים", - "Users:" : "משתמשים:", + "Hostname" : "שם מארח", + "Gateway" : "שער גישה", + "DNS" : "DNS", + "Disabled" : "מושבת", + "seconds" : "שניות", + "PHP extensions" : "הרחבות PHP", + "Extension" : "הרחבה", "PHP" : "PHP", - "Version:" : "גרסה:", + "Version" : "גרסה", "Upload max size:" : "גודל העלאה מרבי:", - "Database" : "מסד נתונים", - "Type:" : "סוג:", + "CPU" : "מעבד", + "Shares" : "שיתופים", + "Users:" : "משתמשים:", + "Warning" : "אזהרה", + "Temperature" : "טמפרטורה", + "Copied!" : "הועתק!", + "Not supported!" : "אין תמיכה!", + "Press ⌘-C to copy." : "להעתקה: ‎⌘-C.", + "Press Ctrl-C to copy." : "להעתקה: Ctrl-C.", + "Files:" : "קבצים", + "Storages:" : "אמצעי אחסון:", + "Free Space:" : "מקום פנוי:", "External monitoring tool" : "כלי מעקב חיצוני", "Copy" : "העתקה", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "לאחר מכן יש להעביר את האסימון עם כותרת „NC-Token” בעת תשאול הכתובת שלעיל." diff --git a/l10n/hr.js b/l10n/hr.js index 052c2bbd..7e8cd5ef 100644 --- a/l10n/hr.js +++ b/l10n/hr.js @@ -1,33 +1,70 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Podaci o CPU-u nisu dostupni", - "Copied!" : "Kopirano!", - "Not supported!" : "Nije podržano!", - "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", - "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", "System" : "Sustav", + "Unknown" : "Nepoznata pogreška", "Monitoring" : "Praćenje", "Monitoring app with useful server information" : "Aplikacija za praćenje s korisnim informacijama o poslužitelju", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Pruža korisne informacije o poslužitelju, kao što su opterećenje CPU-a, korištenje RAM-a, korištenje diska, broj korisnika itd.", - "Temperature" : "Temperatura", + "Active users" : "Aktivni korisnici", + "Last hour" : "Posljednji sat", + "Webcron" : "Webcron", + "Background jobs" : "Pozadinski zadaci", + "Mode" : "Način rada", + "Never" : "Nikad", "Load" : "Opterećenje", - "Memory" : "Memorija", - "Disk" : "Disk", + "CPU info not available" : "Podaci o CPU-u nisu dostupni", + "Current usage" : "Trenutno opterećenje", + "Threads" : "Niti", + "Load average" : "Prosječno opterećenje", + "Database" : "Baza podataka", + "Type:" : "Vrsta:", + "Version:" : "Inačica:", "Size:" : "Veličina:", - "Files:" : "Datoteke:", - "Storages:" : "Pohrane:", - "Free Space:" : "Slobodan prostor:", + "Used" : "Iskorišteno", + "Available" : "Dostupno", + "Disk" : "Disk", + "Files" : "Datoteke", + "Status" : "Status", + "Started" : "Pokrenuto", + "Duration" : "Trajanje", + "Job" : "Posao", + "When" : "Kada", + "Details" : "Pojedinosti", + "Failed" : "Neuspjelo", + "Running" : "Trčanje", + "Memory" : "Memorija", + "Total" : "Ukupno", + "Configuration" : "Konfiguracija", + "Authentication" : "Autentifikacija", "Network" : "Mreža", - "Active users" : "Aktivni korisnici", - "Last hour" : "Posljednji sat", - "Shares" : "Dijeljenja", - "Users:" : "Korisnici:", + "Hostname" : "Naziv poslužitelja", + "Gateway" : "Pristupni poslužitelj", + "DNS" : "DNS", + "Keys" : "Ključevi", + "Disabled" : "Onemogućeno", + "seconds" : "sekunda", + "Yes" : "Da", + "No" : "Ne", + "PHP extensions" : "Proširenja PHP-a", + "Extension" : "Ekstenzija", "PHP" : "PHP", - "Version:" : "Inačica:", + "Version" : "Verzija", + "Memory limit" : "Ograničenje memorije", "Upload max size:" : "Maksimalna veličina za otpremu:", - "Database" : "Baza podataka", - "Type:" : "Vrsta:", + "CPU" : "CPU", + "Shares" : "Dijeljenja", + "Users:" : "Korisnici:", + "Average" : "Prosječno", + "Warning" : "Upozorenje", + "Temperature" : "Temperatura", + "Copied!" : "Kopirano!", + "Not supported!" : "Nije podržano!", + "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", + "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", + "Files:" : "Datoteke:", + "Storages:" : "Pohrane:", + "Free Space:" : "Slobodan prostor:", "External monitoring tool" : "Vanjski alat za praćenje", "Copy" : "Kopiraj", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Zatim proslijedite token sa zaglavljem „NC-Token“ prilikom slanja upita za gornji URL." diff --git a/l10n/hr.json b/l10n/hr.json index 27377046..42d57d35 100644 --- a/l10n/hr.json +++ b/l10n/hr.json @@ -1,31 +1,68 @@ { "translations": { - "CPU info not available" : "Podaci o CPU-u nisu dostupni", - "Copied!" : "Kopirano!", - "Not supported!" : "Nije podržano!", - "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", - "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", "System" : "Sustav", + "Unknown" : "Nepoznata pogreška", "Monitoring" : "Praćenje", "Monitoring app with useful server information" : "Aplikacija za praćenje s korisnim informacijama o poslužitelju", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Pruža korisne informacije o poslužitelju, kao što su opterećenje CPU-a, korištenje RAM-a, korištenje diska, broj korisnika itd.", - "Temperature" : "Temperatura", + "Active users" : "Aktivni korisnici", + "Last hour" : "Posljednji sat", + "Webcron" : "Webcron", + "Background jobs" : "Pozadinski zadaci", + "Mode" : "Način rada", + "Never" : "Nikad", "Load" : "Opterećenje", - "Memory" : "Memorija", - "Disk" : "Disk", + "CPU info not available" : "Podaci o CPU-u nisu dostupni", + "Current usage" : "Trenutno opterećenje", + "Threads" : "Niti", + "Load average" : "Prosječno opterećenje", + "Database" : "Baza podataka", + "Type:" : "Vrsta:", + "Version:" : "Inačica:", "Size:" : "Veličina:", - "Files:" : "Datoteke:", - "Storages:" : "Pohrane:", - "Free Space:" : "Slobodan prostor:", + "Used" : "Iskorišteno", + "Available" : "Dostupno", + "Disk" : "Disk", + "Files" : "Datoteke", + "Status" : "Status", + "Started" : "Pokrenuto", + "Duration" : "Trajanje", + "Job" : "Posao", + "When" : "Kada", + "Details" : "Pojedinosti", + "Failed" : "Neuspjelo", + "Running" : "Trčanje", + "Memory" : "Memorija", + "Total" : "Ukupno", + "Configuration" : "Konfiguracija", + "Authentication" : "Autentifikacija", "Network" : "Mreža", - "Active users" : "Aktivni korisnici", - "Last hour" : "Posljednji sat", - "Shares" : "Dijeljenja", - "Users:" : "Korisnici:", + "Hostname" : "Naziv poslužitelja", + "Gateway" : "Pristupni poslužitelj", + "DNS" : "DNS", + "Keys" : "Ključevi", + "Disabled" : "Onemogućeno", + "seconds" : "sekunda", + "Yes" : "Da", + "No" : "Ne", + "PHP extensions" : "Proširenja PHP-a", + "Extension" : "Ekstenzija", "PHP" : "PHP", - "Version:" : "Inačica:", + "Version" : "Verzija", + "Memory limit" : "Ograničenje memorije", "Upload max size:" : "Maksimalna veličina za otpremu:", - "Database" : "Baza podataka", - "Type:" : "Vrsta:", + "CPU" : "CPU", + "Shares" : "Dijeljenja", + "Users:" : "Korisnici:", + "Average" : "Prosječno", + "Warning" : "Upozorenje", + "Temperature" : "Temperatura", + "Copied!" : "Kopirano!", + "Not supported!" : "Nije podržano!", + "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", + "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", + "Files:" : "Datoteke:", + "Storages:" : "Pohrane:", + "Free Space:" : "Slobodan prostor:", "External monitoring tool" : "Vanjski alat za praćenje", "Copy" : "Kopiraj", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Zatim proslijedite token sa zaglavljem „NC-Token“ prilikom slanja upita za gornji URL." diff --git a/l10n/hu.js b/l10n/hu.js index 1092ae50..8ee8a098 100644 --- a/l10n/hu.js +++ b/l10n/hu.js @@ -1,47 +1,95 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "A CPU információk nem érhetők el", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Összesen: {memTotalBytes}/Jelenlegi használat: {memUsageBytes}", - "RAM info not available" : "A RAM információk nem érhetők el", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "CSEREHELY: Összesen: {swapTotalBytes}/Jelenlegi használat: {swapUsageBytes}", - "SWAP info not available" : "A cserehely információk nem érhetők el", - "Copied!" : "Másolva.", - "Not supported!" : "Nem támogatott!", - "Press ⌘-C to copy." : "A másoláshoz nyomjon ⌘-C-t.", - "Press Ctrl-C to copy." : "A másoláshoz nyomjon Ctrl-C-t.", "System" : "Rendszer", + "Unknown" : "Ismeretlen", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d nap, %2$d óra, %3$d perc, %4$d másodperc", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d óra, %2$d perc, %3$d másodperc", "Monitoring" : "Rendszerfelügyelet", "Monitoring app with useful server information" : "Rendszerfelügyeleti alkalmazás hasznos kiszolgálóinformációkkal", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hasznos kiszolgálóinformációk nyújtása, mint a CPU terhelés, RAM foglaltság, felhasználók száma, stb.", - "Operating System:" : "Operációs rendszer:", - "CPU:" : "CPU:", - "Memory:" : "Memória:", - "Server time:" : "Kiszolgálóidő:", - "Uptime:" : "Működési idő:", - "Temperature" : "Hőmérséklet", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hasznos kiszolgálóinformációk nyújtása, mint a processzorterhelés, memóriafoglaltság, felhasználók száma, stb.", + "Active users" : "Aktív felhasználók", + "Last hour" : "Elmúlt óra", + "Last 24 Hours" : "Elmúlt 24 óra", + "Last 7 Days" : "Elmúlt 7 nap", + "Last 30 Days" : "Elmúlt 30 nap", + "Webcron" : "Webcron", + "Background jobs" : "Háttérfeladatok", + "Mode" : "Mód", + "Never" : "Soha", "Load" : "Terhelés", - "Memory" : "Memória", + "CPU info not available" : "A CPU információk nem érhetők el", + "Current usage" : "Jelenlegi használat", + "Threads" : "Szálak", + "Load average" : "Terhelési átlag", + "Database" : "Adatbázis:", + "Type:" : "Típus:", + "Version:" : "Verzió:", + "Size:" : "Méret:", + "Used" : "Használt", + "Available" : "Elérhető", "Disk" : "Lemez", + "Files" : "Fájlok", + "Storages" : "Tároló", "Mount:" : "Csatolás:", "Filesystem:" : "Fájlrendszer:", - "Size:" : "Méret:", "Available:" : "Elérhető:", "Used:" : "Használt:", - "Files:" : "Fájlok:", - "Storages:" : "Tárhelyek:", - "Free Space:" : "Szabad hely:", + "Status" : "Állapot", + "Started" : "Elindítva", + "Duration" : "Időtartam", + "When" : "Mikor", + "Details" : "Részletek", + "Failed" : "Sikertelen", + "Running" : "Futás", + "Memory" : "Memória", + "RAM info not available" : "A memóriainformációk nem érhetők el", + "Total" : "Összesen", + "Configuration" : "Konfiguráció", + "Output in JSON" : "JSON kimenet", + "Skip server update" : "Kiszolgálófrissítés kihagyása", + "Authentication" : "Hitelesítés", "Network" : "Hálózat", - "Hostname:" : "Gépnév:", - "Gateway:" : "Átjáró:", + "Hostname" : "Gépnév", + "Gateway" : "Átjáró", + "DNS" : "DNS", "Status:" : "Állapot:", "Speed:" : "Sebesség:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktív felhasználók", - "Last hour" : "Elmúlt óra", + "Keys" : "Kulcsok", + "Disabled" : "Letiltva", + "seconds" : "másodperc", + "Yes" : "Igen", + "No" : "Nem", + "PHP extensions" : "PHP-kiterjesztések", + "Extension" : "Kiterjesztés", + "Unable to list extensions" : "Nem lehet felsorolni a bővítményeket", + "PHP" : "PHP", + "Version" : "Verzió", + "Memory limit" : "Memória korlát", + "Max execution time:" : "Maximális végrehajtási idő:", + "Upload max size:" : "Maximális feltöltési méret:", + "Extensions:" : "Bővítmények:", + "PHP Info:" : "PHP információk:", + "Show phpinfo" : "A phpinfo megjelenítése", + "FPM worker pool" : "FPM futtatókészlet", + "Pool name:" : "Készlet neve:", + "Pool type:" : "Készlet típusa:", + "Start time:" : "Kezdési idő:", + "Accepted connections:" : "Fogadott kapcsolatok:", + "Total processes:" : "Összes folyamat:", + "Active processes:" : "Aktív folyamatok:", + "Idle processes:" : "Tétlen folyamatok:", + "Listen queue:" : "Figyelési sor:", + "Slow requests:" : "Lassú kérések:", + "Max listen queue:" : "Legnagyobb figyelési sor:", + "Max active processes:" : "Legtöbb aktív folyamat:", + "Max children reached:" : "Legtöbb elért gyermekfolyamat:", + "CPU" : "CPU", + "Resource usage" : "Erőforrás használat", "Shares" : "Megosztások", "Users:" : "Felhasználók:", "Groups:" : "Csoportok:", @@ -50,25 +98,42 @@ OC.L10N.register( "Federated sent:" : "Föderáltak elküldve:", "Federated received:" : "Föderáltak fogadva:", "Talk conversations:" : "Beszélgetések:", - "PHP" : "PHP", - "Version:" : "Verzió:", + "Average" : "Átlag", + "Warning" : "Figyelmeztetés", + "Operating System:" : "Operációs rendszer:", + "CPU:" : "CPU:", + "Server time:" : "Kiszolgálóidő:", + "Uptime:" : "Működési idő:", + "Temperature" : "Hőmérséklet", + "CPU Usage:" : "Processzorhasználat:", + "Load average: {percentage} % ({load}) last minute" : "Átlagos terhelés: {percentage}% ({load}) az elmúlt percben", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) az elmúlt percben{last5MinutesPercentage} % ({last5Minutes}) az elmúlt 5 percben{last15MinutesPercentage} % ({last15Minutes}) az elmúlt 15 percben", + "RAM Usage:" : "Memóriahasználat:", + "SWAP Usage:" : "Cserehelyhasználat:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Memória: összesen: {memTotalBytes} / jelenlegi használat: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Cserehely: összesen: {swapTotalBytes} / jelenlegi használat: {swapUsageBytes}", + "SWAP info not available" : "A cserehely-információk nem érhetők el", + "Copied!" : "Másolva!", + "Not supported!" : "Nem támogatott!", + "Press ⌘-C to copy." : "A másoláshoz nyomjon ⌘+C-t.", + "Press Ctrl-C to copy." : "A másoláshoz nyomjon Ctrl+C-t.", + "threads" : "szál", + "Memory:" : "Memória:", + "Files:" : "Fájlok:", + "Storages:" : "Tárhelyek:", + "Free Space:" : "Szabad hely:", + "Hostname:" : "Gépnév:", + "Gateway:" : "Átjáró:", + "%s%% of all users" : "Az összes felhasználó %s%%-a", "Memory limit:" : "Memóriakorlát:", - "Max execution time:" : "Maximális végrehajtási idő:", - "Upload max size:" : "Maximális feltöltési méret:", + "MB" : "MB", "OPcache Revalidate Frequency:" : "OPcache újraellenőrzési gyakorisága:", - "Extensions:" : "Bővítmények:", - "Unable to list extensions" : "Nem lehet felsorolni a bővítményeket", - "Show phpinfo" : "phpinfo mutatása", - "Database" : "Adatbázis:", - "Type:" : "Típus:", "External monitoring tool" : "Külső rendszerfelügyeleti eszköz", "Use this end point to connect an external monitoring tool:" : "E végpontot alkalmazása egy külső felügyeleti eszköz csatlakoztatásához:", "Copy" : "Másolás", - "Output in JSON" : "JSON kimenet", "Skip apps section (including apps section will send an external request to the app store)" : "Alkalmazás szekció kihagyása (külső kérést küld az alkalmazásboltba az alkalmazás szekciót is belefoglalva)", - "Skip server update" : "Kiszolgáló frissítés kihagyása", "To use an access token, please generate one then set it using the following command:" : "A hozzáférési token használatához hozzon létre egyet, majd állítsa be a következő paranccsal:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ezután adja át a tokent az „NC-Token” fejléccel, amikor lekérdezi a fenti URL-t.", - "Unknown Processor" : "Ismeretlen processzor" + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ezután adja át a tokent az „NC-Token” fejléccel, amikor lekérdezi a fenti webcímet.", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/hu.json b/l10n/hu.json index f1397130..7195cd21 100644 --- a/l10n/hu.json +++ b/l10n/hu.json @@ -1,45 +1,93 @@ { "translations": { - "CPU info not available" : "A CPU információk nem érhetők el", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Összesen: {memTotalBytes}/Jelenlegi használat: {memUsageBytes}", - "RAM info not available" : "A RAM információk nem érhetők el", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "CSEREHELY: Összesen: {swapTotalBytes}/Jelenlegi használat: {swapUsageBytes}", - "SWAP info not available" : "A cserehely információk nem érhetők el", - "Copied!" : "Másolva.", - "Not supported!" : "Nem támogatott!", - "Press ⌘-C to copy." : "A másoláshoz nyomjon ⌘-C-t.", - "Press Ctrl-C to copy." : "A másoláshoz nyomjon Ctrl-C-t.", "System" : "Rendszer", + "Unknown" : "Ismeretlen", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d nap, %2$d óra, %3$d perc, %4$d másodperc", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d óra, %2$d perc, %3$d másodperc", "Monitoring" : "Rendszerfelügyelet", "Monitoring app with useful server information" : "Rendszerfelügyeleti alkalmazás hasznos kiszolgálóinformációkkal", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hasznos kiszolgálóinformációk nyújtása, mint a CPU terhelés, RAM foglaltság, felhasználók száma, stb.", - "Operating System:" : "Operációs rendszer:", - "CPU:" : "CPU:", - "Memory:" : "Memória:", - "Server time:" : "Kiszolgálóidő:", - "Uptime:" : "Működési idő:", - "Temperature" : "Hőmérséklet", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hasznos kiszolgálóinformációk nyújtása, mint a processzorterhelés, memóriafoglaltság, felhasználók száma, stb.", + "Active users" : "Aktív felhasználók", + "Last hour" : "Elmúlt óra", + "Last 24 Hours" : "Elmúlt 24 óra", + "Last 7 Days" : "Elmúlt 7 nap", + "Last 30 Days" : "Elmúlt 30 nap", + "Webcron" : "Webcron", + "Background jobs" : "Háttérfeladatok", + "Mode" : "Mód", + "Never" : "Soha", "Load" : "Terhelés", - "Memory" : "Memória", + "CPU info not available" : "A CPU információk nem érhetők el", + "Current usage" : "Jelenlegi használat", + "Threads" : "Szálak", + "Load average" : "Terhelési átlag", + "Database" : "Adatbázis:", + "Type:" : "Típus:", + "Version:" : "Verzió:", + "Size:" : "Méret:", + "Used" : "Használt", + "Available" : "Elérhető", "Disk" : "Lemez", + "Files" : "Fájlok", + "Storages" : "Tároló", "Mount:" : "Csatolás:", "Filesystem:" : "Fájlrendszer:", - "Size:" : "Méret:", "Available:" : "Elérhető:", "Used:" : "Használt:", - "Files:" : "Fájlok:", - "Storages:" : "Tárhelyek:", - "Free Space:" : "Szabad hely:", + "Status" : "Állapot", + "Started" : "Elindítva", + "Duration" : "Időtartam", + "When" : "Mikor", + "Details" : "Részletek", + "Failed" : "Sikertelen", + "Running" : "Futás", + "Memory" : "Memória", + "RAM info not available" : "A memóriainformációk nem érhetők el", + "Total" : "Összesen", + "Configuration" : "Konfiguráció", + "Output in JSON" : "JSON kimenet", + "Skip server update" : "Kiszolgálófrissítés kihagyása", + "Authentication" : "Hitelesítés", "Network" : "Hálózat", - "Hostname:" : "Gépnév:", - "Gateway:" : "Átjáró:", + "Hostname" : "Gépnév", + "Gateway" : "Átjáró", + "DNS" : "DNS", "Status:" : "Állapot:", "Speed:" : "Sebesség:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktív felhasználók", - "Last hour" : "Elmúlt óra", + "Keys" : "Kulcsok", + "Disabled" : "Letiltva", + "seconds" : "másodperc", + "Yes" : "Igen", + "No" : "Nem", + "PHP extensions" : "PHP-kiterjesztések", + "Extension" : "Kiterjesztés", + "Unable to list extensions" : "Nem lehet felsorolni a bővítményeket", + "PHP" : "PHP", + "Version" : "Verzió", + "Memory limit" : "Memória korlát", + "Max execution time:" : "Maximális végrehajtási idő:", + "Upload max size:" : "Maximális feltöltési méret:", + "Extensions:" : "Bővítmények:", + "PHP Info:" : "PHP információk:", + "Show phpinfo" : "A phpinfo megjelenítése", + "FPM worker pool" : "FPM futtatókészlet", + "Pool name:" : "Készlet neve:", + "Pool type:" : "Készlet típusa:", + "Start time:" : "Kezdési idő:", + "Accepted connections:" : "Fogadott kapcsolatok:", + "Total processes:" : "Összes folyamat:", + "Active processes:" : "Aktív folyamatok:", + "Idle processes:" : "Tétlen folyamatok:", + "Listen queue:" : "Figyelési sor:", + "Slow requests:" : "Lassú kérések:", + "Max listen queue:" : "Legnagyobb figyelési sor:", + "Max active processes:" : "Legtöbb aktív folyamat:", + "Max children reached:" : "Legtöbb elért gyermekfolyamat:", + "CPU" : "CPU", + "Resource usage" : "Erőforrás használat", "Shares" : "Megosztások", "Users:" : "Felhasználók:", "Groups:" : "Csoportok:", @@ -48,25 +96,42 @@ "Federated sent:" : "Föderáltak elküldve:", "Federated received:" : "Föderáltak fogadva:", "Talk conversations:" : "Beszélgetések:", - "PHP" : "PHP", - "Version:" : "Verzió:", + "Average" : "Átlag", + "Warning" : "Figyelmeztetés", + "Operating System:" : "Operációs rendszer:", + "CPU:" : "CPU:", + "Server time:" : "Kiszolgálóidő:", + "Uptime:" : "Működési idő:", + "Temperature" : "Hőmérséklet", + "CPU Usage:" : "Processzorhasználat:", + "Load average: {percentage} % ({load}) last minute" : "Átlagos terhelés: {percentage}% ({load}) az elmúlt percben", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) az elmúlt percben{last5MinutesPercentage} % ({last5Minutes}) az elmúlt 5 percben{last15MinutesPercentage} % ({last15Minutes}) az elmúlt 15 percben", + "RAM Usage:" : "Memóriahasználat:", + "SWAP Usage:" : "Cserehelyhasználat:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Memória: összesen: {memTotalBytes} / jelenlegi használat: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Cserehely: összesen: {swapTotalBytes} / jelenlegi használat: {swapUsageBytes}", + "SWAP info not available" : "A cserehely-információk nem érhetők el", + "Copied!" : "Másolva!", + "Not supported!" : "Nem támogatott!", + "Press ⌘-C to copy." : "A másoláshoz nyomjon ⌘+C-t.", + "Press Ctrl-C to copy." : "A másoláshoz nyomjon Ctrl+C-t.", + "threads" : "szál", + "Memory:" : "Memória:", + "Files:" : "Fájlok:", + "Storages:" : "Tárhelyek:", + "Free Space:" : "Szabad hely:", + "Hostname:" : "Gépnév:", + "Gateway:" : "Átjáró:", + "%s%% of all users" : "Az összes felhasználó %s%%-a", "Memory limit:" : "Memóriakorlát:", - "Max execution time:" : "Maximális végrehajtási idő:", - "Upload max size:" : "Maximális feltöltési méret:", + "MB" : "MB", "OPcache Revalidate Frequency:" : "OPcache újraellenőrzési gyakorisága:", - "Extensions:" : "Bővítmények:", - "Unable to list extensions" : "Nem lehet felsorolni a bővítményeket", - "Show phpinfo" : "phpinfo mutatása", - "Database" : "Adatbázis:", - "Type:" : "Típus:", "External monitoring tool" : "Külső rendszerfelügyeleti eszköz", "Use this end point to connect an external monitoring tool:" : "E végpontot alkalmazása egy külső felügyeleti eszköz csatlakoztatásához:", "Copy" : "Másolás", - "Output in JSON" : "JSON kimenet", "Skip apps section (including apps section will send an external request to the app store)" : "Alkalmazás szekció kihagyása (külső kérést küld az alkalmazásboltba az alkalmazás szekciót is belefoglalva)", - "Skip server update" : "Kiszolgáló frissítés kihagyása", "To use an access token, please generate one then set it using the following command:" : "A hozzáférési token használatához hozzon létre egyet, majd állítsa be a következő paranccsal:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ezután adja át a tokent az „NC-Token” fejléccel, amikor lekérdezi a fenti URL-t.", - "Unknown Processor" : "Ismeretlen processzor" + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ezután adja át a tokent az „NC-Token” fejléccel, amikor lekérdezi a fenti webcímet.", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/hy.js b/l10n/hy.js index e3bb913b..92f0fd8e 100644 --- a/l10n/hy.js +++ b/l10n/hy.js @@ -1,12 +1,20 @@ OC.L10N.register( "serverinfo", { + "Unknown" : "Անհայտ", + "Never" : "Երբեք", + "Type:" : "Տիպ.", + "Size:" : "Չափս.", + "Details" : "Մանրամասներ", + "seconds" : "վայրկյան", + "Yes" : "Այո", + "No" : "Ոչ", + "Version" : "Տարբերակ", + "Warning" : "Զգուշացում", "Copied!" : "Պատճենված է․", "Not supported!" : "Չի՛ սպասարկվում։", "Press ⌘-C to copy." : "Սեղմել ⌘-C պատճենելու համար։", "Press Ctrl-C to copy." : "Սեղմել Ctrl-C պատճենելու համար։", - "Size:" : "Չափս.", - "Type:" : "Տիպ.", "Copy" : "պատճենահանել" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/hy.json b/l10n/hy.json index ab2d4060..ff3b1c7a 100644 --- a/l10n/hy.json +++ b/l10n/hy.json @@ -1,10 +1,18 @@ { "translations": { + "Unknown" : "Անհայտ", + "Never" : "Երբեք", + "Type:" : "Տիպ.", + "Size:" : "Չափս.", + "Details" : "Մանրամասներ", + "seconds" : "վայրկյան", + "Yes" : "Այո", + "No" : "Ոչ", + "Version" : "Տարբերակ", + "Warning" : "Զգուշացում", "Copied!" : "Պատճենված է․", "Not supported!" : "Չի՛ սպասարկվում։", "Press ⌘-C to copy." : "Սեղմել ⌘-C պատճենելու համար։", "Press Ctrl-C to copy." : "Սեղմել Ctrl-C պատճենելու համար։", - "Size:" : "Չափս.", - "Type:" : "Տիպ.", "Copy" : "պատճենահանել" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ia.js b/l10n/ia.js index aeff2842..8e31760a 100644 --- a/l10n/ia.js +++ b/l10n/ia.js @@ -1,22 +1,33 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Copiate!", - "Not supported!" : "Non supportate!", - "Press ⌘-C to copy." : "Pulsa ⌘-C pro copiar.", - "Press Ctrl-C to copy." : "Pulsa Ctrl-C pro copiar.", "System" : "Systema", + "Unknown" : "Incognite", "Monitoring" : "Controlante", - "Size:" : "Dimension:", - "Files:" : "Files:", "Active users" : "Usatores active", - "Shares" : "Compartimentos", - "Users:" : "Usatores:", - "PHP" : "PHP", - "Version:" : "Version:", - "Upload max size:" : "Dimension maxime de incarga:", + "Never" : "Nunquam", + "Current usage" : "Uso actual", + "Load average" : "Carga medie", "Database" : "Base de datos", "Type:" : "Typo:", + "Version:" : "Version:", + "Size:" : "Dimension:", + "Details" : "Detalios", + "Total" : "Total", + "Authentication" : "Authentication", + "Hostname" : "Nomine de Hospite", + "seconds" : "secundas", + "PHP" : "PHP", + "Version" : "Version", + "Upload max size:" : "Dimension maxime de incarga:", + "Shares" : "Compartimentos", + "Users:" : "Usatores:", + "Warning" : "Aviso", + "Copied!" : "Copiate!", + "Not supported!" : "Non supportate!", + "Press ⌘-C to copy." : "Pulsa ⌘-C pro copiar.", + "Press Ctrl-C to copy." : "Pulsa Ctrl-C pro copiar.", + "Files:" : "Files:", "External monitoring tool" : "Instrumento de controlo externe", "Copy" : "Copiar" }, diff --git a/l10n/ia.json b/l10n/ia.json index f2e07b81..6873adc8 100644 --- a/l10n/ia.json +++ b/l10n/ia.json @@ -1,20 +1,31 @@ { "translations": { - "Copied!" : "Copiate!", - "Not supported!" : "Non supportate!", - "Press ⌘-C to copy." : "Pulsa ⌘-C pro copiar.", - "Press Ctrl-C to copy." : "Pulsa Ctrl-C pro copiar.", "System" : "Systema", + "Unknown" : "Incognite", "Monitoring" : "Controlante", - "Size:" : "Dimension:", - "Files:" : "Files:", "Active users" : "Usatores active", - "Shares" : "Compartimentos", - "Users:" : "Usatores:", - "PHP" : "PHP", - "Version:" : "Version:", - "Upload max size:" : "Dimension maxime de incarga:", + "Never" : "Nunquam", + "Current usage" : "Uso actual", + "Load average" : "Carga medie", "Database" : "Base de datos", "Type:" : "Typo:", + "Version:" : "Version:", + "Size:" : "Dimension:", + "Details" : "Detalios", + "Total" : "Total", + "Authentication" : "Authentication", + "Hostname" : "Nomine de Hospite", + "seconds" : "secundas", + "PHP" : "PHP", + "Version" : "Version", + "Upload max size:" : "Dimension maxime de incarga:", + "Shares" : "Compartimentos", + "Users:" : "Usatores:", + "Warning" : "Aviso", + "Copied!" : "Copiate!", + "Not supported!" : "Non supportate!", + "Press ⌘-C to copy." : "Pulsa ⌘-C pro copiar.", + "Press Ctrl-C to copy." : "Pulsa Ctrl-C pro copiar.", + "Files:" : "Files:", "External monitoring tool" : "Instrumento de controlo externe", "Copy" : "Copiar" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/id.js b/l10n/id.js index 3b10c2df..2ceb0786 100644 --- a/l10n/id.js +++ b/l10n/id.js @@ -1,24 +1,132 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Tersalin!", - "Not supported!" : "Tidak didukung!", - "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", - "Press Ctrl-C to copy." : "Tekan CTRL-C untuk menyalin.", "System" : "Sistem", + "Unknown" : "Tidak diketahui", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d hari, %2$d jam, %3$d menit, %4$d detik", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d jam, %2$d menit, %3$d detik", "Monitoring" : "Pemantauan", - "Temperature" : "Suhu", - "Size:" : "Ukuran:", - "Files:" : "Berkas:", + "Monitoring app with useful server information" : "Aplikasi pemantauan dengan informasi server yang berguna", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Menyediakan informasi server yang berguna, seperti beban CPU, penggunaan RAM, penggunaan disk, jumlah pengguna, dll.", "Active users" : "Pengguna aktif", - "Shares" : "Dibagikan", - "Users:" : "Pengguna:", - "PHP" : "PHP", + "Last hour" : "1 jam terakhir", + "Last 24 Hours" : "24 Jam Terakhir", + "Last 7 Days" : "7 Hari Terakhir", + "Last 30 Days" : "30 Hari Terakhir", + "Webcron" : "Webcron", + "Background jobs" : "Pekerjaan latar belakang", + "Mode" : "Mode", + "Never" : "Tidak pernah", + "Load" : "Beban", + "CPU info not available" : "Info CPU tidak tersedia", + "Current usage" : "Penggunaan terakhir", + "Threads" : "Utas", + "Load average" : "Rata-rata Proses", + "Database" : "Basis data", + "Type:" : "Jenis:", "Version:" : "Versi:", - "Upload max size:" : "Ukuran maksimal unggah", - "Database" : "Database", - "Type:" : "Tipe", + "Size:" : "Ukuran:", + "Available" : "Tersedia", + "Disk" : "Disk", + "Files" : "File", + "Mount:" : "Mount:", + "Filesystem:" : "Sistem file:", + "Available:" : "Tersedia:", + "Used:" : "Digunakan:", + "Status" : "Status", + "Started" : "Dimulai", + "Duration" : "Durasi", + "When" : "Ketika", + "Details" : "Rincian", + "Succeeded" : "Berhasil", + "Failed" : "Gagal", + "Running" : "Sedang berjalan", + "Memory" : "Memori", + "RAM info not available" : "Info RAM tidak tersedia", + "Total" : "Total", + "Configuration" : "Konfigurasi", + "Output in JSON" : "Keluaran dalam JSON", + "Skip server update" : "Lewati pembaruan server", + "Authentication" : "Autentikasi", + "Network" : "Jaringan", + "Hostname" : "Nama Host", + "Status:" : "Status:", + "Speed:" : "Kecepatan:", + "Duplex:" : "Dupleks:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Kunci", + "Disabled" : "Dinonaktifkan", + "seconds" : "detik", + "Yes" : "Ya", + "No" : "Tidak", + "PHP extensions" : "Ekstensi PHP", + "Extension" : "Ekstensi", + "Unable to list extensions" : "Tidak dapat menampilkan daftar ekstensi", + "PHP" : "PHP", + "Version" : "Versi", + "Memory limit" : "Batas memori", + "Max execution time:" : "Waktu eksekusi maks.:", + "Upload max size:" : "Ukuran unggah maks.:", + "Extensions:" : "Ekstensi:", + "PHP Info:" : "Info PHP:", + "Show phpinfo" : "Tampilkan phpinfo", + "FPM worker pool" : "Pool worker FPM", + "Pool name:" : "Nama pool:", + "Pool type:" : "Jenis pool:", + "Start time:" : "Waktu mulai:", + "Accepted connections:" : "Koneksi diterima:", + "Total processes:" : "Total proses:", + "Active processes:" : "Proses aktif:", + "Idle processes:" : "Proses idle:", + "Listen queue:" : "Antrean listen:", + "Slow requests:" : "Permintaan lambat:", + "Max listen queue:" : "Antrean listen maks.:", + "Max active processes:" : "Maks. proses aktif:", + "Max children reached:" : "Maks. anak tercapai:", + "Shares" : "Pembagian", + "Users:" : "Pengguna:", + "Groups:" : "Grup:", + "Links:" : "Tautan:", + "Emails:" : "Email:", + "Federated sent:" : "Federasi dikirim:", + "Federated received:" : "Federasi diterima:", + "Talk conversations:" : "Percakapan Talk:", + "Warning" : "Peringatan", + "Operating System:" : "Sistem Operasi:", + "CPU:" : "CPU:", + "Server time:" : "Waktu server:", + "Uptime:" : "Waktu aktif:", + "Temperature" : "Suhu", + "CPU Usage:" : "Penggunaan CPU:", + "Load average: {percentage} % ({load}) last minute" : "Rata-rata beban: {percentage} % ({load}) menit terakhir", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 1 menit terakhir\n{last5MinutesPercentage} % ({last5Minutes}) 5 menit terakhir\n{last15MinutesPercentage} % ({last15Minutes}) 15 menit terakhir", + "RAM Usage:" : "Penggunaan RAM:", + "SWAP Usage:" : "Penggunaan SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Penggunaan saat ini: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Penggunaan saat ini: {swapUsageBytes}", + "SWAP info not available" : "Info SWAP tidak tersedia", + "Copied!" : "Tersalin!", + "Not supported!" : "Tidak didukung!", + "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", + "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.", + "threads" : "thread", + "Memory:" : "Memori:", + "Files:" : "File:", + "Storages:" : "Penyimpanan:", + "Free Space:" : "Ruang kosong:", + "Hostname:" : "Nama host:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% dari semua pengguna", + "Memory limit:" : "Batas memori:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frekuensi Validasi Ulang OPcache:", "External monitoring tool" : "Alat pemantauan eksternal", - "Copy" : "Salin" + "Use this end point to connect an external monitoring tool:" : "Gunakan endpoint ini untuk menghubungkan alat pemantauan eksternal:", + "Copy" : "Salin", + "Skip apps section (including apps section will send an external request to the app store)" : "Lewati bagian aplikasi (menyertakan bagian aplikasi akan mengirim permintaan eksternal ke app store)", + "To use an access token, please generate one then set it using the following command:" : "Untuk menggunakan token akses, silakan buat token lalu tetapkan menggunakan perintah berikut:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Kemudian sertakan token tersebut dengan header \"NC-Token\" saat melakukan kueri ke URL di atas." }, "nplurals=1; plural=0;"); diff --git a/l10n/id.json b/l10n/id.json index 2b584bfe..ba4abbe8 100644 --- a/l10n/id.json +++ b/l10n/id.json @@ -1,22 +1,130 @@ { "translations": { - "Copied!" : "Tersalin!", - "Not supported!" : "Tidak didukung!", - "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", - "Press Ctrl-C to copy." : "Tekan CTRL-C untuk menyalin.", "System" : "Sistem", + "Unknown" : "Tidak diketahui", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d hari, %2$d jam, %3$d menit, %4$d detik", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d jam, %2$d menit, %3$d detik", "Monitoring" : "Pemantauan", - "Temperature" : "Suhu", - "Size:" : "Ukuran:", - "Files:" : "Berkas:", + "Monitoring app with useful server information" : "Aplikasi pemantauan dengan informasi server yang berguna", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Menyediakan informasi server yang berguna, seperti beban CPU, penggunaan RAM, penggunaan disk, jumlah pengguna, dll.", "Active users" : "Pengguna aktif", - "Shares" : "Dibagikan", - "Users:" : "Pengguna:", - "PHP" : "PHP", + "Last hour" : "1 jam terakhir", + "Last 24 Hours" : "24 Jam Terakhir", + "Last 7 Days" : "7 Hari Terakhir", + "Last 30 Days" : "30 Hari Terakhir", + "Webcron" : "Webcron", + "Background jobs" : "Pekerjaan latar belakang", + "Mode" : "Mode", + "Never" : "Tidak pernah", + "Load" : "Beban", + "CPU info not available" : "Info CPU tidak tersedia", + "Current usage" : "Penggunaan terakhir", + "Threads" : "Utas", + "Load average" : "Rata-rata Proses", + "Database" : "Basis data", + "Type:" : "Jenis:", "Version:" : "Versi:", - "Upload max size:" : "Ukuran maksimal unggah", - "Database" : "Database", - "Type:" : "Tipe", + "Size:" : "Ukuran:", + "Available" : "Tersedia", + "Disk" : "Disk", + "Files" : "File", + "Mount:" : "Mount:", + "Filesystem:" : "Sistem file:", + "Available:" : "Tersedia:", + "Used:" : "Digunakan:", + "Status" : "Status", + "Started" : "Dimulai", + "Duration" : "Durasi", + "When" : "Ketika", + "Details" : "Rincian", + "Succeeded" : "Berhasil", + "Failed" : "Gagal", + "Running" : "Sedang berjalan", + "Memory" : "Memori", + "RAM info not available" : "Info RAM tidak tersedia", + "Total" : "Total", + "Configuration" : "Konfigurasi", + "Output in JSON" : "Keluaran dalam JSON", + "Skip server update" : "Lewati pembaruan server", + "Authentication" : "Autentikasi", + "Network" : "Jaringan", + "Hostname" : "Nama Host", + "Status:" : "Status:", + "Speed:" : "Kecepatan:", + "Duplex:" : "Dupleks:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Kunci", + "Disabled" : "Dinonaktifkan", + "seconds" : "detik", + "Yes" : "Ya", + "No" : "Tidak", + "PHP extensions" : "Ekstensi PHP", + "Extension" : "Ekstensi", + "Unable to list extensions" : "Tidak dapat menampilkan daftar ekstensi", + "PHP" : "PHP", + "Version" : "Versi", + "Memory limit" : "Batas memori", + "Max execution time:" : "Waktu eksekusi maks.:", + "Upload max size:" : "Ukuran unggah maks.:", + "Extensions:" : "Ekstensi:", + "PHP Info:" : "Info PHP:", + "Show phpinfo" : "Tampilkan phpinfo", + "FPM worker pool" : "Pool worker FPM", + "Pool name:" : "Nama pool:", + "Pool type:" : "Jenis pool:", + "Start time:" : "Waktu mulai:", + "Accepted connections:" : "Koneksi diterima:", + "Total processes:" : "Total proses:", + "Active processes:" : "Proses aktif:", + "Idle processes:" : "Proses idle:", + "Listen queue:" : "Antrean listen:", + "Slow requests:" : "Permintaan lambat:", + "Max listen queue:" : "Antrean listen maks.:", + "Max active processes:" : "Maks. proses aktif:", + "Max children reached:" : "Maks. anak tercapai:", + "Shares" : "Pembagian", + "Users:" : "Pengguna:", + "Groups:" : "Grup:", + "Links:" : "Tautan:", + "Emails:" : "Email:", + "Federated sent:" : "Federasi dikirim:", + "Federated received:" : "Federasi diterima:", + "Talk conversations:" : "Percakapan Talk:", + "Warning" : "Peringatan", + "Operating System:" : "Sistem Operasi:", + "CPU:" : "CPU:", + "Server time:" : "Waktu server:", + "Uptime:" : "Waktu aktif:", + "Temperature" : "Suhu", + "CPU Usage:" : "Penggunaan CPU:", + "Load average: {percentage} % ({load}) last minute" : "Rata-rata beban: {percentage} % ({load}) menit terakhir", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 1 menit terakhir\n{last5MinutesPercentage} % ({last5Minutes}) 5 menit terakhir\n{last15MinutesPercentage} % ({last15Minutes}) 15 menit terakhir", + "RAM Usage:" : "Penggunaan RAM:", + "SWAP Usage:" : "Penggunaan SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Penggunaan saat ini: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Penggunaan saat ini: {swapUsageBytes}", + "SWAP info not available" : "Info SWAP tidak tersedia", + "Copied!" : "Tersalin!", + "Not supported!" : "Tidak didukung!", + "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", + "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.", + "threads" : "thread", + "Memory:" : "Memori:", + "Files:" : "File:", + "Storages:" : "Penyimpanan:", + "Free Space:" : "Ruang kosong:", + "Hostname:" : "Nama host:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% dari semua pengguna", + "Memory limit:" : "Batas memori:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frekuensi Validasi Ulang OPcache:", "External monitoring tool" : "Alat pemantauan eksternal", - "Copy" : "Salin" + "Use this end point to connect an external monitoring tool:" : "Gunakan endpoint ini untuk menghubungkan alat pemantauan eksternal:", + "Copy" : "Salin", + "Skip apps section (including apps section will send an external request to the app store)" : "Lewati bagian aplikasi (menyertakan bagian aplikasi akan mengirim permintaan eksternal ke app store)", + "To use an access token, please generate one then set it using the following command:" : "Untuk menggunakan token akses, silakan buat token lalu tetapkan menggunakan perintah berikut:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Kemudian sertakan token tersebut dengan header \"NC-Token\" saat melakukan kueri ke URL di atas." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/is.js b/l10n/is.js index 9fcb6a94..3834ac55 100644 --- a/l10n/is.js +++ b/l10n/is.js @@ -1,32 +1,62 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Örgjörvaupplýsingar ekki tiltækar", - "Copied!" : "Afritað!", - "Not supported!" : "Ekki stutt!", - "Press ⌘-C to copy." : "Ýttu á ⌘-C til að afrita.", - "Press Ctrl-C to copy." : "Ýttu á Ctrl-C til að afrita.", "System" : "Kerfið", + "Unknown" : "Óþekkt", "Monitoring" : "Vöktun", "Monitoring app with useful server information" : "Vöktunarforrit sem nær í ýmsar notadrjúgar upplýsingar um þjón", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gefur nytsamlegar upplýsingar um vefþjón, svo sem álag á örgjörva, diskanotkun, fjölda notenda, o.s.frv.", - "Temperature" : "Hitastig", + "Active users" : "Virkir notendur", + "Webcron" : "Webcron", + "Background jobs" : "Verk í bakgrunni", + "Mode" : "Hamur", + "Never" : "Aldrei", "Load" : "Hlaða inn", - "Memory" : "Vinnsluminni", - "Disk" : "Diskur", + "CPU info not available" : "Örgjörvaupplýsingar ekki tiltækar", + "Current usage" : "Núverandi notkun", + "Load average" : "Meðaltalsálag", + "Database" : "Gagnagrunnur", + "Type:" : "Tegund:", + "Version:" : "Útgáfa:", "Size:" : "Stærð:", - "Files:" : "Skrár:", - "Storages:" : "Gagnageymslur", - "Free Space:" : "Laust diskapláss:", + "Used" : "Notað", + "Available" : "Tiltækt", + "Disk" : "Diskur", + "Files" : "Skráaforrit", + "Started" : "Ræst", + "Duration" : "Tímalengd", + "Details" : "Nánar", + "Running" : "Hlaup", + "Memory" : "Vinnsluminni", + "Total" : "Alls", + "Authentication" : "Auðkenning", "Network" : "Netkerfi", - "Active users" : "Virkir notendur", - "Shares" : "Sameignir", - "Users:" : "Notendur:", + "Hostname" : "Vélarheiti", + "Gateway" : "Netgátt (gateway)", + "DNS" : "DNS", + "Keys" : "Lyklar", + "Disabled" : "Óvirkt", + "seconds" : "sekúndum", + "Yes" : "Já", + "No" : "Nei", + "PHP extensions" : "PHP-viðaukar", + "Extension" : "Skráarending", "PHP" : "PHP", - "Version:" : "Útgáfa:", + "Version" : "Útgáfa", "Upload max size:" : "Hámarksstærð innsendingar:", - "Database" : "Gagnagrunnur", - "Type:" : "Tegund:", + "CPU" : "Örgjörvi", + "Shares" : "Sameignir", + "Users:" : "Notendur:", + "Average" : "Meðaltal", + "Warning" : "Aðvörun", + "Temperature" : "Hitastig", + "Copied!" : "Afritað!", + "Not supported!" : "Ekki stutt!", + "Press ⌘-C to copy." : "Ýttu á ⌘-C til að afrita.", + "Press Ctrl-C to copy." : "Ýttu á Ctrl-C til að afrita.", + "Files:" : "Skrár:", + "Storages:" : "Gagnageymslur", + "Free Space:" : "Laust diskapláss:", "External monitoring tool" : "Utanaðkomandi vöktunartól", "Copy" : "Afrita" }, diff --git a/l10n/is.json b/l10n/is.json index 0eb76b5a..00a0ed58 100644 --- a/l10n/is.json +++ b/l10n/is.json @@ -1,30 +1,60 @@ { "translations": { - "CPU info not available" : "Örgjörvaupplýsingar ekki tiltækar", - "Copied!" : "Afritað!", - "Not supported!" : "Ekki stutt!", - "Press ⌘-C to copy." : "Ýttu á ⌘-C til að afrita.", - "Press Ctrl-C to copy." : "Ýttu á Ctrl-C til að afrita.", "System" : "Kerfið", + "Unknown" : "Óþekkt", "Monitoring" : "Vöktun", "Monitoring app with useful server information" : "Vöktunarforrit sem nær í ýmsar notadrjúgar upplýsingar um þjón", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gefur nytsamlegar upplýsingar um vefþjón, svo sem álag á örgjörva, diskanotkun, fjölda notenda, o.s.frv.", - "Temperature" : "Hitastig", + "Active users" : "Virkir notendur", + "Webcron" : "Webcron", + "Background jobs" : "Verk í bakgrunni", + "Mode" : "Hamur", + "Never" : "Aldrei", "Load" : "Hlaða inn", - "Memory" : "Vinnsluminni", - "Disk" : "Diskur", + "CPU info not available" : "Örgjörvaupplýsingar ekki tiltækar", + "Current usage" : "Núverandi notkun", + "Load average" : "Meðaltalsálag", + "Database" : "Gagnagrunnur", + "Type:" : "Tegund:", + "Version:" : "Útgáfa:", "Size:" : "Stærð:", - "Files:" : "Skrár:", - "Storages:" : "Gagnageymslur", - "Free Space:" : "Laust diskapláss:", + "Used" : "Notað", + "Available" : "Tiltækt", + "Disk" : "Diskur", + "Files" : "Skráaforrit", + "Started" : "Ræst", + "Duration" : "Tímalengd", + "Details" : "Nánar", + "Running" : "Hlaup", + "Memory" : "Vinnsluminni", + "Total" : "Alls", + "Authentication" : "Auðkenning", "Network" : "Netkerfi", - "Active users" : "Virkir notendur", - "Shares" : "Sameignir", - "Users:" : "Notendur:", + "Hostname" : "Vélarheiti", + "Gateway" : "Netgátt (gateway)", + "DNS" : "DNS", + "Keys" : "Lyklar", + "Disabled" : "Óvirkt", + "seconds" : "sekúndum", + "Yes" : "Já", + "No" : "Nei", + "PHP extensions" : "PHP-viðaukar", + "Extension" : "Skráarending", "PHP" : "PHP", - "Version:" : "Útgáfa:", + "Version" : "Útgáfa", "Upload max size:" : "Hámarksstærð innsendingar:", - "Database" : "Gagnagrunnur", - "Type:" : "Tegund:", + "CPU" : "Örgjörvi", + "Shares" : "Sameignir", + "Users:" : "Notendur:", + "Average" : "Meðaltal", + "Warning" : "Aðvörun", + "Temperature" : "Hitastig", + "Copied!" : "Afritað!", + "Not supported!" : "Ekki stutt!", + "Press ⌘-C to copy." : "Ýttu á ⌘-C til að afrita.", + "Press Ctrl-C to copy." : "Ýttu á Ctrl-C til að afrita.", + "Files:" : "Skrár:", + "Storages:" : "Gagnageymslur", + "Free Space:" : "Laust diskapláss:", "External monitoring tool" : "Utanaðkomandi vöktunartól", "Copy" : "Afrita" },"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);" diff --git a/l10n/it.js b/l10n/it.js index 3ea42c43..4e8da699 100644 --- a/l10n/it.js +++ b/l10n/it.js @@ -1,56 +1,83 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informazioni CPU non disponibili", - "CPU Usage:" : "Utilizzo CPU:", - "Load average: {percentage} % ({load}) last minute" : "Carico medio: {percentage} % ({load}) ultimo minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute})ultimo minuto\n{last5MinutesPercentage} % ({last5Minutes}) ultimi 5 minuti\n{last15MinutesPercentage} % ({last15Minutes}) ultimi 15 minuti", - "RAM Usage:" : "Utilizzo RAM:", - "SWAP Usage:" : "Utilizzo SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totale: {memTotalBytes}/Uso attuale: {memUsageBytes}", - "RAM info not available" : "Informazioni RAM non disponibili", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totale: {swapTotalBytes}/Uso attuale: {swapUsageBytes}", - "SWAP info not available" : "Informazioni SWAP non disponibili", - "Copied!" : "Copiato!", - "Not supported!" : "Non supportato!", - "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", - "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "System" : "Sistema", + "Unknown" : "Sconosciuto", "Monitoring" : "Monitoraggio", "Monitoring app with useful server information" : "Applicazione di monitoraggio con informazioni utili sul server", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", - "Operating System:" : "Sistema operativo:", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Ora del server:", - "Uptime:" : "Tempo di attività:", - "Temperature" : "Temperatura", + "Active users" : "Utenti attivi", + "Last hour" : "Ultima ora", + "Last 24 Hours" : "Ultime 24 ore", + "Last 7 Days" : "Ultimi 7 giorni", + "Last 30 Days" : "Ultimi 30 giorni", + "Webcron" : "Webcron", + "Background jobs" : "Operazioni in background", + "Mode" : "Modalità", + "Never" : "Mai", "Load" : "Carico", - "Memory" : "Memoria", + "CPU info not available" : "Informazioni CPU non disponibili", + "Current usage" : "Utilizzo attuale", + "Threads" : "Argomenti", + "Load average" : "Carico medio", + "Database" : "Database", + "Type:" : "Tipo:", + "Version:" : "Versione:", + "Size:" : "Dimensione:", + "Used" : "Utilizzati", + "Available" : "Disponibile", "Disk" : "Disco", + "Files" : "File", + "Storages" : "Archiviazioni", "Mount:" : "Mount:", "Filesystem:" : "Filesystem:", - "Size:" : "Dimensione:", "Available:" : "Disponibile:", "Used:" : "Utilizzato:", - "Files:" : "File:", - "Storages:" : "Archiviazioni:", - "Free Space:" : "Spazio libero:", + "Status" : "Stato", + "Started" : "Avviata", + "Duration" : "Durata", + "Job" : "Lavoro", + "When" : "Quando", + "Details" : "Dettagli", + "Failed" : "Non riuscito", + "Running" : "Corsa", + "Memory" : "Memoria", + "RAM info not available" : "Informazioni RAM non disponibili", + "Total" : "Totale", + "Configuration" : "Configurazione", + "Output in JSON" : "Output in JSON", + "Skip server update" : "Salta l'aggiornamento del server", + "Authentication" : "Autenticazione", "Network" : "Rete", - "Hostname:" : "Nome host:", - "Gateway:" : "Gateway:", + "Hostname" : "Nome host", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Stato:", "Speed:" : "Velocità:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Utenti attivi", - "Last hour" : "Ultima ora", - "%s%% of all users" : "%s%% di tutti gli utenti", - "Last 24 Hours" : "Ultime 24 ore", - "Last 7 Days" : "Ultimi 7 giorni", - "Last 30 Days" : "Ultimi 30 giorni", + "Keys" : "Chiavi", + "Disabled" : "Disabilitata", + "seconds" : "secondi", + "Yes" : "Sì", + "No" : "No", + "PHP extensions" : "Estensioni PHP", + "Extension" : "Estensione", + "Unable to list extensions" : "Impossibile elencare le estensioni", + "PHP" : "PHP", + "Version" : "Versione", + "Memory limit" : "Limite di memoria", + "Max execution time:" : "Tempo massimo di esecuzione:", + "Upload max size:" : "Dimensione massima caricamento:", + "Extensions:" : "Estensioni:", + "Show phpinfo" : "Mostra phpinfo", + "Accepted connections:" : "Connessioni accettate:", + "Total processes:" : "Totale processi:", + "Active processes:" : "Processi attivi:", + "Max active processes:" : "Numero massimo di processi attivi:", + "CPU" : "CPU", "Shares" : "Condivisioni", "Users:" : "Utenti:", "Groups:" : "Gruppi:", @@ -59,29 +86,40 @@ OC.L10N.register( "Federated sent:" : "Federati inviati:", "Federated received:" : "Federati ricevuti:", "Talk conversations:" : "Conversazioni di Talk:", - "PHP" : "PHP", - "Version:" : "Versione:", + "Average" : "Media", + "Warning" : "Attenzione", + "Operating System:" : "Sistema operativo:", + "CPU:" : "CPU:", + "Server time:" : "Ora del server:", + "Uptime:" : "Tempo di attività:", + "Temperature" : "Temperatura", + "CPU Usage:" : "Utilizzo CPU:", + "Load average: {percentage} % ({load}) last minute" : "Carico medio: {percentage} % ({load}) ultimo minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute})ultimo minuto\n{last5MinutesPercentage} % ({last5Minutes}) ultimi 5 minuti\n{last15MinutesPercentage} % ({last15Minutes}) ultimi 15 minuti", + "RAM Usage:" : "Utilizzo RAM:", + "SWAP Usage:" : "Utilizzo SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totale: {memTotalBytes}/Uso attuale: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totale: {swapTotalBytes}/Uso attuale: {swapUsageBytes}", + "SWAP info not available" : "Informazioni SWAP non disponibili", + "Copied!" : "Copiato!", + "Not supported!" : "Non supportato!", + "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", + "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", + "Memory:" : "Memoria:", + "Files:" : "File:", + "Storages:" : "Archiviazioni:", + "Free Space:" : "Spazio libero:", + "Hostname:" : "Nome host:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% di tutti gli utenti", "Memory limit:" : "Limite memoria:", - "Max execution time:" : "Tempo massimo di esecuzione:", - "Upload max size:" : "Dimensione massima caricamento:", "OPcache Revalidate Frequency:" : "Frequenza di riconvalida di OPcache:", - "Extensions:" : "Estensioni:", - "Unable to list extensions" : "Impossibile elencare le estensioni", - "Show phpinfo" : "Mostra phpinfo", - "Accepted connections:" : "Connessioni accettate:", - "Total processes:" : "Totale processi:", - "Active processes:" : "Processi attivi:", - "Max active processes:" : "Numero massimo di processi attivi:", - "Database" : "Database", - "Type:" : "Tipo:", "External monitoring tool" : "Strumento di controllo esterno", "Use this end point to connect an external monitoring tool:" : "Utilizzare questo endpoint per connettere uno strumento di monitoraggio esterno:", "Copy" : "Copia", - "Output in JSON" : "Output in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Salta la sezione app (includere la sezione app invierà una richiesta esterna all'app store)", - "Skip server update" : "Salta l'aggiornamento del server", "To use an access token, please generate one then set it using the following command:" : "Per usare un token di accesso, generane uno e poi impostalo con il comando seguente:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Poi passa il token con l'intestazione \"NC-Token\" quando richiami l'URL qua sopra.", - "Unknown Processor" : "Processore sconosciuto" + "DNS:" : "DNS:" }, "nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/it.json b/l10n/it.json index 0b4f25de..06882774 100644 --- a/l10n/it.json +++ b/l10n/it.json @@ -1,54 +1,81 @@ { "translations": { - "CPU info not available" : "Informazioni CPU non disponibili", - "CPU Usage:" : "Utilizzo CPU:", - "Load average: {percentage} % ({load}) last minute" : "Carico medio: {percentage} % ({load}) ultimo minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute})ultimo minuto\n{last5MinutesPercentage} % ({last5Minutes}) ultimi 5 minuti\n{last15MinutesPercentage} % ({last15Minutes}) ultimi 15 minuti", - "RAM Usage:" : "Utilizzo RAM:", - "SWAP Usage:" : "Utilizzo SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totale: {memTotalBytes}/Uso attuale: {memUsageBytes}", - "RAM info not available" : "Informazioni RAM non disponibili", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totale: {swapTotalBytes}/Uso attuale: {swapUsageBytes}", - "SWAP info not available" : "Informazioni SWAP non disponibili", - "Copied!" : "Copiato!", - "Not supported!" : "Non supportato!", - "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", - "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", "System" : "Sistema", + "Unknown" : "Sconosciuto", "Monitoring" : "Monitoraggio", "Monitoring app with useful server information" : "Applicazione di monitoraggio con informazioni utili sul server", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornisce informazioni utili sul server, come carico della CPU, utilizzo della memoria, utilizzo del disco, numero di utenti, ecc.", - "Operating System:" : "Sistema operativo:", - "CPU:" : "CPU:", - "Memory:" : "Memoria:", - "Server time:" : "Ora del server:", - "Uptime:" : "Tempo di attività:", - "Temperature" : "Temperatura", + "Active users" : "Utenti attivi", + "Last hour" : "Ultima ora", + "Last 24 Hours" : "Ultime 24 ore", + "Last 7 Days" : "Ultimi 7 giorni", + "Last 30 Days" : "Ultimi 30 giorni", + "Webcron" : "Webcron", + "Background jobs" : "Operazioni in background", + "Mode" : "Modalità", + "Never" : "Mai", "Load" : "Carico", - "Memory" : "Memoria", + "CPU info not available" : "Informazioni CPU non disponibili", + "Current usage" : "Utilizzo attuale", + "Threads" : "Argomenti", + "Load average" : "Carico medio", + "Database" : "Database", + "Type:" : "Tipo:", + "Version:" : "Versione:", + "Size:" : "Dimensione:", + "Used" : "Utilizzati", + "Available" : "Disponibile", "Disk" : "Disco", + "Files" : "File", + "Storages" : "Archiviazioni", "Mount:" : "Mount:", "Filesystem:" : "Filesystem:", - "Size:" : "Dimensione:", "Available:" : "Disponibile:", "Used:" : "Utilizzato:", - "Files:" : "File:", - "Storages:" : "Archiviazioni:", - "Free Space:" : "Spazio libero:", + "Status" : "Stato", + "Started" : "Avviata", + "Duration" : "Durata", + "Job" : "Lavoro", + "When" : "Quando", + "Details" : "Dettagli", + "Failed" : "Non riuscito", + "Running" : "Corsa", + "Memory" : "Memoria", + "RAM info not available" : "Informazioni RAM non disponibili", + "Total" : "Totale", + "Configuration" : "Configurazione", + "Output in JSON" : "Output in JSON", + "Skip server update" : "Salta l'aggiornamento del server", + "Authentication" : "Autenticazione", "Network" : "Rete", - "Hostname:" : "Nome host:", - "Gateway:" : "Gateway:", + "Hostname" : "Nome host", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Stato:", "Speed:" : "Velocità:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Utenti attivi", - "Last hour" : "Ultima ora", - "%s%% of all users" : "%s%% di tutti gli utenti", - "Last 24 Hours" : "Ultime 24 ore", - "Last 7 Days" : "Ultimi 7 giorni", - "Last 30 Days" : "Ultimi 30 giorni", + "Keys" : "Chiavi", + "Disabled" : "Disabilitata", + "seconds" : "secondi", + "Yes" : "Sì", + "No" : "No", + "PHP extensions" : "Estensioni PHP", + "Extension" : "Estensione", + "Unable to list extensions" : "Impossibile elencare le estensioni", + "PHP" : "PHP", + "Version" : "Versione", + "Memory limit" : "Limite di memoria", + "Max execution time:" : "Tempo massimo di esecuzione:", + "Upload max size:" : "Dimensione massima caricamento:", + "Extensions:" : "Estensioni:", + "Show phpinfo" : "Mostra phpinfo", + "Accepted connections:" : "Connessioni accettate:", + "Total processes:" : "Totale processi:", + "Active processes:" : "Processi attivi:", + "Max active processes:" : "Numero massimo di processi attivi:", + "CPU" : "CPU", "Shares" : "Condivisioni", "Users:" : "Utenti:", "Groups:" : "Gruppi:", @@ -57,29 +84,40 @@ "Federated sent:" : "Federati inviati:", "Federated received:" : "Federati ricevuti:", "Talk conversations:" : "Conversazioni di Talk:", - "PHP" : "PHP", - "Version:" : "Versione:", + "Average" : "Media", + "Warning" : "Attenzione", + "Operating System:" : "Sistema operativo:", + "CPU:" : "CPU:", + "Server time:" : "Ora del server:", + "Uptime:" : "Tempo di attività:", + "Temperature" : "Temperatura", + "CPU Usage:" : "Utilizzo CPU:", + "Load average: {percentage} % ({load}) last minute" : "Carico medio: {percentage} % ({load}) ultimo minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute})ultimo minuto\n{last5MinutesPercentage} % ({last5Minutes}) ultimi 5 minuti\n{last15MinutesPercentage} % ({last15Minutes}) ultimi 15 minuti", + "RAM Usage:" : "Utilizzo RAM:", + "SWAP Usage:" : "Utilizzo SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totale: {memTotalBytes}/Uso attuale: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totale: {swapTotalBytes}/Uso attuale: {swapUsageBytes}", + "SWAP info not available" : "Informazioni SWAP non disponibili", + "Copied!" : "Copiato!", + "Not supported!" : "Non supportato!", + "Press ⌘-C to copy." : "Premi ⌘-C per copiare.", + "Press Ctrl-C to copy." : "Premi Ctrl-C per copiare.", + "Memory:" : "Memoria:", + "Files:" : "File:", + "Storages:" : "Archiviazioni:", + "Free Space:" : "Spazio libero:", + "Hostname:" : "Nome host:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% di tutti gli utenti", "Memory limit:" : "Limite memoria:", - "Max execution time:" : "Tempo massimo di esecuzione:", - "Upload max size:" : "Dimensione massima caricamento:", "OPcache Revalidate Frequency:" : "Frequenza di riconvalida di OPcache:", - "Extensions:" : "Estensioni:", - "Unable to list extensions" : "Impossibile elencare le estensioni", - "Show phpinfo" : "Mostra phpinfo", - "Accepted connections:" : "Connessioni accettate:", - "Total processes:" : "Totale processi:", - "Active processes:" : "Processi attivi:", - "Max active processes:" : "Numero massimo di processi attivi:", - "Database" : "Database", - "Type:" : "Tipo:", "External monitoring tool" : "Strumento di controllo esterno", "Use this end point to connect an external monitoring tool:" : "Utilizzare questo endpoint per connettere uno strumento di monitoraggio esterno:", "Copy" : "Copia", - "Output in JSON" : "Output in JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Salta la sezione app (includere la sezione app invierà una richiesta esterna all'app store)", - "Skip server update" : "Salta l'aggiornamento del server", "To use an access token, please generate one then set it using the following command:" : "Per usare un token di accesso, generane uno e poi impostalo con il comando seguente:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Poi passa il token con l'intestazione \"NC-Token\" quando richiami l'URL qua sopra.", - "Unknown Processor" : "Processore sconosciuto" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ja.js b/l10n/ja.js index a0ad708d..07c65d5f 100644 --- a/l10n/ja.js +++ b/l10n/ja.js @@ -1,73 +1,81 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU情報が利用できません", - "CPU Usage:" : "CPU使用率:", - "Load average: {percentage} % ({load}) last minute" : "ロードアベレージ: {percentage}% ({load}) 直近1分間", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最新\n{last5MinutesPercentage}% ({last5Minutes}) 直近 5 分\n{last15MinutesPercentage}% ({last15Minutes}) 直近 15 分", - "RAM Usage:" : "RAM使用量:", - "SWAP Usage:" : "SWAP使用量:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 合計: {memTotalBytes}/現在の使用率: {memUsageBytes}", - "RAM info not available" : "RAM情報が利用不可", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "スワップ: 合計: {swapTotalBytes}/現在の使用率: {swapUsageBytes}", - "SWAP info not available" : "SWAP情報なし", - "Copied!" : "コピー完了", - "Not supported!" : "対応していません!", - "Press ⌘-C to copy." : "⌘-C でコピーします。", - "Press Ctrl-C to copy." : "Ctrl-Cを押してコピーします。", "System" : "システム", + "Unknown" : "不明", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d 日、%2$d 時間、%3$d 分、%4$d 秒", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d時間、%2$d分、%3$d秒", "Monitoring" : "モニタリング", "Monitoring app with useful server information" : "有用なサーバー情報でアプリケーションを監視する", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU負荷、メモリ使用量、ディスク使用量、ユーザー数などの役に立つサーバー情報を提供します。", - "Operating System:" : "OS:", - "CPU:" : "CPU:", - "threads" : "スレッド", - "Memory:" : "メモリ:", - "Server time:" : "サーバーの時間:", - "Uptime:" : "稼働時間:", - "Temperature" : "温度", + "Active users" : "アクティブユーザー数", + "Last hour" : "1時間以内", + "Last 24 Hours" : "24時間以内", + "Last 7 Days" : "7日以内", + "Last 30 Days" : "30日以内", + "Webcron" : "Webcron", + "Background jobs" : "バックグラウンドジョブ", + "Mode" : "モード", + "Never" : "なし", "Load" : "負荷", - "Memory" : "メモリ", + "CPU info not available" : "CPU情報が利用できません", + "Current usage" : "現在の利用量", + "Threads" : "スレッド", + "Load average" : "ロードアベレージ", + "Database" : "データベース", + "Type:" : "タイプ:", + "Version:" : "バージョン:", + "Size:" : "サイズ:", + "Used" : "使用中", + "Available" : "利用可能", "Disk" : "ディスク", + "Files" : "ファイル", + "Storages" : "ストレージ", "Mount:" : "マウント:", "Filesystem:" : "ファイルシステム:", - "Size:" : "サイズ:", "Available:" : "利用可能:", "Used:" : "使用中:", - "Files:" : "ファイル数:", - "Storages:" : "ストレージ:", - "Free Space:" : "空き容量:", + "Status" : "ステータス", + "Started" : "開始されました", + "Duration" : "期間", + "Job" : "仕事", + "When" : "いつ", + "Details" : "詳細", + "Succeeded" : "成功", + "Failed" : "失敗しました", + "Running" : "ランニング", + "Memory" : "メモリ", + "RAM info not available" : "RAM情報が利用不可", + "Total" : "合計", + "Configuration" : "設定", + "Output in JSON" : "JSONでの出力", + "Skip server update" : "サーバーの更新をスキップ", + "Authentication" : "認証", "Network" : "ネットワーク", - "Hostname:" : "ホスト名:", - "Gateway:" : "ゲートウェイ:", + "Hostname" : "ホスト名", + "Gateway" : "ゲートウェイ", + "DNS" : "DNS", "Status:" : "ステータス:", "Speed:" : "速度:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "アクティブユーザー数", - "Last hour" : "1時間以内", - "%s%% of all users" : "全ユーザーの%s%%", - "Last 24 Hours" : "24時間以内", - "Last 7 Days" : "7日以内", - "Last 30 Days" : "30日以内", - "Shares" : "共有数", - "Users:" : "ユーザー数:", - "Groups:" : "グループ:", - "Links:" : "リンク:", - "Emails:" : "メール: ", - "Federated sent:" : "統合送信:", - "Federated received:" : "統合受信:", - "Talk conversations:" : "会話:", + "Keys" : "キー", + "Disabled" : "無効", + "seconds" : "秒", + "Yes" : "はい", + "No" : "いいえ", + "PHP extensions" : "PHP拡張機能", + "Extension" : "拡張", + "Unable to list extensions" : "拡張リストを読み込めません", "PHP" : "PHP", - "Version:" : "バージョン:", - "Memory limit:" : "メモリ制限:", + "Version" : "バージョン", + "Memory limit" : "メモリ制限", "Max execution time:" : "最大実行時間:", "Upload max size:" : "最大アップロードサイズ:", - "OPcache Revalidate Frequency:" : "OPcache再検証の頻度:", "Extensions:" : "拡張:", - "Unable to list extensions" : "拡張リストを読み込めません", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "phpinfoを表示", "FPM worker pool" : "FPMワーカープール", "Pool name:" : "プール名:", @@ -82,16 +90,51 @@ OC.L10N.register( "Max listen queue:" : "最大のリッスン・キュー:", "Max active processes:" : "最大のアクティブなプロセス:", "Max children reached:" : "最大の子数に達した:", - "Database" : "データベース", - "Type:" : "タイプ:", + "CPU" : "CPU", + "Shares" : "共有数", + "Users:" : "ユーザー数:", + "Groups:" : "グループ:", + "Links:" : "リンク:", + "Emails:" : "メール: ", + "Federated sent:" : "統合送信:", + "Federated received:" : "統合受信:", + "Talk conversations:" : "会話:", + "Average" : "平均", + "Warning" : "警告", + "Operating System:" : "OS:", + "CPU:" : "CPU:", + "Server time:" : "サーバーの時間:", + "Uptime:" : "稼働時間:", + "Temperature" : "温度", + "CPU Usage:" : "CPU使用率:", + "Load average: {percentage} % ({load}) last minute" : "ロードアベレージ: {percentage}% ({load}) 直近1分間", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最新\n{last5MinutesPercentage}% ({last5Minutes}) 直近 5 分\n{last15MinutesPercentage}% ({last15Minutes}) 直近 15 分", + "RAM Usage:" : "RAM使用量:", + "SWAP Usage:" : "SWAP使用量:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 合計: {memTotalBytes}/現在の使用率: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "スワップ: 合計: {swapTotalBytes}/現在の使用率: {swapUsageBytes}", + "SWAP info not available" : "SWAP情報なし", + "Copied!" : "コピー完了", + "Not supported!" : "対応していません!", + "Press ⌘-C to copy." : "⌘-C でコピーします。", + "Press Ctrl-C to copy." : "Ctrl-Cを押してコピーします。", + "threads" : "スレッド", + "Memory:" : "メモリ:", + "Files:" : "ファイル数:", + "Storages:" : "ストレージ:", + "Free Space:" : "空き容量:", + "Hostname:" : "ホスト名:", + "Gateway:" : "ゲートウェイ:", + "%s%% of all users" : "全ユーザーの%s%%", + "Memory limit:" : "メモリ制限:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache再検証の頻度:", "External monitoring tool" : "外部モニタリングツール", "Use this end point to connect an external monitoring tool:" : "このエンドポイントを使用して外部モニタリングツールを接続します:", "Copy" : "コピー", - "Output in JSON" : "JSONでの出力", "Skip apps section (including apps section will send an external request to the app store)" : "アプリセクションをスキップする(アプリセクションを含むとアプリストアに外部リクエストが送信される)", - "Skip server update" : "サーバーの更新をスキップ", "To use an access token, please generate one then set it using the following command:" : "アクセストークンを使用するには、アクセストークンを生成し、以下のコマンドで設定してください。", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "次に、上記のURLをクエリするときに、\"NC-Token\" ヘッダーでトークンを渡します。", - "Unknown Processor" : "不明なプロセッサー" + "DNS:" : "DNS:" }, "nplurals=1; plural=0;"); diff --git a/l10n/ja.json b/l10n/ja.json index 8cb25f3d..6fde0bf1 100644 --- a/l10n/ja.json +++ b/l10n/ja.json @@ -1,71 +1,79 @@ { "translations": { - "CPU info not available" : "CPU情報が利用できません", - "CPU Usage:" : "CPU使用率:", - "Load average: {percentage} % ({load}) last minute" : "ロードアベレージ: {percentage}% ({load}) 直近1分間", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最新\n{last5MinutesPercentage}% ({last5Minutes}) 直近 5 分\n{last15MinutesPercentage}% ({last15Minutes}) 直近 15 分", - "RAM Usage:" : "RAM使用量:", - "SWAP Usage:" : "SWAP使用量:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 合計: {memTotalBytes}/現在の使用率: {memUsageBytes}", - "RAM info not available" : "RAM情報が利用不可", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "スワップ: 合計: {swapTotalBytes}/現在の使用率: {swapUsageBytes}", - "SWAP info not available" : "SWAP情報なし", - "Copied!" : "コピー完了", - "Not supported!" : "対応していません!", - "Press ⌘-C to copy." : "⌘-C でコピーします。", - "Press Ctrl-C to copy." : "Ctrl-Cを押してコピーします。", "System" : "システム", + "Unknown" : "不明", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d 日、%2$d 時間、%3$d 分、%4$d 秒", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d時間、%2$d分、%3$d秒", "Monitoring" : "モニタリング", "Monitoring app with useful server information" : "有用なサーバー情報でアプリケーションを監視する", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU負荷、メモリ使用量、ディスク使用量、ユーザー数などの役に立つサーバー情報を提供します。", - "Operating System:" : "OS:", - "CPU:" : "CPU:", - "threads" : "スレッド", - "Memory:" : "メモリ:", - "Server time:" : "サーバーの時間:", - "Uptime:" : "稼働時間:", - "Temperature" : "温度", + "Active users" : "アクティブユーザー数", + "Last hour" : "1時間以内", + "Last 24 Hours" : "24時間以内", + "Last 7 Days" : "7日以内", + "Last 30 Days" : "30日以内", + "Webcron" : "Webcron", + "Background jobs" : "バックグラウンドジョブ", + "Mode" : "モード", + "Never" : "なし", "Load" : "負荷", - "Memory" : "メモリ", + "CPU info not available" : "CPU情報が利用できません", + "Current usage" : "現在の利用量", + "Threads" : "スレッド", + "Load average" : "ロードアベレージ", + "Database" : "データベース", + "Type:" : "タイプ:", + "Version:" : "バージョン:", + "Size:" : "サイズ:", + "Used" : "使用中", + "Available" : "利用可能", "Disk" : "ディスク", + "Files" : "ファイル", + "Storages" : "ストレージ", "Mount:" : "マウント:", "Filesystem:" : "ファイルシステム:", - "Size:" : "サイズ:", "Available:" : "利用可能:", "Used:" : "使用中:", - "Files:" : "ファイル数:", - "Storages:" : "ストレージ:", - "Free Space:" : "空き容量:", + "Status" : "ステータス", + "Started" : "開始されました", + "Duration" : "期間", + "Job" : "仕事", + "When" : "いつ", + "Details" : "詳細", + "Succeeded" : "成功", + "Failed" : "失敗しました", + "Running" : "ランニング", + "Memory" : "メモリ", + "RAM info not available" : "RAM情報が利用不可", + "Total" : "合計", + "Configuration" : "設定", + "Output in JSON" : "JSONでの出力", + "Skip server update" : "サーバーの更新をスキップ", + "Authentication" : "認証", "Network" : "ネットワーク", - "Hostname:" : "ホスト名:", - "Gateway:" : "ゲートウェイ:", + "Hostname" : "ホスト名", + "Gateway" : "ゲートウェイ", + "DNS" : "DNS", "Status:" : "ステータス:", "Speed:" : "速度:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "アクティブユーザー数", - "Last hour" : "1時間以内", - "%s%% of all users" : "全ユーザーの%s%%", - "Last 24 Hours" : "24時間以内", - "Last 7 Days" : "7日以内", - "Last 30 Days" : "30日以内", - "Shares" : "共有数", - "Users:" : "ユーザー数:", - "Groups:" : "グループ:", - "Links:" : "リンク:", - "Emails:" : "メール: ", - "Federated sent:" : "統合送信:", - "Federated received:" : "統合受信:", - "Talk conversations:" : "会話:", + "Keys" : "キー", + "Disabled" : "無効", + "seconds" : "秒", + "Yes" : "はい", + "No" : "いいえ", + "PHP extensions" : "PHP拡張機能", + "Extension" : "拡張", + "Unable to list extensions" : "拡張リストを読み込めません", "PHP" : "PHP", - "Version:" : "バージョン:", - "Memory limit:" : "メモリ制限:", + "Version" : "バージョン", + "Memory limit" : "メモリ制限", "Max execution time:" : "最大実行時間:", "Upload max size:" : "最大アップロードサイズ:", - "OPcache Revalidate Frequency:" : "OPcache再検証の頻度:", "Extensions:" : "拡張:", - "Unable to list extensions" : "拡張リストを読み込めません", + "PHP Info:" : "PHP Info:", "Show phpinfo" : "phpinfoを表示", "FPM worker pool" : "FPMワーカープール", "Pool name:" : "プール名:", @@ -80,16 +88,51 @@ "Max listen queue:" : "最大のリッスン・キュー:", "Max active processes:" : "最大のアクティブなプロセス:", "Max children reached:" : "最大の子数に達した:", - "Database" : "データベース", - "Type:" : "タイプ:", + "CPU" : "CPU", + "Shares" : "共有数", + "Users:" : "ユーザー数:", + "Groups:" : "グループ:", + "Links:" : "リンク:", + "Emails:" : "メール: ", + "Federated sent:" : "統合送信:", + "Federated received:" : "統合受信:", + "Talk conversations:" : "会話:", + "Average" : "平均", + "Warning" : "警告", + "Operating System:" : "OS:", + "CPU:" : "CPU:", + "Server time:" : "サーバーの時間:", + "Uptime:" : "稼働時間:", + "Temperature" : "温度", + "CPU Usage:" : "CPU使用率:", + "Load average: {percentage} % ({load}) last minute" : "ロードアベレージ: {percentage}% ({load}) 直近1分間", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最新\n{last5MinutesPercentage}% ({last5Minutes}) 直近 5 分\n{last15MinutesPercentage}% ({last15Minutes}) 直近 15 分", + "RAM Usage:" : "RAM使用量:", + "SWAP Usage:" : "SWAP使用量:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 合計: {memTotalBytes}/現在の使用率: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "スワップ: 合計: {swapTotalBytes}/現在の使用率: {swapUsageBytes}", + "SWAP info not available" : "SWAP情報なし", + "Copied!" : "コピー完了", + "Not supported!" : "対応していません!", + "Press ⌘-C to copy." : "⌘-C でコピーします。", + "Press Ctrl-C to copy." : "Ctrl-Cを押してコピーします。", + "threads" : "スレッド", + "Memory:" : "メモリ:", + "Files:" : "ファイル数:", + "Storages:" : "ストレージ:", + "Free Space:" : "空き容量:", + "Hostname:" : "ホスト名:", + "Gateway:" : "ゲートウェイ:", + "%s%% of all users" : "全ユーザーの%s%%", + "Memory limit:" : "メモリ制限:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache再検証の頻度:", "External monitoring tool" : "外部モニタリングツール", "Use this end point to connect an external monitoring tool:" : "このエンドポイントを使用して外部モニタリングツールを接続します:", "Copy" : "コピー", - "Output in JSON" : "JSONでの出力", "Skip apps section (including apps section will send an external request to the app store)" : "アプリセクションをスキップする(アプリセクションを含むとアプリストアに外部リクエストが送信される)", - "Skip server update" : "サーバーの更新をスキップ", "To use an access token, please generate one then set it using the following command:" : "アクセストークンを使用するには、アクセストークンを生成し、以下のコマンドで設定してください。", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "次に、上記のURLをクエリするときに、\"NC-Token\" ヘッダーでトークンを渡します。", - "Unknown Processor" : "不明なプロセッサー" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/ka.js b/l10n/ka.js index 6c5df90d..e5a9d281 100644 --- a/l10n/ka.js +++ b/l10n/ka.js @@ -1,46 +1,62 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU info not available", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", - "RAM info not available" : "RAM info not available", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", - "SWAP info not available" : "SWAP info not available", - "Copied!" : "Copied!", - "Not supported!" : "Not supported!", - "Press ⌘-C to copy." : "Press ⌘-C to copy.", - "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", "System" : "System", + "Unknown" : "Unknown", "Monitoring" : "Monitoring", "Monitoring app with useful server information" : "Monitoring app with useful server information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc.", - "Operating System:" : "Operating System:", - "CPU:" : "CPU:", - "Memory:" : "Memory:", - "Server time:" : "Server time:", - "Uptime:" : "Uptime:", - "Temperature" : "Temperature", + "Active users" : "Active users", + "Webcron" : "Webcron", + "Background jobs" : "Background jobs", + "Never" : "Never", "Load" : "Load", - "Memory" : "Memory", + "CPU info not available" : "CPU info not available", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", + "Size:" : "Size:", + "Available" : "Available", "Disk" : "Disk", + "Files" : "ფაილები", "Mount:" : "Mount:", "Filesystem:" : "Filesystem:", - "Size:" : "Size:", "Available:" : "Available:", "Used:" : "Used:", - "Files:" : "Files:", - "Storages:" : "Storages:", - "Free Space:" : "Free Space:", + "Status" : "Status", + "Started" : "Started", + "Duration" : "Duration", + "When" : "When", + "Details" : "Details", + "Failed" : "Failed", + "Running" : "Running", + "Memory" : "Memory", + "RAM info not available" : "RAM info not available", + "Configuration" : "Configuration", + "Output in JSON" : "Output in JSON", + "Skip server update" : "Skip server update", + "Authentication" : "Authentication", "Network" : "Network", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Hostname", "Status:" : "Status:", "Speed:" : "Speed:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Active users", + "Keys" : "Keys", + "Disabled" : "Disabled", + "seconds" : "seconds", + "Yes" : "დიახ", + "No" : "არა", + "PHP extensions" : "PHP extensions", + "Unable to list extensions" : "Unable to list extensions", + "PHP" : "PHP", + "Version" : "ვერსია", + "Max execution time:" : "Max execution time:", + "Upload max size:" : "Upload max size:", + "Extensions:" : "Extensions:", + "Show phpinfo" : "Show phpinfo", "Shares" : "Shares", "Users:" : "Users:", "Groups:" : "Groups:", @@ -49,24 +65,32 @@ OC.L10N.register( "Federated sent:" : "Federated sent:", "Federated received:" : "Federated received:", "Talk conversations:" : "Talk conversations:", - "PHP" : "PHP", - "Version:" : "Version:", + "Warning" : "Warning", + "Operating System:" : "Operating System:", + "CPU:" : "CPU:", + "Server time:" : "Server time:", + "Uptime:" : "Uptime:", + "Temperature" : "Temperature", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", + "SWAP info not available" : "SWAP info not available", + "Copied!" : "Copied!", + "Not supported!" : "Not supported!", + "Press ⌘-C to copy." : "Press ⌘-C to copy.", + "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", + "Memory:" : "Memory:", + "Files:" : "Files:", + "Storages:" : "Storages:", + "Free Space:" : "Free Space:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", "Memory limit:" : "Memory limit:", - "Max execution time:" : "Max execution time:", - "Upload max size:" : "Upload max size:", "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", - "Extensions:" : "Extensions:", - "Unable to list extensions" : "Unable to list extensions", - "Show phpinfo" : "Show phpinfo", - "Database" : "Database", - "Type:" : "Type:", "External monitoring tool" : "External monitoring tool", "Use this end point to connect an external monitoring tool:" : "Use this end point to connect an external monitoring tool:", "Copy" : "Copy", - "Output in JSON" : "Output in JSON", - "Skip server update" : "Skip server update", "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL.", - "Unknown Processor" : "Unknown Processor" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n!=1);"); diff --git a/l10n/ka.json b/l10n/ka.json index 3c5660ed..a7f4590c 100644 --- a/l10n/ka.json +++ b/l10n/ka.json @@ -1,44 +1,60 @@ { "translations": { - "CPU info not available" : "CPU info not available", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", - "RAM info not available" : "RAM info not available", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", - "SWAP info not available" : "SWAP info not available", - "Copied!" : "Copied!", - "Not supported!" : "Not supported!", - "Press ⌘-C to copy." : "Press ⌘-C to copy.", - "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", "System" : "System", + "Unknown" : "Unknown", "Monitoring" : "Monitoring", "Monitoring app with useful server information" : "Monitoring app with useful server information", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc.", - "Operating System:" : "Operating System:", - "CPU:" : "CPU:", - "Memory:" : "Memory:", - "Server time:" : "Server time:", - "Uptime:" : "Uptime:", - "Temperature" : "Temperature", + "Active users" : "Active users", + "Webcron" : "Webcron", + "Background jobs" : "Background jobs", + "Never" : "Never", "Load" : "Load", - "Memory" : "Memory", + "CPU info not available" : "CPU info not available", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", + "Size:" : "Size:", + "Available" : "Available", "Disk" : "Disk", + "Files" : "ფაილები", "Mount:" : "Mount:", "Filesystem:" : "Filesystem:", - "Size:" : "Size:", "Available:" : "Available:", "Used:" : "Used:", - "Files:" : "Files:", - "Storages:" : "Storages:", - "Free Space:" : "Free Space:", + "Status" : "Status", + "Started" : "Started", + "Duration" : "Duration", + "When" : "When", + "Details" : "Details", + "Failed" : "Failed", + "Running" : "Running", + "Memory" : "Memory", + "RAM info not available" : "RAM info not available", + "Configuration" : "Configuration", + "Output in JSON" : "Output in JSON", + "Skip server update" : "Skip server update", + "Authentication" : "Authentication", "Network" : "Network", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Hostname", "Status:" : "Status:", "Speed:" : "Speed:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Active users", + "Keys" : "Keys", + "Disabled" : "Disabled", + "seconds" : "seconds", + "Yes" : "დიახ", + "No" : "არა", + "PHP extensions" : "PHP extensions", + "Unable to list extensions" : "Unable to list extensions", + "PHP" : "PHP", + "Version" : "ვერსია", + "Max execution time:" : "Max execution time:", + "Upload max size:" : "Upload max size:", + "Extensions:" : "Extensions:", + "Show phpinfo" : "Show phpinfo", "Shares" : "Shares", "Users:" : "Users:", "Groups:" : "Groups:", @@ -47,24 +63,32 @@ "Federated sent:" : "Federated sent:", "Federated received:" : "Federated received:", "Talk conversations:" : "Talk conversations:", - "PHP" : "PHP", - "Version:" : "Version:", + "Warning" : "Warning", + "Operating System:" : "Operating System:", + "CPU:" : "CPU:", + "Server time:" : "Server time:", + "Uptime:" : "Uptime:", + "Temperature" : "Temperature", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", + "SWAP info not available" : "SWAP info not available", + "Copied!" : "Copied!", + "Not supported!" : "Not supported!", + "Press ⌘-C to copy." : "Press ⌘-C to copy.", + "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", + "Memory:" : "Memory:", + "Files:" : "Files:", + "Storages:" : "Storages:", + "Free Space:" : "Free Space:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", "Memory limit:" : "Memory limit:", - "Max execution time:" : "Max execution time:", - "Upload max size:" : "Upload max size:", "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", - "Extensions:" : "Extensions:", - "Unable to list extensions" : "Unable to list extensions", - "Show phpinfo" : "Show phpinfo", - "Database" : "Database", - "Type:" : "Type:", "External monitoring tool" : "External monitoring tool", "Use this end point to connect an external monitoring tool:" : "Use this end point to connect an external monitoring tool:", "Copy" : "Copy", - "Output in JSON" : "Output in JSON", - "Skip server update" : "Skip server update", "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL.", - "Unknown Processor" : "Unknown Processor" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n!=1);" } \ No newline at end of file diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js index 1981f190..7b8d7f2b 100644 --- a/l10n/ka_GE.js +++ b/l10n/ka_GE.js @@ -1,23 +1,39 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "კოპირებულია!", - "Not supported!" : "არაა მხარდაჭერილი", - "Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.", - "Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.", "System" : "სისტემა", + "Unknown" : "უცნობია", "Monitoring" : "მონიტორინგი", - "Temperature" : "ტემპერატურა", - "Size:" : "ზომა:", - "Files:" : "ფაილები", "Active users" : "აქტიური მომხმარებლები", - "Shares" : "გაზიარებები", - "Users:" : "მომხმარებლები:", - "PHP" : "PHP", - "Version:" : "ვერსია:", - "Upload max size:" : "ატვირთვის მაქს. ზომა:", + "Background jobs" : "ფონური საქმეები", + "Mode" : "რეჟიმი", + "Never" : "არასდროს", + "Current usage" : "ამჟამინდელი მოხმარება", + "Load average" : "საშუალო დატვირთვა", "Database" : "მონაცემთა ბაზა", "Type:" : "ტიპი:", + "Version:" : "ვერსია:", + "Size:" : "ზომა:", + "Status" : "სტაუტის", + "Details" : "დეტალები", + "Total" : "სულ", + "Authentication" : "აუტენტიფიკაცია", + "Hostname" : "ჰოსტი", + "Disabled" : "არაა მოქმედი", + "Yes" : "დიახ", + "PHP extensions" : "PHP გაფართოებები", + "PHP" : "PHP", + "Version" : "ვერსია", + "Upload max size:" : "ატვირთვის მაქს. ზომა:", + "Shares" : "გაზიარებები", + "Users:" : "მომხმარებლები:", + "Warning" : "გაფრთხილება", + "Temperature" : "ტემპერატურა", + "Copied!" : "კოპირებულია!", + "Not supported!" : "არაა მხარდაჭერილი", + "Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.", + "Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.", + "Files:" : "ფაილები", "External monitoring tool" : "გარე მონიტორინგის ხელსაწყო", "Copy" : "კოპირება" }, diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json index 13b70391..0f0a4e78 100644 --- a/l10n/ka_GE.json +++ b/l10n/ka_GE.json @@ -1,21 +1,37 @@ { "translations": { - "Copied!" : "კოპირებულია!", - "Not supported!" : "არაა მხარდაჭერილი", - "Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.", - "Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.", "System" : "სისტემა", + "Unknown" : "უცნობია", "Monitoring" : "მონიტორინგი", - "Temperature" : "ტემპერატურა", - "Size:" : "ზომა:", - "Files:" : "ფაილები", "Active users" : "აქტიური მომხმარებლები", - "Shares" : "გაზიარებები", - "Users:" : "მომხმარებლები:", - "PHP" : "PHP", - "Version:" : "ვერსია:", - "Upload max size:" : "ატვირთვის მაქს. ზომა:", + "Background jobs" : "ფონური საქმეები", + "Mode" : "რეჟიმი", + "Never" : "არასდროს", + "Current usage" : "ამჟამინდელი მოხმარება", + "Load average" : "საშუალო დატვირთვა", "Database" : "მონაცემთა ბაზა", "Type:" : "ტიპი:", + "Version:" : "ვერსია:", + "Size:" : "ზომა:", + "Status" : "სტაუტის", + "Details" : "დეტალები", + "Total" : "სულ", + "Authentication" : "აუტენტიფიკაცია", + "Hostname" : "ჰოსტი", + "Disabled" : "არაა მოქმედი", + "Yes" : "დიახ", + "PHP extensions" : "PHP გაფართოებები", + "PHP" : "PHP", + "Version" : "ვერსია", + "Upload max size:" : "ატვირთვის მაქს. ზომა:", + "Shares" : "გაზიარებები", + "Users:" : "მომხმარებლები:", + "Warning" : "გაფრთხილება", + "Temperature" : "ტემპერატურა", + "Copied!" : "კოპირებულია!", + "Not supported!" : "არაა მხარდაჭერილი", + "Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.", + "Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.", + "Files:" : "ფაილები", "External monitoring tool" : "გარე მონიტორინგის ხელსაწყო", "Copy" : "კოპირება" },"pluralForm" :"nplurals=2; plural=(n!=1);" diff --git a/l10n/kab.js b/l10n/kab.js index c76d05a7..41a1a6ee 100644 --- a/l10n/kab.js +++ b/l10n/kab.js @@ -1,11 +1,37 @@ OC.L10N.register( "serverinfo", { + "System" : "Anagraw", + "Unknown" : "Arussin", + "Mode" : "Askar", + "Never" : "Weṛǧin", + "Threads" : "Asqerdec", + "Database" : "Taffa n isefka", + "Type:" : "Anaw:", + "Available" : "I yellan", + "Files" : "Ifuyla", + "Status" : "Addad", + "Started" : "Yebda", + "Duration" : "Tanzagt", + "Details" : "Talqayt", + "Failed" : "Ur yeddi ara", + "Total" : "Aɣrud", + "Configuration" : "Tawila", + "Authentication" : "Asesteb", + "Status:" : "aẓayeṛ", + "Disabled" : "Ittwarermed", + "seconds" : "tisinin", + "Yes" : "Ih", + "No" : "Uhu", + "Extension" : "Asiɣzef", + "PHP" : "PHP", + "Version" : "Lqem", + "Warning" : "Alɣu", + "Temperature" : "Lḥamu", "Copied!" : "Yenɣel!", "Not supported!" : "Ur yettusefrak ara!", "Press ⌘-C to copy." : "Senned ɣef ⌘-C akken ad tneɣleḍ.", "Press Ctrl-C to copy." : "Senned ɣef Ctrl-C akken ad tneɣleḍ.", - "Temperature" : "Lḥamu", "Copy" : "Nɣel" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/kab.json b/l10n/kab.json index 93e45686..cebc824f 100644 --- a/l10n/kab.json +++ b/l10n/kab.json @@ -1,9 +1,35 @@ { "translations": { + "System" : "Anagraw", + "Unknown" : "Arussin", + "Mode" : "Askar", + "Never" : "Weṛǧin", + "Threads" : "Asqerdec", + "Database" : "Taffa n isefka", + "Type:" : "Anaw:", + "Available" : "I yellan", + "Files" : "Ifuyla", + "Status" : "Addad", + "Started" : "Yebda", + "Duration" : "Tanzagt", + "Details" : "Talqayt", + "Failed" : "Ur yeddi ara", + "Total" : "Aɣrud", + "Configuration" : "Tawila", + "Authentication" : "Asesteb", + "Status:" : "aẓayeṛ", + "Disabled" : "Ittwarermed", + "seconds" : "tisinin", + "Yes" : "Ih", + "No" : "Uhu", + "Extension" : "Asiɣzef", + "PHP" : "PHP", + "Version" : "Lqem", + "Warning" : "Alɣu", + "Temperature" : "Lḥamu", "Copied!" : "Yenɣel!", "Not supported!" : "Ur yettusefrak ara!", "Press ⌘-C to copy." : "Senned ɣef ⌘-C akken ad tneɣleḍ.", "Press Ctrl-C to copy." : "Senned ɣef Ctrl-C akken ad tneɣleḍ.", - "Temperature" : "Lḥamu", "Copy" : "Nɣel" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/km.js b/l10n/km.js index f2ecfde2..fc1cf653 100644 --- a/l10n/km.js +++ b/l10n/km.js @@ -1,11 +1,17 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "បានចម្លង", - "Press ⌘-C to copy." : " ចុច ⌘-C ដើម្បីចម្លង", - "Press Ctrl-C to copy." : "ចុច Ctrl-C ដើម្បីចម្លង", + "Type:" : "ប្រភេទ៖", "Size:" : "ទំហំ៖", + "Details" : "ព័ត៌មាន​លម្អិត", + "Disabled" : "បាន​បិទ", + "Yes" : "បាទ ឬចាស", + "No" : "ទេ", + "Version" : "កំណែ", "Shares" : "ចែក​រំលែក", - "Type:" : "ប្រភេទ៖" + "Warning" : "បម្រាម", + "Copied!" : "បានចម្លង", + "Press ⌘-C to copy." : " ចុច ⌘-C ដើម្បីចម្លង", + "Press Ctrl-C to copy." : "ចុច Ctrl-C ដើម្បីចម្លង" }, "nplurals=1; plural=0;"); diff --git a/l10n/km.json b/l10n/km.json index 12f033cb..d0094ae7 100644 --- a/l10n/km.json +++ b/l10n/km.json @@ -1,9 +1,15 @@ { "translations": { - "Copied!" : "បានចម្លង", - "Press ⌘-C to copy." : " ចុច ⌘-C ដើម្បីចម្លង", - "Press Ctrl-C to copy." : "ចុច Ctrl-C ដើម្បីចម្លង", + "Type:" : "ប្រភេទ៖", "Size:" : "ទំហំ៖", + "Details" : "ព័ត៌មាន​លម្អិត", + "Disabled" : "បាន​បិទ", + "Yes" : "បាទ ឬចាស", + "No" : "ទេ", + "Version" : "កំណែ", "Shares" : "ចែក​រំលែក", - "Type:" : "ប្រភេទ៖" + "Warning" : "បម្រាម", + "Copied!" : "បានចម្លង", + "Press ⌘-C to copy." : " ចុច ⌘-C ដើម្បីចម្លង", + "Press Ctrl-C to copy." : "ចុច Ctrl-C ដើម្បីចម្លង" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/ko.js b/l10n/ko.js index 9dafc01d..ac53c94b 100644 --- a/l10n/ko.js +++ b/l10n/ko.js @@ -1,32 +1,65 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU 정보를 사용할 수 없음", - "Copied!" : "복사 성공!", - "Not supported!" : "지원하지 않음!", - "Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.", - "Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.", "System" : "시스템", + "Unknown" : "알 수 없음", "Monitoring" : "모니터링", "Monitoring app with useful server information" : "서버 정보를 표시하는 모니터링 앱", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU 부하, RAM 사용, 디스크 사용, 사용자 수 등 유용한 서버 정보를 제공합니다.", - "Temperature" : "기온", + "Active users" : "활성 사용자", + "Webcron" : "Webcron", + "Background jobs" : "배경 작업", + "Mode" : "모드", + "Never" : "하지 않음", "Load" : "부하", - "Memory" : "메모리", - "Disk" : "디스크", + "CPU info not available" : "CPU 정보를 사용할 수 없음", + "Current usage" : "현재 사용량", + "Load average" : "평균 부하", + "Database" : "데이터베이스", + "Type:" : "종류:", + "Version:" : "버전:", "Size:" : "크기:", - "Files:" : "파일:", - "Storages:" : "저장소:", - "Free Space:" : "남은 공간:", + "Used" : "사용됨", + "Available" : "사용 가능", + "Disk" : "디스크", + "Files" : "파일", + "Status" : "상태", + "Started" : "시작됨", + "When" : "언제", + "Details" : "세부사항", + "Succeeded" : "성공", + "Failed" : "실패", + "Running" : "달리기", + "Memory" : "메모리", + "Total" : "합계", + "Authentication" : "인증", "Network" : "네트워크", - "Active users" : "활성 사용자", - "Shares" : "공유", - "Users:" : "사용자:", + "Hostname" : "호스트 이름", + "Gateway" : "게이트웨이", + "DNS" : "DNS", + "Keys" : "열쇠", + "Disabled" : "비활성화됨", + "seconds" : "초", + "Yes" : "예", + "No" : "아니오", + "PHP extensions" : "PHP 확장", + "Extension" : "확장자", "PHP" : "PHP", - "Version:" : "버전:", + "Version" : "버전", "Upload max size:" : "업로드 최대 크기:", - "Database" : "데이터베이스", - "Type:" : "종류:", + "CPU" : "CPU", + "Resource usage" : "리소스 사용량", + "Shares" : "공유", + "Users:" : "사용자:", + "Warning" : "경고", + "Temperature" : "기온", + "Copied!" : "복사 성공!", + "Not supported!" : "지원하지 않음!", + "Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.", + "Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.", + "Files:" : "파일:", + "Storages:" : "저장소:", + "Free Space:" : "남은 공간:", "External monitoring tool" : "외부 모니터링 도구", "Copy" : "복사" }, diff --git a/l10n/ko.json b/l10n/ko.json index 1c11d980..ad64f612 100644 --- a/l10n/ko.json +++ b/l10n/ko.json @@ -1,30 +1,63 @@ { "translations": { - "CPU info not available" : "CPU 정보를 사용할 수 없음", - "Copied!" : "복사 성공!", - "Not supported!" : "지원하지 않음!", - "Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.", - "Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.", "System" : "시스템", + "Unknown" : "알 수 없음", "Monitoring" : "모니터링", "Monitoring app with useful server information" : "서버 정보를 표시하는 모니터링 앱", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU 부하, RAM 사용, 디스크 사용, 사용자 수 등 유용한 서버 정보를 제공합니다.", - "Temperature" : "기온", + "Active users" : "활성 사용자", + "Webcron" : "Webcron", + "Background jobs" : "배경 작업", + "Mode" : "모드", + "Never" : "하지 않음", "Load" : "부하", - "Memory" : "메모리", - "Disk" : "디스크", + "CPU info not available" : "CPU 정보를 사용할 수 없음", + "Current usage" : "현재 사용량", + "Load average" : "평균 부하", + "Database" : "데이터베이스", + "Type:" : "종류:", + "Version:" : "버전:", "Size:" : "크기:", - "Files:" : "파일:", - "Storages:" : "저장소:", - "Free Space:" : "남은 공간:", + "Used" : "사용됨", + "Available" : "사용 가능", + "Disk" : "디스크", + "Files" : "파일", + "Status" : "상태", + "Started" : "시작됨", + "When" : "언제", + "Details" : "세부사항", + "Succeeded" : "성공", + "Failed" : "실패", + "Running" : "달리기", + "Memory" : "메모리", + "Total" : "합계", + "Authentication" : "인증", "Network" : "네트워크", - "Active users" : "활성 사용자", - "Shares" : "공유", - "Users:" : "사용자:", + "Hostname" : "호스트 이름", + "Gateway" : "게이트웨이", + "DNS" : "DNS", + "Keys" : "열쇠", + "Disabled" : "비활성화됨", + "seconds" : "초", + "Yes" : "예", + "No" : "아니오", + "PHP extensions" : "PHP 확장", + "Extension" : "확장자", "PHP" : "PHP", - "Version:" : "버전:", + "Version" : "버전", "Upload max size:" : "업로드 최대 크기:", - "Database" : "데이터베이스", - "Type:" : "종류:", + "CPU" : "CPU", + "Resource usage" : "리소스 사용량", + "Shares" : "공유", + "Users:" : "사용자:", + "Warning" : "경고", + "Temperature" : "기온", + "Copied!" : "복사 성공!", + "Not supported!" : "지원하지 않음!", + "Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.", + "Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.", + "Files:" : "파일:", + "Storages:" : "저장소:", + "Free Space:" : "남은 공간:", "External monitoring tool" : "외부 모니터링 도구", "Copy" : "복사" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/l10n/lb.js b/l10n/lb.js index aaadd191..36642a37 100644 --- a/l10n/lb.js +++ b/l10n/lb.js @@ -1,13 +1,33 @@ OC.L10N.register( "serverinfo", { + "System" : "System", + "Unknown" : "Onbekannt", + "Never" : "Ni", + "Type:" : "Typ:", + "Size:" : "Gréisst:", + "Available" : "Disponibel", + "Files" : "Dateien", + "Status" : "Status", + "Duration" : "Dauer", + "Details" : "Detailer", + "Failed" : "Ausgefall", + "Configuration" : "Konfiguratioun", + "Authentication" : "Authentifikatioun", + "Hostname" : "Host-Numm", + "Keys" : "Schlëssel", + "Disabled" : "Deaktivéiert", + "seconds" : "Sekonnen", + "Yes" : "Jo", + "No" : "Nee", + "Version" : "Versioun", + "Warning" : "Warnung", + "Temperature" : "Temperatur", "Copied!" : "Kopéiert!", "Not supported!" : "Nët ennerstëtzt!", "Press ⌘-C to copy." : "Dréck ⌘-C fir ze kopéieren.", "Press Ctrl-C to copy." : "Dréck CTRL-C fir ze kopéieren.", - "Temperature" : "Temperatur", - "Size:" : "Gréisst:", - "Type:" : "Typ:", + "Files:" : "Fichieren:", "Copy" : "Kopie" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/lb.json b/l10n/lb.json index c80df457..ab684c2f 100644 --- a/l10n/lb.json +++ b/l10n/lb.json @@ -1,11 +1,31 @@ { "translations": { + "System" : "System", + "Unknown" : "Onbekannt", + "Never" : "Ni", + "Type:" : "Typ:", + "Size:" : "Gréisst:", + "Available" : "Disponibel", + "Files" : "Dateien", + "Status" : "Status", + "Duration" : "Dauer", + "Details" : "Detailer", + "Failed" : "Ausgefall", + "Configuration" : "Konfiguratioun", + "Authentication" : "Authentifikatioun", + "Hostname" : "Host-Numm", + "Keys" : "Schlëssel", + "Disabled" : "Deaktivéiert", + "seconds" : "Sekonnen", + "Yes" : "Jo", + "No" : "Nee", + "Version" : "Versioun", + "Warning" : "Warnung", + "Temperature" : "Temperatur", "Copied!" : "Kopéiert!", "Not supported!" : "Nët ennerstëtzt!", "Press ⌘-C to copy." : "Dréck ⌘-C fir ze kopéieren.", "Press Ctrl-C to copy." : "Dréck CTRL-C fir ze kopéieren.", - "Temperature" : "Temperatur", - "Size:" : "Gréisst:", - "Type:" : "Typ:", + "Files:" : "Fichieren:", "Copy" : "Kopie" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/lo.js b/l10n/lo.js index f9a56d46..93a648c5 100644 --- a/l10n/lo.js +++ b/l10n/lo.js @@ -1,10 +1,125 @@ OC.L10N.register( "serverinfo", { + "System" : "System", + "Unknown" : "ບໍ່ຮູ້ຈັກ", + "Monitoring" : "Monitoring", + "Monitoring app with useful server information" : "Monitoring app with useful server information", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc.", + "Active users" : "Active users", + "Last hour" : "Last hour", + "Last 24 Hours" : "Last 24 Hours", + "Last 7 Days" : "Last 7 Days", + "Last 30 Days" : "Last 30 Days", + "Webcron" : "Webcron", + "Background jobs" : "ພື້ນຫຼັງຂອງວຽກວານ", + "Mode" : "ໂໝດ", + "Never" : "ບໍ່ເຄີຍ", + "Load" : "Load", + "CPU info not available" : "CPU info not available", + "Threads" : "Threads", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", + "Size:" : "Size:", + "Disk" : "Disk", + "Files" : "ໄຟລ໌", + "Mount:" : "Mount:", + "Filesystem:" : "Filesystem:", + "Available:" : "Available:", + "Used:" : "Used:", + "Status" : "ສະຖານະ", + "Started" : "ເລີີມຕົ້ນ", + "Duration" : "ໄລຍະເວລາ", + "When" : "ເມື່ອ", + "Details" : "ລາຍລະອຽດ", + "Succeeded" : "ສຳເລັດ", + "Failed" : "ລົ້ມເຫຼວ", + "Running" : "ກຳລັງເຮັດວຽກ", + "Memory" : "Memory", + "RAM info not available" : "RAM info not available", + "Total" : "ລວມ", + "Configuration" : "ການຕັ້ງຄ່າ", + "Output in JSON" : "Output in JSON", + "Skip server update" : "Skip server update", + "Authentication" : "ການຢືນຢັນຕົວຕົນ", + "Network" : "Network", + "Hostname" : "Hostname", + "Status:" : "Status:", + "Speed:" : "Speed:", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Keys", + "Disabled" : "ປິດໃຊ້ງານ", + "seconds" : "ວິນາທີ", + "Yes" : "ແມ່ນ", + "No" : "ບໍ່", + "Extension" : "ນາມສະກຸນ", + "Unable to list extensions" : "Unable to list extensions", + "PHP" : "PHP", + "Version" : "ເວີຊັນ", + "Memory limit" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ", + "Max execution time:" : "Max execution time:", + "Upload max size:" : "Upload max size:", + "Extensions:" : "Extensions:", + "Show phpinfo" : "Show phpinfo", + "FPM worker pool" : "FPM worker pool", + "Pool name:" : "Pool name:", + "Pool type:" : "Pool type:", + "Start time:" : "Start time:", + "Accepted connections:" : "Accepted connections:", + "Total processes:" : "Total processes:", + "Active processes:" : "Active processes:", + "Idle processes:" : "Idle processes:", + "Listen queue:" : "Listen queue:", + "Slow requests:" : "Slow requests:", + "Max listen queue:" : "Max listen queue:", + "Max active processes:" : "Max active processes:", + "Max children reached:" : "Max children reached:", + "Resource usage" : "ການໃຊ້ຊັບພະຍາກອນ", + "Shares" : "ການແບ່ງປັນ", + "Users:" : "Users:", + "Groups:" : "Groups:", + "Links:" : "Links:", + "Emails:" : "Emails:", + "Federated sent:" : "Federated sent:", + "Federated received:" : "Federated received:", + "Talk conversations:" : "Talk conversations:", + "Warning" : "ຄຳເຕືອນ", + "Operating System:" : "Operating System:", + "CPU:" : "CPU:", + "Server time:" : "Server time:", + "Uptime:" : "Uptime:", + "Temperature" : "Temperature", + "CPU Usage:" : "CPU Usage:", + "Load average: {percentage} % ({load}) last minute" : "Load average: {percentage} % ({load}) last minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes", + "RAM Usage:" : "RAM Usage:", + "SWAP Usage:" : "SWAP Usage:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", + "SWAP info not available" : "SWAP info not available", "Copied!" : "ກ໋ອບປີ້ແລ້ວ", "Not supported!" : "ບໍ່ຊັບຟອດ", + "Press ⌘-C to copy." : "Press ⌘-C to copy.", "Press Ctrl-C to copy." : "ກົດ Ctrl-C ເພື່ອ copy", - "Shares" : "ການແບ່ງປັນ", - "Copy" : "ສຳເນົາ" + "threads" : "threads", + "Memory:" : "Memory:", + "Files:" : "Files:", + "Storages:" : "Storages:", + "Free Space:" : "Free Space:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% of all users", + "Memory limit:" : "Memory limit:", + "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", + "External monitoring tool" : "External monitoring tool", + "Use this end point to connect an external monitoring tool:" : "Use this end point to connect an external monitoring tool:", + "Copy" : "ສຳເນົາ", + "Skip apps section (including apps section will send an external request to the app store)" : "Skip apps section (including apps section will send an external request to the app store)", + "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL." }, "nplurals=1; plural=0;"); diff --git a/l10n/lo.json b/l10n/lo.json index 8fd74fd0..b7a881d5 100644 --- a/l10n/lo.json +++ b/l10n/lo.json @@ -1,8 +1,123 @@ { "translations": { + "System" : "System", + "Unknown" : "ບໍ່ຮູ້ຈັກ", + "Monitoring" : "Monitoring", + "Monitoring app with useful server information" : "Monitoring app with useful server information", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc.", + "Active users" : "Active users", + "Last hour" : "Last hour", + "Last 24 Hours" : "Last 24 Hours", + "Last 7 Days" : "Last 7 Days", + "Last 30 Days" : "Last 30 Days", + "Webcron" : "Webcron", + "Background jobs" : "ພື້ນຫຼັງຂອງວຽກວານ", + "Mode" : "ໂໝດ", + "Never" : "ບໍ່ເຄີຍ", + "Load" : "Load", + "CPU info not available" : "CPU info not available", + "Threads" : "Threads", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Version:", + "Size:" : "Size:", + "Disk" : "Disk", + "Files" : "ໄຟລ໌", + "Mount:" : "Mount:", + "Filesystem:" : "Filesystem:", + "Available:" : "Available:", + "Used:" : "Used:", + "Status" : "ສະຖານະ", + "Started" : "ເລີີມຕົ້ນ", + "Duration" : "ໄລຍະເວລາ", + "When" : "ເມື່ອ", + "Details" : "ລາຍລະອຽດ", + "Succeeded" : "ສຳເລັດ", + "Failed" : "ລົ້ມເຫຼວ", + "Running" : "ກຳລັງເຮັດວຽກ", + "Memory" : "Memory", + "RAM info not available" : "RAM info not available", + "Total" : "ລວມ", + "Configuration" : "ການຕັ້ງຄ່າ", + "Output in JSON" : "Output in JSON", + "Skip server update" : "Skip server update", + "Authentication" : "ການຢືນຢັນຕົວຕົນ", + "Network" : "Network", + "Hostname" : "Hostname", + "Status:" : "Status:", + "Speed:" : "Speed:", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Keys", + "Disabled" : "ປິດໃຊ້ງານ", + "seconds" : "ວິນາທີ", + "Yes" : "ແມ່ນ", + "No" : "ບໍ່", + "Extension" : "ນາມສະກຸນ", + "Unable to list extensions" : "Unable to list extensions", + "PHP" : "PHP", + "Version" : "ເວີຊັນ", + "Memory limit" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ", + "Max execution time:" : "Max execution time:", + "Upload max size:" : "Upload max size:", + "Extensions:" : "Extensions:", + "Show phpinfo" : "Show phpinfo", + "FPM worker pool" : "FPM worker pool", + "Pool name:" : "Pool name:", + "Pool type:" : "Pool type:", + "Start time:" : "Start time:", + "Accepted connections:" : "Accepted connections:", + "Total processes:" : "Total processes:", + "Active processes:" : "Active processes:", + "Idle processes:" : "Idle processes:", + "Listen queue:" : "Listen queue:", + "Slow requests:" : "Slow requests:", + "Max listen queue:" : "Max listen queue:", + "Max active processes:" : "Max active processes:", + "Max children reached:" : "Max children reached:", + "Resource usage" : "ການໃຊ້ຊັບພະຍາກອນ", + "Shares" : "ການແບ່ງປັນ", + "Users:" : "Users:", + "Groups:" : "Groups:", + "Links:" : "Links:", + "Emails:" : "Emails:", + "Federated sent:" : "Federated sent:", + "Federated received:" : "Federated received:", + "Talk conversations:" : "Talk conversations:", + "Warning" : "ຄຳເຕືອນ", + "Operating System:" : "Operating System:", + "CPU:" : "CPU:", + "Server time:" : "Server time:", + "Uptime:" : "Uptime:", + "Temperature" : "Temperature", + "CPU Usage:" : "CPU Usage:", + "Load average: {percentage} % ({load}) last minute" : "Load average: {percentage} % ({load}) last minute", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes", + "RAM Usage:" : "RAM Usage:", + "SWAP Usage:" : "SWAP Usage:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}", + "SWAP info not available" : "SWAP info not available", "Copied!" : "ກ໋ອບປີ້ແລ້ວ", "Not supported!" : "ບໍ່ຊັບຟອດ", + "Press ⌘-C to copy." : "Press ⌘-C to copy.", "Press Ctrl-C to copy." : "ກົດ Ctrl-C ເພື່ອ copy", - "Shares" : "ການແບ່ງປັນ", - "Copy" : "ສຳເນົາ" + "threads" : "threads", + "Memory:" : "Memory:", + "Files:" : "Files:", + "Storages:" : "Storages:", + "Free Space:" : "Free Space:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% of all users", + "Memory limit:" : "Memory limit:", + "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", + "External monitoring tool" : "External monitoring tool", + "Use this end point to connect an external monitoring tool:" : "Use this end point to connect an external monitoring tool:", + "Copy" : "ສຳເນົາ", + "Skip apps section (including apps section will send an external request to the app store)" : "Skip apps section (including apps section will send an external request to the app store)", + "To use an access token, please generate one then set it using the following command:" : "To use an access token, please generate one then set it using the following command:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Then pass the token with the \"NC-Token\" header when querying the above URL." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js index 50f27170..6318a15a 100644 --- a/l10n/lt_LT.js +++ b/l10n/lt_LT.js @@ -1,63 +1,179 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informacija apie procesorių neprieinama", - "CPU Usage:" : "CPU naudojimas:", - "RAM Usage:" : "RAM naudojimas:", - "SWAP Usage:" : "SWAP naudojimas:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iš viso: {memTotalBytes}/Naudojama: {memUsageBytes}", - "Copied!" : "Nukopijuota!", - "Not supported!" : "Nepalaikoma!", - "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", - "Press Ctrl-C to copy." : "Paspauskite Vald-C, norėdami nukopijuoti.", "System" : "Sistema", + "Unknown" : "Nežinoma", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d d., %2$d val., %3$d min., %4$d sek.", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d val., %2$d min., %3$d sek.", "Monitoring" : "Stebėjimas", "Monitoring app with useful server information" : "Stebėjimo programėlė su naudinga serverio informacija", - "Operating System:" : "Operacinė sistema:", - "CPU:" : "Procesorius:", - "Memory:" : "Atmintis:", - "Server time:" : "Serverio laikas:", - "Temperature" : "Temperatūra", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Pateikia naudingos informacijos apie serverį, pavyzdžiui, procesoriaus apkrovą, RAM atminties naudojimą, disko vietos naudojimą, vartotojų skaičių ir pan.", + "{0}% of all users" : "{0}% iš visų vartotojų", + "Active users" : "Aktyvūs vartotojai", + "Last hour" : "Paskutinė valanda", + "Last 24 Hours" : "Paskutinės 24 valandos", + "Last 7 Days" : "Paskutinės 7 dienos", + "Last 30 Days" : "Paskutinės 30 dienų", + "System cron" : "Sistemos „cron“", + "Webcron" : "„Webcron“", + "AJAX (not recommended)" : "„AJAX“ (nerekomenduojama)", + "Background jobs" : "Foninės užduotys", + "Mode" : "Veiksena", + "Last run" : "Paskutinis paleidimas", + "Never" : "Niekada", + "Latest runs" : "Naujausi paleidimai", + "No background job has run yet." : "Dar nebuvo paleista jokia foninė užduotis.", + "Slowest jobs" : "Lėčiausiai atliekami darbai", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Lėtųjų darbų statistika dar neprieinama. Ji renkama foninio darbo metu ir pasirodo po kito jo vykdymo.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Naujausios triktys (per %n pastarąją dieną)","Naujausios triktys (per pastarąsias dienas - %n)","Naujausios triktys (per pastarąsias dienas - %n)","Naujausios triktys (per pastarąsias dienas - %n)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Nė vienas foninis darbas nepatyrė nesėkmės per pastarąją %n dieną","Nė vienas foninis darbas nepatyrė nesėkmės per pastarąsias (%n) dienas","Nė vienas foninis darbas nepatyrė nesėkmės per pastarąsias (%n) dienas","Nė vienas foninis darbas nepatyrė nesėkmės per pastarąsias (%n) dienas"], "Load" : "Apkrova", - "Memory" : "Atmintis", + "CPU info not available" : "Informacija apie procesorių neprieinama", + "Current usage" : "Dabartinis sunaudojimas", + "Threads" : "Temos", + "Load average" : "Vidutinė apkrova", + "Database" : "Duomenų bazė", + "Type:" : "Tipas:", + "Version:" : "Versija:", + "Size:" : "Dydis:", + "{used} of {total} used" : "Panaudota {used} iš {total}", + "Used" : "Panaudota", + "Available" : "Prieinamas", "Disk" : "Diskas", + "Files" : "Failai", + "Storages" : "Saugyklos", + "Free space" : "Laisva vieta", + "Mount:" : "Prijungti:", "Filesystem:" : "Failų sistema:", - "Size:" : "Dydis:", "Available:" : "Prieinama:", "Used:" : "Panaudota:", - "Files:" : "Failai:", - "Storages:" : "Saugyklos:", - "Free Space:" : "Laisva vieta:", + "Class" : "Klasė", + "Status" : "Būsena", + "Started" : "Pradėta", + "Duration" : "Trukmė", + "Peak memory" : "Didžiausias atminties suvartojimas", + "Run ID" : "Vykdymo ID", + "Server ID" : "Serverio ID", + "Process ID" : "Proceso ID", + "Details about {job} from {time}" : "Informacija apie {job} iš {time}", + "Job" : "Darbas", + "When" : "Kada", + "Details" : "Išsamiau", + "Succeeded" : "Pavyko", + "Failed" : "Nepavyko", + "Crashed" : "Sugedo", + "Running" : "Bėgimas", + "RAM usage" : "RAM naudojimas", + "Swap usage" : "Swap naudojimas", + "Memory" : "Atmintis", + "RAM info not available" : "RAM informacija nepasiekiama", + "Total" : "Iš viso", + "Swap used" : "Panaudota Swap", + "External monitoring API" : "Išorinio stebėjimo API", + "Endpoint URL" : "Galutinio taško URL", + "Configuration" : "Konfigūracija", + "Output in JSON" : "JSON išvestis", + "Skip apps section" : "Praleisti programėlių skiltį", + "Including the apps section sends an external request to the app store" : "Įtraukus programėlių skiltį, išsiunčiama išorinė užklausa į programėlių parduotuvę", + "Skip server update" : "Praleisti serverio atnaujinimą", + "Authentication" : "Autentifikavimas", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Šis prieigos raktas buvo sugeneruotas jūsų naršyklėje ir nėra saugomas, kol nepaleisite žemiau nurodytos komandos. Siųskite jį {header} antraštėje su kiekviena užklausa.", + "Command to store the token" : "Komanda žymeniui išsaugoti", + "Request header" : "Request header", "Network" : "Tinklas", - "Gateway:" : "Tinklų sietuvas:", + "Hostname" : "Domeno vardas", + "Gateway" : "Tinklų sietuvas", + "DNS" : "DNS", "Status:" : "Būsena:", "Speed:" : "Greitis:", + "Duplex:" : "Dvipusis:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktyvūs naudotojai", - "Last hour" : "Paskutinė valanda", - "Last 24 Hours" : "Paskutinės 24 valandos", - "Last 7 Days" : "Paskutinės 7 dienos", - "Last 30 Days" : "Paskutinės 30 dienų", - "Shares" : "Viešiniai", - "Users:" : "Naudotojai:", - "Groups:" : "Grupės:", - "Links:" : "Nuorodos:", - "Emails:" : "El. pašto adresai:", + "{used} of {total}" : "{used} iš {total}", + "Keys" : "Raktai", + "Disabled" : "Išjungta", + "seconds" : "sekundes", + "Yes" : "Taip", + "No" : "Ne", + "PHP extensions" : "PHP plėtiniai", + "Extension" : "Plėtinys", + "Unable to list extensions" : "Neįmanoma išvardyti plėtinių", "PHP" : "PHP", - "Version:" : "Versija:", - "Memory limit:" : "Atminties limitas:", + "Version" : "Versija", + "Memory limit" : "Atminties limitas", "Max execution time:" : "Maksimalus vykdymo laikas:", "Upload max size:" : "Maksimalus įkeliamo failo dydis:", "Extensions:" : "Priedai:", + "PHP Info:" : "PHP informacija:", "Show phpinfo" : "Rodyti phpinfo", - "Database" : "Duomenų bazė", - "Type:" : "Tipas:", + "FPM worker pool" : "FPM procesų grupė", + "Pool name:" : "Išteklių fondo pavadinimas", + "Pool type:" : "Išteklių fondo tipas:", + "Start time:" : "Pradžios laikas:", + "Accepted connections:" : "Priimti prisijungimai:", + "Total processes:" : "Iš viso procesų:", + "Active processes:" : "Aktyvūs procesai:", + "Idle processes:" : "Neaktyvūs procesai:", + "Listen queue:" : "Klausymosi eilė:", + "Slow requests:" : "Lėtosios užklausos:", + "Max listen queue:" : "Maksimali klausymosi eilė:", + "Max active processes:" : "Maksimalus aktyvių procesų skaičius:", + "Max children reached:" : "Pasiektas maksimalus antrinių procesų skaičius:", + "CPU" : "Procesorius", + "Swap" : "Swap", + "Resource usage" : "Išteklių naudojimas", + "Shares" : "Bendrinimai", + "Users:" : "Vartotojai:", + "Groups:" : "Grupės:", + "Links:" : "Nuorodos:", + "Emails:" : "El. pašto adresai:", + "Federated sent:" : "Federacinis išsiuntė:", + "Federated received:" : "Federacinis gavo:", + "Talk conversations:" : "„Pokalbiai“ pasikalbėjimai:", + "Runs" : "Vykdymai", + "Average" : "Vidutinis", + "Longest" : "Ilgiausias", + "Warning" : "Įspėjimas", + "Critical" : "Kritinis", + "Operating System:" : "Operacinė sistema:", + "CPU:" : "Procesorius:", + "{name} ({threads} threads)" : "{name} ({threads} gijos)", + "Server time:" : "Serverio laikas:", + "Uptime:" : "Veikimo laikas:", + "Temperature" : "Temperatūra", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "CPU naudojimas:", + "Load average: {percentage} % ({load}) last minute" : "Apkrovos vidurkis: {percentage} % ({load}) paskutinę minutę", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) paskutinę minutę\n{last5MinutesPercentage} % ({last5Minutes}) paskutines 5 minutes\n{last15MinutesPercentage} % ({last15Minutes}) paskutines 15 minučių", + "RAM Usage:" : "RAM naudojimas:", + "SWAP Usage:" : "SWAP naudojimas:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iš viso: {memTotalBytes}/Naudojama: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Iš viso: {swapTotalBytes}/Dabartinis naudojimas: {swapUsageBytes}", + "SWAP info not available" : "SWAP informacija nepasiekiama", + "Copied!" : "Nukopijuota!", + "Not supported!" : "Nepalaikoma!", + "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", + "Press Ctrl-C to copy." : "Paspauskite Ctrl-C, norėdami nukopijuoti.", + "threads" : "gijos", + "Memory:" : "Atmintis:", + "Files:" : "Failai:", + "Storages:" : "Saugyklos:", + "Free Space:" : "Laisva vieta:", + "Hostname:" : "Serverio pavadinimas:", + "Gateway:" : "Tinklų sietuvas:", + "%s%% of all users" : "%s%% iš visų vartotojų", + "Memory limit:" : "Atminties limitas:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache pakartotinio patvirtinimo dažnis:", "External monitoring tool" : "Išorinis stebėjimo įrankis", + "Use this end point to connect an external monitoring tool:" : "Šį galinį tašką naudokite išoriniam stebėjimo įrankiui prijungti:", "Copy" : "Kopijuoti", - "Output in JSON" : "JSON išvedimas", - "Skip server update" : "Praleisti serverio atnaujinimą", - "Unknown Processor" : "Nežinomas procesorius" + "Skip apps section (including apps section will send an external request to the app store)" : "Praleisti programėlių skyrių (įtraukus šį skyrių, bus išsiųstas išorinis užklausimas į programėlių parduotuvę)", + "To use an access token, please generate one then set it using the following command:" : "Norėdami naudoti žymenį, sugeneruokite jį ir nustatykite naudodami šią komandą:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Tada, teikdami užklausą aukščiau pateiktu URL adresu, perduokite žymenį su antrašte „NC-Token“.", + "%1$s (%2$d threads)" : "%1$s (%2$d gijos)", + "DNS:" : "DNS:" }, "nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/l10n/lt_LT.json b/l10n/lt_LT.json index 86a4e20d..b999142f 100644 --- a/l10n/lt_LT.json +++ b/l10n/lt_LT.json @@ -1,61 +1,177 @@ { "translations": { - "CPU info not available" : "Informacija apie procesorių neprieinama", - "CPU Usage:" : "CPU naudojimas:", - "RAM Usage:" : "RAM naudojimas:", - "SWAP Usage:" : "SWAP naudojimas:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iš viso: {memTotalBytes}/Naudojama: {memUsageBytes}", - "Copied!" : "Nukopijuota!", - "Not supported!" : "Nepalaikoma!", - "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", - "Press Ctrl-C to copy." : "Paspauskite Vald-C, norėdami nukopijuoti.", "System" : "Sistema", + "Unknown" : "Nežinoma", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d d., %2$d val., %3$d min., %4$d sek.", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d val., %2$d min., %3$d sek.", "Monitoring" : "Stebėjimas", "Monitoring app with useful server information" : "Stebėjimo programėlė su naudinga serverio informacija", - "Operating System:" : "Operacinė sistema:", - "CPU:" : "Procesorius:", - "Memory:" : "Atmintis:", - "Server time:" : "Serverio laikas:", - "Temperature" : "Temperatūra", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Pateikia naudingos informacijos apie serverį, pavyzdžiui, procesoriaus apkrovą, RAM atminties naudojimą, disko vietos naudojimą, vartotojų skaičių ir pan.", + "{0}% of all users" : "{0}% iš visų vartotojų", + "Active users" : "Aktyvūs vartotojai", + "Last hour" : "Paskutinė valanda", + "Last 24 Hours" : "Paskutinės 24 valandos", + "Last 7 Days" : "Paskutinės 7 dienos", + "Last 30 Days" : "Paskutinės 30 dienų", + "System cron" : "Sistemos „cron“", + "Webcron" : "„Webcron“", + "AJAX (not recommended)" : "„AJAX“ (nerekomenduojama)", + "Background jobs" : "Foninės užduotys", + "Mode" : "Veiksena", + "Last run" : "Paskutinis paleidimas", + "Never" : "Niekada", + "Latest runs" : "Naujausi paleidimai", + "No background job has run yet." : "Dar nebuvo paleista jokia foninė užduotis.", + "Slowest jobs" : "Lėčiausiai atliekami darbai", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Lėtųjų darbų statistika dar neprieinama. Ji renkama foninio darbo metu ir pasirodo po kito jo vykdymo.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Naujausios triktys (per %n pastarąją dieną)","Naujausios triktys (per pastarąsias dienas - %n)","Naujausios triktys (per pastarąsias dienas - %n)","Naujausios triktys (per pastarąsias dienas - %n)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Nė vienas foninis darbas nepatyrė nesėkmės per pastarąją %n dieną","Nė vienas foninis darbas nepatyrė nesėkmės per pastarąsias (%n) dienas","Nė vienas foninis darbas nepatyrė nesėkmės per pastarąsias (%n) dienas","Nė vienas foninis darbas nepatyrė nesėkmės per pastarąsias (%n) dienas"], "Load" : "Apkrova", - "Memory" : "Atmintis", + "CPU info not available" : "Informacija apie procesorių neprieinama", + "Current usage" : "Dabartinis sunaudojimas", + "Threads" : "Temos", + "Load average" : "Vidutinė apkrova", + "Database" : "Duomenų bazė", + "Type:" : "Tipas:", + "Version:" : "Versija:", + "Size:" : "Dydis:", + "{used} of {total} used" : "Panaudota {used} iš {total}", + "Used" : "Panaudota", + "Available" : "Prieinamas", "Disk" : "Diskas", + "Files" : "Failai", + "Storages" : "Saugyklos", + "Free space" : "Laisva vieta", + "Mount:" : "Prijungti:", "Filesystem:" : "Failų sistema:", - "Size:" : "Dydis:", "Available:" : "Prieinama:", "Used:" : "Panaudota:", - "Files:" : "Failai:", - "Storages:" : "Saugyklos:", - "Free Space:" : "Laisva vieta:", + "Class" : "Klasė", + "Status" : "Būsena", + "Started" : "Pradėta", + "Duration" : "Trukmė", + "Peak memory" : "Didžiausias atminties suvartojimas", + "Run ID" : "Vykdymo ID", + "Server ID" : "Serverio ID", + "Process ID" : "Proceso ID", + "Details about {job} from {time}" : "Informacija apie {job} iš {time}", + "Job" : "Darbas", + "When" : "Kada", + "Details" : "Išsamiau", + "Succeeded" : "Pavyko", + "Failed" : "Nepavyko", + "Crashed" : "Sugedo", + "Running" : "Bėgimas", + "RAM usage" : "RAM naudojimas", + "Swap usage" : "Swap naudojimas", + "Memory" : "Atmintis", + "RAM info not available" : "RAM informacija nepasiekiama", + "Total" : "Iš viso", + "Swap used" : "Panaudota Swap", + "External monitoring API" : "Išorinio stebėjimo API", + "Endpoint URL" : "Galutinio taško URL", + "Configuration" : "Konfigūracija", + "Output in JSON" : "JSON išvestis", + "Skip apps section" : "Praleisti programėlių skiltį", + "Including the apps section sends an external request to the app store" : "Įtraukus programėlių skiltį, išsiunčiama išorinė užklausa į programėlių parduotuvę", + "Skip server update" : "Praleisti serverio atnaujinimą", + "Authentication" : "Autentifikavimas", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Šis prieigos raktas buvo sugeneruotas jūsų naršyklėje ir nėra saugomas, kol nepaleisite žemiau nurodytos komandos. Siųskite jį {header} antraštėje su kiekviena užklausa.", + "Command to store the token" : "Komanda žymeniui išsaugoti", + "Request header" : "Request header", "Network" : "Tinklas", - "Gateway:" : "Tinklų sietuvas:", + "Hostname" : "Domeno vardas", + "Gateway" : "Tinklų sietuvas", + "DNS" : "DNS", "Status:" : "Būsena:", "Speed:" : "Greitis:", + "Duplex:" : "Dvipusis:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktyvūs naudotojai", - "Last hour" : "Paskutinė valanda", - "Last 24 Hours" : "Paskutinės 24 valandos", - "Last 7 Days" : "Paskutinės 7 dienos", - "Last 30 Days" : "Paskutinės 30 dienų", - "Shares" : "Viešiniai", - "Users:" : "Naudotojai:", - "Groups:" : "Grupės:", - "Links:" : "Nuorodos:", - "Emails:" : "El. pašto adresai:", + "{used} of {total}" : "{used} iš {total}", + "Keys" : "Raktai", + "Disabled" : "Išjungta", + "seconds" : "sekundes", + "Yes" : "Taip", + "No" : "Ne", + "PHP extensions" : "PHP plėtiniai", + "Extension" : "Plėtinys", + "Unable to list extensions" : "Neįmanoma išvardyti plėtinių", "PHP" : "PHP", - "Version:" : "Versija:", - "Memory limit:" : "Atminties limitas:", + "Version" : "Versija", + "Memory limit" : "Atminties limitas", "Max execution time:" : "Maksimalus vykdymo laikas:", "Upload max size:" : "Maksimalus įkeliamo failo dydis:", "Extensions:" : "Priedai:", + "PHP Info:" : "PHP informacija:", "Show phpinfo" : "Rodyti phpinfo", - "Database" : "Duomenų bazė", - "Type:" : "Tipas:", + "FPM worker pool" : "FPM procesų grupė", + "Pool name:" : "Išteklių fondo pavadinimas", + "Pool type:" : "Išteklių fondo tipas:", + "Start time:" : "Pradžios laikas:", + "Accepted connections:" : "Priimti prisijungimai:", + "Total processes:" : "Iš viso procesų:", + "Active processes:" : "Aktyvūs procesai:", + "Idle processes:" : "Neaktyvūs procesai:", + "Listen queue:" : "Klausymosi eilė:", + "Slow requests:" : "Lėtosios užklausos:", + "Max listen queue:" : "Maksimali klausymosi eilė:", + "Max active processes:" : "Maksimalus aktyvių procesų skaičius:", + "Max children reached:" : "Pasiektas maksimalus antrinių procesų skaičius:", + "CPU" : "Procesorius", + "Swap" : "Swap", + "Resource usage" : "Išteklių naudojimas", + "Shares" : "Bendrinimai", + "Users:" : "Vartotojai:", + "Groups:" : "Grupės:", + "Links:" : "Nuorodos:", + "Emails:" : "El. pašto adresai:", + "Federated sent:" : "Federacinis išsiuntė:", + "Federated received:" : "Federacinis gavo:", + "Talk conversations:" : "„Pokalbiai“ pasikalbėjimai:", + "Runs" : "Vykdymai", + "Average" : "Vidutinis", + "Longest" : "Ilgiausias", + "Warning" : "Įspėjimas", + "Critical" : "Kritinis", + "Operating System:" : "Operacinė sistema:", + "CPU:" : "Procesorius:", + "{name} ({threads} threads)" : "{name} ({threads} gijos)", + "Server time:" : "Serverio laikas:", + "Uptime:" : "Veikimo laikas:", + "Temperature" : "Temperatūra", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "CPU naudojimas:", + "Load average: {percentage} % ({load}) last minute" : "Apkrovos vidurkis: {percentage} % ({load}) paskutinę minutę", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) paskutinę minutę\n{last5MinutesPercentage} % ({last5Minutes}) paskutines 5 minutes\n{last15MinutesPercentage} % ({last15Minutes}) paskutines 15 minučių", + "RAM Usage:" : "RAM naudojimas:", + "SWAP Usage:" : "SWAP naudojimas:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Iš viso: {memTotalBytes}/Naudojama: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Iš viso: {swapTotalBytes}/Dabartinis naudojimas: {swapUsageBytes}", + "SWAP info not available" : "SWAP informacija nepasiekiama", + "Copied!" : "Nukopijuota!", + "Not supported!" : "Nepalaikoma!", + "Press ⌘-C to copy." : "Norėdami nukopijuoti, paspauskite ⌘-C.", + "Press Ctrl-C to copy." : "Paspauskite Ctrl-C, norėdami nukopijuoti.", + "threads" : "gijos", + "Memory:" : "Atmintis:", + "Files:" : "Failai:", + "Storages:" : "Saugyklos:", + "Free Space:" : "Laisva vieta:", + "Hostname:" : "Serverio pavadinimas:", + "Gateway:" : "Tinklų sietuvas:", + "%s%% of all users" : "%s%% iš visų vartotojų", + "Memory limit:" : "Atminties limitas:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache pakartotinio patvirtinimo dažnis:", "External monitoring tool" : "Išorinis stebėjimo įrankis", + "Use this end point to connect an external monitoring tool:" : "Šį galinį tašką naudokite išoriniam stebėjimo įrankiui prijungti:", "Copy" : "Kopijuoti", - "Output in JSON" : "JSON išvedimas", - "Skip server update" : "Praleisti serverio atnaujinimą", - "Unknown Processor" : "Nežinomas procesorius" + "Skip apps section (including apps section will send an external request to the app store)" : "Praleisti programėlių skyrių (įtraukus šį skyrių, bus išsiųstas išorinis užklausimas į programėlių parduotuvę)", + "To use an access token, please generate one then set it using the following command:" : "Norėdami naudoti žymenį, sugeneruokite jį ir nustatykite naudodami šią komandą:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Tada, teikdami užklausą aukščiau pateiktu URL adresu, perduokite žymenį su antrašte „NC-Token“.", + "%1$s (%2$d threads)" : "%1$s (%2$d gijos)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);" } \ No newline at end of file diff --git a/l10n/lv.js b/l10n/lv.js index dd9d8f94..6e7b8400 100644 --- a/l10n/lv.js +++ b/l10n/lv.js @@ -1,60 +1,87 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Centrālā procesora informācija nav pieejama", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Kopā: {memTotalBytes}/Pašreizējais lietojums: {memUsageBytes}", - "RAM info not available" : "RAM informācija nav pieejama", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Kopā: {swapTotalBytes}/Pašreizējais lietojums: {swapUsageBytes}", - "SWAP info not available" : "SWAP informācija nav pieejama", - "Copied!" : "Nokopēts!", - "Not supported!" : "Nav atbalstīts!", - "Press ⌘-C to copy." : "Spied ⌘-C lai kopētu.", - "Press Ctrl-C to copy." : "Spied Ctrl-C lai kopētu.", "System" : "Sistēma", + "Unknown" : "Nezināms", "Monitoring" : "Uzraudzība", "Monitoring app with useful server information" : "Pārraudzības lietotne ar noderīgu informāciju par serveri", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Sniedz noderīgu servera informāciju, piemēram, CPU ielādi, RAM lietojumu, diska lietojumu, lietotāju skaitu utt.", - "Operating System:" : "Operētājsistēma:", - "CPU:" : "CPU:", - "Memory:" : "Atmiņa:", - "Server time:" : "Servera laiks:", - "Uptime:" : "Darba laiks:", - "Temperature" : "Temperatūra", + "Active users" : "Aktīvie lietotāji", + "Mode" : "Režīms", + "Never" : "Nekad", "Load" : "Noslogojums", - "Memory" : "Atmiņa", + "CPU info not available" : "Centrālā procesora informācija nav pieejama", + "Current usage" : "Pašreizējā izmantošana", + "Load average" : "Vidējā slodze", + "Database" : "Datubāze", + "Type:" : "Veids:", + "Version:" : "Versija:", + "Size:" : "Izmērs:", + "Used" : "Izmantots", + "Available" : "Pieejams", "Disk" : "Disks", + "Files" : "Datnes", + "Storages" : "Krātuves", "Mount:" : "Piemontēts:", "Filesystem:" : "Datņu sistēma:", - "Size:" : "Izmērs:", "Available:" : "Pieejams:", "Used:" : "Izmantots:", - "Files:" : "Datnes:", - "Storages:" : "Glabātavas:", - "Free Space:" : "Brīva vieta:", + "Duration" : "Ilgums", + "Details" : "Informācija", + "Failed" : "Neizdevās", + "Running" : "Skriešana", + "Memory" : "Atmiņa", + "RAM info not available" : "RAM informācija nav pieejama", + "Total" : "Kopā", + "Authentication" : "Autentifikācija", "Network" : "Tīkls", - "Hostname:" : "Resursa nosaukums:", - "Gateway:" : "Vārteja:", + "Hostname" : "Resursa nosaukums", + "Gateway" : "Vārteja", + "DNS" : "DNS", "Status:" : "Statuss:", "Speed:" : "Ātrums:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktīvie lietotāji", - "Shares" : "Koplietots", - "Users:" : "Lietotāji:", + "Disabled" : "Atspējots", + "seconds" : "sekundes", + "Yes" : "Jā", + "No" : "Nē", + "PHP extensions" : "PHP paplašinājumi", + "Unable to list extensions" : "Nevar uzskaitīt paplašinājumus", "PHP" : "PHP", - "Version:" : "Versija:", - "Memory limit:" : "Atmiņas limits:", + "Version" : "Versija", + "Memory limit" : "Atmiņas limits", "Max execution time:" : "Lielākais pieļaujamais izpildes laiks:", "Upload max size:" : "Augšupielādes lielākais pieļaujamais izmērs:", "Extensions:" : "Paplašinājumi:", - "Unable to list extensions" : "Nevar uzskaitīt paplašinājumus", - "Database" : "Datubāze", - "Type:" : "Veids:", + "CPU" : "CPU", + "Shares" : "Koplietots", + "Users:" : "Lietotāji:", + "Warning" : "Brīdinājums", + "Operating System:" : "Operētājsistēma:", + "CPU:" : "CPU:", + "Server time:" : "Servera laiks:", + "Uptime:" : "Darba laiks:", + "Temperature" : "Temperatūra", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Kopā: {memTotalBytes}/Pašreizējais lietojums: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Kopā: {swapTotalBytes}/Pašreizējais lietojums: {swapUsageBytes}", + "SWAP info not available" : "SWAP informācija nav pieejama", + "Copied!" : "Nokopēts!", + "Not supported!" : "Nav atbalstīts!", + "Press ⌘-C to copy." : "Spied ⌘-C lai kopētu.", + "Press Ctrl-C to copy." : "Spied Ctrl-C lai kopētu.", + "Memory:" : "Atmiņa:", + "Files:" : "Datnes:", + "Storages:" : "Glabātavas:", + "Free Space:" : "Brīva vieta:", + "Hostname:" : "Resursa nosaukums:", + "Gateway:" : "Vārteja:", + "Memory limit:" : "Atmiņas limits:", "External monitoring tool" : "Ārējās uzraudzības instruments", "Copy" : "Kopēt", "To use an access token, please generate one then set it using the following command:" : "Lai izmantotu piekļuves pilnvaru, lūgums to izveidot un iestatīt ar šo komandu:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pēc tam jānodod pilnvara ar galveni \"NC-Token\", kad tiek veikti pieprasījumu uz augstāk norādīto URL.", - "Unknown Processor" : "Nezināms procesors" + "DNS:" : "DNS:" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);"); diff --git a/l10n/lv.json b/l10n/lv.json index 84f1f9ee..991fabb2 100644 --- a/l10n/lv.json +++ b/l10n/lv.json @@ -1,58 +1,85 @@ { "translations": { - "CPU info not available" : "Centrālā procesora informācija nav pieejama", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Kopā: {memTotalBytes}/Pašreizējais lietojums: {memUsageBytes}", - "RAM info not available" : "RAM informācija nav pieejama", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Kopā: {swapTotalBytes}/Pašreizējais lietojums: {swapUsageBytes}", - "SWAP info not available" : "SWAP informācija nav pieejama", - "Copied!" : "Nokopēts!", - "Not supported!" : "Nav atbalstīts!", - "Press ⌘-C to copy." : "Spied ⌘-C lai kopētu.", - "Press Ctrl-C to copy." : "Spied Ctrl-C lai kopētu.", "System" : "Sistēma", + "Unknown" : "Nezināms", "Monitoring" : "Uzraudzība", "Monitoring app with useful server information" : "Pārraudzības lietotne ar noderīgu informāciju par serveri", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Sniedz noderīgu servera informāciju, piemēram, CPU ielādi, RAM lietojumu, diska lietojumu, lietotāju skaitu utt.", - "Operating System:" : "Operētājsistēma:", - "CPU:" : "CPU:", - "Memory:" : "Atmiņa:", - "Server time:" : "Servera laiks:", - "Uptime:" : "Darba laiks:", - "Temperature" : "Temperatūra", + "Active users" : "Aktīvie lietotāji", + "Mode" : "Režīms", + "Never" : "Nekad", "Load" : "Noslogojums", - "Memory" : "Atmiņa", + "CPU info not available" : "Centrālā procesora informācija nav pieejama", + "Current usage" : "Pašreizējā izmantošana", + "Load average" : "Vidējā slodze", + "Database" : "Datubāze", + "Type:" : "Veids:", + "Version:" : "Versija:", + "Size:" : "Izmērs:", + "Used" : "Izmantots", + "Available" : "Pieejams", "Disk" : "Disks", + "Files" : "Datnes", + "Storages" : "Krātuves", "Mount:" : "Piemontēts:", "Filesystem:" : "Datņu sistēma:", - "Size:" : "Izmērs:", "Available:" : "Pieejams:", "Used:" : "Izmantots:", - "Files:" : "Datnes:", - "Storages:" : "Glabātavas:", - "Free Space:" : "Brīva vieta:", + "Duration" : "Ilgums", + "Details" : "Informācija", + "Failed" : "Neizdevās", + "Running" : "Skriešana", + "Memory" : "Atmiņa", + "RAM info not available" : "RAM informācija nav pieejama", + "Total" : "Kopā", + "Authentication" : "Autentifikācija", "Network" : "Tīkls", - "Hostname:" : "Resursa nosaukums:", - "Gateway:" : "Vārteja:", + "Hostname" : "Resursa nosaukums", + "Gateway" : "Vārteja", + "DNS" : "DNS", "Status:" : "Statuss:", "Speed:" : "Ātrums:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktīvie lietotāji", - "Shares" : "Koplietots", - "Users:" : "Lietotāji:", + "Disabled" : "Atspējots", + "seconds" : "sekundes", + "Yes" : "Jā", + "No" : "Nē", + "PHP extensions" : "PHP paplašinājumi", + "Unable to list extensions" : "Nevar uzskaitīt paplašinājumus", "PHP" : "PHP", - "Version:" : "Versija:", - "Memory limit:" : "Atmiņas limits:", + "Version" : "Versija", + "Memory limit" : "Atmiņas limits", "Max execution time:" : "Lielākais pieļaujamais izpildes laiks:", "Upload max size:" : "Augšupielādes lielākais pieļaujamais izmērs:", "Extensions:" : "Paplašinājumi:", - "Unable to list extensions" : "Nevar uzskaitīt paplašinājumus", - "Database" : "Datubāze", - "Type:" : "Veids:", + "CPU" : "CPU", + "Shares" : "Koplietots", + "Users:" : "Lietotāji:", + "Warning" : "Brīdinājums", + "Operating System:" : "Operētājsistēma:", + "CPU:" : "CPU:", + "Server time:" : "Servera laiks:", + "Uptime:" : "Darba laiks:", + "Temperature" : "Temperatūra", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Kopā: {memTotalBytes}/Pašreizējais lietojums: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Kopā: {swapTotalBytes}/Pašreizējais lietojums: {swapUsageBytes}", + "SWAP info not available" : "SWAP informācija nav pieejama", + "Copied!" : "Nokopēts!", + "Not supported!" : "Nav atbalstīts!", + "Press ⌘-C to copy." : "Spied ⌘-C lai kopētu.", + "Press Ctrl-C to copy." : "Spied Ctrl-C lai kopētu.", + "Memory:" : "Atmiņa:", + "Files:" : "Datnes:", + "Storages:" : "Glabātavas:", + "Free Space:" : "Brīva vieta:", + "Hostname:" : "Resursa nosaukums:", + "Gateway:" : "Vārteja:", + "Memory limit:" : "Atmiņas limits:", "External monitoring tool" : "Ārējās uzraudzības instruments", "Copy" : "Kopēt", "To use an access token, please generate one then set it using the following command:" : "Lai izmantotu piekļuves pilnvaru, lūgums to izveidot un iestatīt ar šo komandu:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pēc tam jānodod pilnvara ar galveni \"NC-Token\", kad tiek veikti pieprasījumu uz augstāk norādīto URL.", - "Unknown Processor" : "Nezināms procesors" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/mk.js b/l10n/mk.js index c9ce0a39..55144d26 100644 --- a/l10n/mk.js +++ b/l10n/mk.js @@ -1,46 +1,70 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Информациите за процесорот не се достапни", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Вкупно: {memTotalBytes}/Моментално искористување: {memUsageBytes}", - "RAM info not available" : "Информации за RAM меморијата не се достапни", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Вкупно: {swapTotalBytes}/Моментално искористување: {swapUsageBytes}", - "SWAP info not available" : "Информации за SWAP меморијата не се достапни", - "Copied!" : "Копирано!", - "Not supported!" : "Не е поддржано!", - "Press ⌘-C to copy." : "Притисни ⌘-C за да копираш", - "Press Ctrl-C to copy." : "Притисни Ctrl-C за да копираш.", "System" : "Систем", + "Unknown" : "Непознат", "Monitoring" : "Следење", "Monitoring app with useful server information" : "Апликација за мониторирање и корисни информации за серверот", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Овозможува корисни информации за серверот, како искористеност на процесорот, искористеност на меморијата, искористеност на просторот на дискот, број на корисници, итн.", - "Operating System:" : "Оперативен систем", - "CPU:" : "Процесор:", - "Memory:" : "Меморија:", - "Server time:" : "Време на серверот:", - "Uptime:" : "Време на работа:", - "Temperature" : "Температура", + "Active users" : "Активни корисници", + "Webcron" : "Webcron", + "Background jobs" : "Задачи кој се извршуваат во позадина", + "Mode" : "Мод", + "Never" : "Никогаш", "Load" : "Искористеност", - "Memory" : "Меморија", + "CPU info not available" : "Информациите за процесорот не се достапни", + "Current usage" : "Моментално искористување", + "Threads" : "Нишки", + "Load average" : "Просечно искористување", + "Database" : "База", + "Type:" : "Вид:", + "Version:" : "Верзија:", + "Size:" : "Големина:", + "Used" : "Искористено", + "Available" : "Достапно", "Disk" : "Диск", + "Files" : "Датотеки", + "Storages" : "Складишта", "Mount:" : "Монтиран:", "Filesystem:" : "Податочен систем:", - "Size:" : "Големина:", "Available:" : "Достапно:", "Used:" : "Искористено:", - "Files:" : "Датотеки:", - "Storages:" : "Складишта:", - "Free Space:" : "Слободен простор:", + "Status" : "Статус", + "Started" : "Започна", + "When" : "Кога", + "Details" : "Детали", + "Failed" : "Неуспешно", + "Running" : "Трчање", + "Memory" : "Меморија", + "RAM info not available" : "Информации за RAM меморијата не се достапни", + "Total" : "Вкупно", + "Configuration" : "Конфигурација", + "Authentication" : "Автентикација", "Network" : "Мрежа", - "Hostname:" : "Име на серверот:", - "Gateway:" : "Gateway:", + "Hostname" : "Име на серверот", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Статус:", "Speed:" : "Брзина:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активни корисници", + "Disabled" : "Оневозможено", + "seconds" : "секунди", + "Yes" : "Да", + "No" : "Не", + "PHP extensions" : "PHP додатоци", + "Extension" : "Екстензија", + "Unable to list extensions" : "Неможе да се излистаат екстензиите", + "PHP" : "PHP", + "Version" : "Верзија", + "Memory limit" : "Лимит на меморијата", + "Max execution time:" : "Максимално време на извршување:", + "Upload max size:" : "Максимална големина на прикачување:", + "Extensions:" : "Екстензија:", + "Show phpinfo" : "Прикажи phpinfo", + "CPU" : "Процесор", "Shares" : "Споделувања", "Users:" : "Корисници:", "Groups:" : "Групи:", @@ -49,21 +73,32 @@ OC.L10N.register( "Federated sent:" : "Федерални испраќања:", "Federated received:" : "Федерални примања:", "Talk conversations:" : "Talk разговори:", - "PHP" : "PHP", - "Version:" : "Верзија:", + "Average" : "Просечно", + "Warning" : "Предупредување", + "Operating System:" : "Оперативен систем", + "CPU:" : "Процесор:", + "Server time:" : "Време на серверот:", + "Uptime:" : "Време на работа:", + "Temperature" : "Температура", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Вкупно: {memTotalBytes}/Моментално искористување: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Вкупно: {swapTotalBytes}/Моментално искористување: {swapUsageBytes}", + "SWAP info not available" : "Информации за SWAP меморијата не се достапни", + "Copied!" : "Копирано!", + "Not supported!" : "Не е поддржано!", + "Press ⌘-C to copy." : "Притисни ⌘-C за да копираш", + "Press Ctrl-C to copy." : "Притисни Ctrl-C за да копираш.", + "Memory:" : "Меморија:", + "Files:" : "Датотеки:", + "Storages:" : "Складишта:", + "Free Space:" : "Слободен простор:", + "Hostname:" : "Име на серверот:", + "Gateway:" : "Gateway:", "Memory limit:" : "Лимит на меморијата:", - "Max execution time:" : "Максимално време на извршување:", - "Upload max size:" : "Максимална големина на прикачување:", "OPcache Revalidate Frequency:" : "Фреквенција на ревалидација на OPcache:", - "Extensions:" : "Екстензија:", - "Unable to list extensions" : "Неможе да се излистаат екстензиите", - "Show phpinfo" : "Прикажи phpinfo", - "Database" : "База", - "Type:" : "Вид:", "External monitoring tool" : "Надворешен уред за следење", "Copy" : "Копирај", "To use an access token, please generate one then set it using the following command:" : "За да користите токен за пристап, ве молиме генерирајте еден, а потоа поставете го користејќи ја следнава команда:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Потоа поминете го токенот со заглавието „NC-Token“ кога го барате горното URL.", - "Unknown Processor" : "Непознат процесор" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"); diff --git a/l10n/mk.json b/l10n/mk.json index 0cd55d02..f89d00ef 100644 --- a/l10n/mk.json +++ b/l10n/mk.json @@ -1,44 +1,68 @@ { "translations": { - "CPU info not available" : "Информациите за процесорот не се достапни", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Вкупно: {memTotalBytes}/Моментално искористување: {memUsageBytes}", - "RAM info not available" : "Информации за RAM меморијата не се достапни", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Вкупно: {swapTotalBytes}/Моментално искористување: {swapUsageBytes}", - "SWAP info not available" : "Информации за SWAP меморијата не се достапни", - "Copied!" : "Копирано!", - "Not supported!" : "Не е поддржано!", - "Press ⌘-C to copy." : "Притисни ⌘-C за да копираш", - "Press Ctrl-C to copy." : "Притисни Ctrl-C за да копираш.", "System" : "Систем", + "Unknown" : "Непознат", "Monitoring" : "Следење", "Monitoring app with useful server information" : "Апликација за мониторирање и корисни информации за серверот", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Овозможува корисни информации за серверот, како искористеност на процесорот, искористеност на меморијата, искористеност на просторот на дискот, број на корисници, итн.", - "Operating System:" : "Оперативен систем", - "CPU:" : "Процесор:", - "Memory:" : "Меморија:", - "Server time:" : "Време на серверот:", - "Uptime:" : "Време на работа:", - "Temperature" : "Температура", + "Active users" : "Активни корисници", + "Webcron" : "Webcron", + "Background jobs" : "Задачи кој се извршуваат во позадина", + "Mode" : "Мод", + "Never" : "Никогаш", "Load" : "Искористеност", - "Memory" : "Меморија", + "CPU info not available" : "Информациите за процесорот не се достапни", + "Current usage" : "Моментално искористување", + "Threads" : "Нишки", + "Load average" : "Просечно искористување", + "Database" : "База", + "Type:" : "Вид:", + "Version:" : "Верзија:", + "Size:" : "Големина:", + "Used" : "Искористено", + "Available" : "Достапно", "Disk" : "Диск", + "Files" : "Датотеки", + "Storages" : "Складишта", "Mount:" : "Монтиран:", "Filesystem:" : "Податочен систем:", - "Size:" : "Големина:", "Available:" : "Достапно:", "Used:" : "Искористено:", - "Files:" : "Датотеки:", - "Storages:" : "Складишта:", - "Free Space:" : "Слободен простор:", + "Status" : "Статус", + "Started" : "Започна", + "When" : "Кога", + "Details" : "Детали", + "Failed" : "Неуспешно", + "Running" : "Трчање", + "Memory" : "Меморија", + "RAM info not available" : "Информации за RAM меморијата не се достапни", + "Total" : "Вкупно", + "Configuration" : "Конфигурација", + "Authentication" : "Автентикација", "Network" : "Мрежа", - "Hostname:" : "Име на серверот:", - "Gateway:" : "Gateway:", + "Hostname" : "Име на серверот", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Статус:", "Speed:" : "Брзина:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активни корисници", + "Disabled" : "Оневозможено", + "seconds" : "секунди", + "Yes" : "Да", + "No" : "Не", + "PHP extensions" : "PHP додатоци", + "Extension" : "Екстензија", + "Unable to list extensions" : "Неможе да се излистаат екстензиите", + "PHP" : "PHP", + "Version" : "Верзија", + "Memory limit" : "Лимит на меморијата", + "Max execution time:" : "Максимално време на извршување:", + "Upload max size:" : "Максимална големина на прикачување:", + "Extensions:" : "Екстензија:", + "Show phpinfo" : "Прикажи phpinfo", + "CPU" : "Процесор", "Shares" : "Споделувања", "Users:" : "Корисници:", "Groups:" : "Групи:", @@ -47,21 +71,32 @@ "Federated sent:" : "Федерални испраќања:", "Federated received:" : "Федерални примања:", "Talk conversations:" : "Talk разговори:", - "PHP" : "PHP", - "Version:" : "Верзија:", + "Average" : "Просечно", + "Warning" : "Предупредување", + "Operating System:" : "Оперативен систем", + "CPU:" : "Процесор:", + "Server time:" : "Време на серверот:", + "Uptime:" : "Време на работа:", + "Temperature" : "Температура", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Вкупно: {memTotalBytes}/Моментално искористување: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Вкупно: {swapTotalBytes}/Моментално искористување: {swapUsageBytes}", + "SWAP info not available" : "Информации за SWAP меморијата не се достапни", + "Copied!" : "Копирано!", + "Not supported!" : "Не е поддржано!", + "Press ⌘-C to copy." : "Притисни ⌘-C за да копираш", + "Press Ctrl-C to copy." : "Притисни Ctrl-C за да копираш.", + "Memory:" : "Меморија:", + "Files:" : "Датотеки:", + "Storages:" : "Складишта:", + "Free Space:" : "Слободен простор:", + "Hostname:" : "Име на серверот:", + "Gateway:" : "Gateway:", "Memory limit:" : "Лимит на меморијата:", - "Max execution time:" : "Максимално време на извршување:", - "Upload max size:" : "Максимална големина на прикачување:", "OPcache Revalidate Frequency:" : "Фреквенција на ревалидација на OPcache:", - "Extensions:" : "Екстензија:", - "Unable to list extensions" : "Неможе да се излистаат екстензиите", - "Show phpinfo" : "Прикажи phpinfo", - "Database" : "База", - "Type:" : "Вид:", "External monitoring tool" : "Надворешен уред за следење", "Copy" : "Копирај", "To use an access token, please generate one then set it using the following command:" : "За да користите токен за пристап, ве молиме генерирајте еден, а потоа поставете го користејќи ја следнава команда:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Потоа поминете го токенот со заглавието „NC-Token“ кога го барате горното URL.", - "Unknown Processor" : "Непознат процесор" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;" } \ No newline at end of file diff --git a/l10n/mn.js b/l10n/mn.js index d064e6f2..bf26d49a 100644 --- a/l10n/mn.js +++ b/l10n/mn.js @@ -1,21 +1,131 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Хуулсан!", - "Not supported!" : "Дэмжигдэхгүй", - "Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.", - "Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.", "System" : "сисмем", + "Unknown" : "Үл танигдах зүйл", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d өдөр, %2$d цаг, %3$d минут, %4$d секунд", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d цаг, %2$d минут, %3$d секунд", "Monitoring" : "Хяналт", - "Size:" : "Хэмжээ:", - "Files:" : "Файлууд:", + "Monitoring app with useful server information" : "Ашигтай серверийн мэдээлэл бүхий хяналтын апп", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU-ийн ачаалал, RAM-ийн хэрэглээ, дискний хэрэглээ, хэрэглэгчдийн тоо гэх мэт серверийн хэрэгтэй мэдээллийг харуулдаг.", "Active users" : "Идэвхтэй хэрэглэгчид", - "Shares" : "Түгээлтүүд", - "Users:" : "Хэрэглэгчид:", - "PHP" : "PHP", - "Version:" : "Хувилбар:", + "Last hour" : "Сүүлийн цаг", + "Last 24 Hours" : "Сүүлийн 24 цаг", + "Last 7 Days" : "Сүүлийн 7 өдөр", + "Last 30 Days" : "Сүүлийн 30 өдөр", + "Webcron" : "Webcron", + "Background jobs" : "Арын ажлууд", + "Mode" : "Горим", + "Never" : "—Ö—ç–∑—ç—ç—á", + "Load" : "Ачаалал", + "CPU info not available" : "CPU мэдээлэл боломжгүй", + "Current usage" : "Тухайн ашиглалт", + "Threads" : "Thread-үүд", + "Load average" : "Дундаж ачаалал", "Database" : "Өгөгдлийн сан", "Type:" : "Төрөл:", - "Copy" : "Хуулах" + "Version:" : "Хувилбар:", + "Size:" : "Хэмжээ:", + "Available" : "–ë–æ–ª–æ–º–∂—Ç–æ–π", + "Disk" : "Диск", + "Files" : "‚Äî√ë‚Äì‚àû‚ÄìœÄ‚Ä쬙‚Äî√â‚Äî√â‚Ä쬕", + "Mount:" : "Холболт:", + "Filesystem:" : "Файлын систем:", + "Available:" : "Боломжтой:", + "Used:" : "Ашигласан:", + "Status" : "—Ç”©–ª”©–≤", + "Duration" : "Хугацаа", + "When" : "Хэзээ", + "Details" : "–î—ç–ª–≥—ç—Ä—ç–Ω–≥“Ø–π", + "Succeeded" : "Амжилттай", + "Failed" : "Амжилтгүй", + "Running" : "Ажиллаж байна", + "Memory" : "Санах ой", + "RAM info not available" : "RAM мэдээлэл боломжгүй", + "Total" : "–ù–∏–π—Ç", + "Configuration" : "Тохиргоо", + "Output in JSON" : "JSON гаралт", + "Skip server update" : "Серверийн шинэчлэлтийг алгасах", + "Authentication" : "Нэвтрэлт", + "Network" : "Сүлжээ", + "Hostname" : "Хост нэр", + "Status:" : "Төлөв:", + "Speed:" : "Хурд:", + "Duplex:" : "Дуплекс:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Disabled" : "–∏–¥—ç–≤—Ö–∏–≥“Ø–π", + "seconds" : "секунд", + "Yes" : "–¢–∏–π–º", + "No" : "“Æ–≥“Ø–π", + "PHP extensions" : "PHP өргөтгөлүүд", + "Extension" : "”®—Ä–≥”©—Ç–≥”©–ª", + "Unable to list extensions" : "Өргөтгөлүүдийг жагсааж чадсангүй", + "PHP" : "PHP", + "Version" : "—Ç”©—Ä”©–ª", + "Memory limit" : "Санах ойн хязгаар", + "Max execution time:" : "Хамгийн их гүйцэтгэх хугацаа:", + "Upload max size:" : "Байршуулах дээд хэмжээ:", + "Extensions:" : "Өргөтгөлүүд:", + "PHP Info:" : "PHP мэдээлэл:", + "Show phpinfo" : "phpinfo харуулах", + "FPM worker pool" : "FPM ажилчдын сан", + "Pool name:" : "Сангийн нэр:", + "Pool type:" : "Сангийн төрөл:", + "Start time:" : "Эхлэх цаг:", + "Accepted connections:" : "Хүлээн авсан холболтууд:", + "Total processes:" : "Нийт процессууд:", + "Active processes:" : "Идэвхтэй процессууд:", + "Idle processes:" : "Сул процессууд:", + "Listen queue:" : "Сонсох дараалал:", + "Slow requests:" : "Удаан хүсэлтүүд:", + "Max listen queue:" : "Сонсох дарааллын дээд хэмжээ:", + "Max active processes:" : "Идэвхтэй процессуудын дээд хэмжээ:", + "Max children reached:" : "Дээд хүүхдүүдэд хүрсэн:", + "Shares" : "Түгээлтүүд", + "Users:" : "Хэрэглэгчид:", + "Groups:" : "Бүлгүүд:", + "Links:" : "Холбоосууд:", + "Emails:" : "Имэйлүүд:", + "Federated sent:" : "Холбогдсон илгээсэн:", + "Federated received:" : "Холбогдсон хүлээн авсан:", + "Talk conversations:" : "Talk яриа:", + "Average" : "Дундаж", + "Warning" : "Анхааруулга", + "Operating System:" : "Үйлдлийн систем:", + "CPU:" : "CPU:", + "Server time:" : "Серверийн цаг:", + "Uptime:" : "Ажилласан хугацаа:", + "Temperature" : "Температур", + "CPU Usage:" : "CPU ашиглалт:", + "Load average: {percentage} % ({load}) last minute" : "Дундаж ачаалал: {percentage} % ({load}) сүүлийн минут", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) сүүлийн 1 минут\n{last5MinutesPercentage} % ({last5Minutes}) сүүлийн 5 минут\n{last15MinutesPercentage} % ({last15Minutes}) сүүлийн 15 минут", + "RAM Usage:" : "RAM ашиглалт:", + "SWAP Usage:" : "SWAP ашиглалт:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Нийт: {memTotalBytes}/Одоогийн ашиглалт: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Нийт: {swapTotalBytes}/Одоогийн ашиглалт: {swapUsageBytes}", + "SWAP info not available" : "SWAP мэдээлэл боломжгүй", + "Copied!" : "Хуулсан!", + "Not supported!" : "Дэмжигдэхгүй", + "Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.", + "Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.", + "threads" : "thread-ууд", + "Memory:" : "Санах ой:", + "Files:" : "Файлууд:", + "Storages:" : "Санах ойнууд:", + "Free Space:" : "Чөлөөт зай:", + "Hostname:" : "Хостын нэр:", + "Gateway:" : "Гарц:", + "%s%% of all users" : "Бүх хэрэглэгчдийн %s%%", + "Memory limit:" : "Санах ойн хязгаар:", + "MB" : "МБ", + "OPcache Revalidate Frequency:" : "OPcache дахин баталгаажуулах давтамж:", + "External monitoring tool" : "Гадаад хяналтын хэрэгсэл", + "Use this end point to connect an external monitoring tool:" : "Гадаад хяналтын хэрэгсэл холбоход энэ төгсгөлийн цэгийг ашиглана уу:", + "Copy" : "Хуулах", + "Skip apps section (including apps section will send an external request to the app store)" : "Аппуудын хэсгийг алгасах (аппуудын хэсгийг оруулахад апп дэлгүүр рүү гадаад хүсэлт илгээнэ)", + "To use an access token, please generate one then set it using the following command:" : "Хандалтын токен ашиглахын тулд эхлээд токен үүсгэж, дараахь командын тусламжтайгаар тохируулна уу:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Дараа нь дээрх URL-д хүсэлт илгээхдээ токеноо \"NC-Token\" толгойн мэдээллээр дамжуулна уу." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/mn.json b/l10n/mn.json index f1ebc360..def20dd5 100644 --- a/l10n/mn.json +++ b/l10n/mn.json @@ -1,19 +1,129 @@ { "translations": { - "Copied!" : "Хуулсан!", - "Not supported!" : "Дэмжигдэхгүй", - "Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.", - "Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.", "System" : "сисмем", + "Unknown" : "Үл танигдах зүйл", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d өдөр, %2$d цаг, %3$d минут, %4$d секунд", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d цаг, %2$d минут, %3$d секунд", "Monitoring" : "Хяналт", - "Size:" : "Хэмжээ:", - "Files:" : "Файлууд:", + "Monitoring app with useful server information" : "Ашигтай серверийн мэдээлэл бүхий хяналтын апп", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU-ийн ачаалал, RAM-ийн хэрэглээ, дискний хэрэглээ, хэрэглэгчдийн тоо гэх мэт серверийн хэрэгтэй мэдээллийг харуулдаг.", "Active users" : "Идэвхтэй хэрэглэгчид", - "Shares" : "Түгээлтүүд", - "Users:" : "Хэрэглэгчид:", - "PHP" : "PHP", - "Version:" : "Хувилбар:", + "Last hour" : "Сүүлийн цаг", + "Last 24 Hours" : "Сүүлийн 24 цаг", + "Last 7 Days" : "Сүүлийн 7 өдөр", + "Last 30 Days" : "Сүүлийн 30 өдөр", + "Webcron" : "Webcron", + "Background jobs" : "Арын ажлууд", + "Mode" : "Горим", + "Never" : "—Ö—ç–∑—ç—ç—á", + "Load" : "Ачаалал", + "CPU info not available" : "CPU мэдээлэл боломжгүй", + "Current usage" : "Тухайн ашиглалт", + "Threads" : "Thread-үүд", + "Load average" : "Дундаж ачаалал", "Database" : "Өгөгдлийн сан", "Type:" : "Төрөл:", - "Copy" : "Хуулах" + "Version:" : "Хувилбар:", + "Size:" : "Хэмжээ:", + "Available" : "–ë–æ–ª–æ–º–∂—Ç–æ–π", + "Disk" : "Диск", + "Files" : "‚Äî√ë‚Äì‚àû‚ÄìœÄ‚Ä쬙‚Äî√â‚Äî√â‚Ä쬕", + "Mount:" : "Холболт:", + "Filesystem:" : "Файлын систем:", + "Available:" : "Боломжтой:", + "Used:" : "Ашигласан:", + "Status" : "—Ç”©–ª”©–≤", + "Duration" : "Хугацаа", + "When" : "Хэзээ", + "Details" : "–î—ç–ª–≥—ç—Ä—ç–Ω–≥“Ø–π", + "Succeeded" : "Амжилттай", + "Failed" : "Амжилтгүй", + "Running" : "Ажиллаж байна", + "Memory" : "Санах ой", + "RAM info not available" : "RAM мэдээлэл боломжгүй", + "Total" : "–ù–∏–π—Ç", + "Configuration" : "Тохиргоо", + "Output in JSON" : "JSON гаралт", + "Skip server update" : "Серверийн шинэчлэлтийг алгасах", + "Authentication" : "Нэвтрэлт", + "Network" : "Сүлжээ", + "Hostname" : "Хост нэр", + "Status:" : "Төлөв:", + "Speed:" : "Хурд:", + "Duplex:" : "Дуплекс:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Disabled" : "–∏–¥—ç–≤—Ö–∏–≥“Ø–π", + "seconds" : "секунд", + "Yes" : "–¢–∏–π–º", + "No" : "“Æ–≥“Ø–π", + "PHP extensions" : "PHP өргөтгөлүүд", + "Extension" : "”®—Ä–≥”©—Ç–≥”©–ª", + "Unable to list extensions" : "Өргөтгөлүүдийг жагсааж чадсангүй", + "PHP" : "PHP", + "Version" : "—Ç”©—Ä”©–ª", + "Memory limit" : "Санах ойн хязгаар", + "Max execution time:" : "Хамгийн их гүйцэтгэх хугацаа:", + "Upload max size:" : "Байршуулах дээд хэмжээ:", + "Extensions:" : "Өргөтгөлүүд:", + "PHP Info:" : "PHP мэдээлэл:", + "Show phpinfo" : "phpinfo харуулах", + "FPM worker pool" : "FPM ажилчдын сан", + "Pool name:" : "Сангийн нэр:", + "Pool type:" : "Сангийн төрөл:", + "Start time:" : "Эхлэх цаг:", + "Accepted connections:" : "Хүлээн авсан холболтууд:", + "Total processes:" : "Нийт процессууд:", + "Active processes:" : "Идэвхтэй процессууд:", + "Idle processes:" : "Сул процессууд:", + "Listen queue:" : "Сонсох дараалал:", + "Slow requests:" : "Удаан хүсэлтүүд:", + "Max listen queue:" : "Сонсох дарааллын дээд хэмжээ:", + "Max active processes:" : "Идэвхтэй процессуудын дээд хэмжээ:", + "Max children reached:" : "Дээд хүүхдүүдэд хүрсэн:", + "Shares" : "Түгээлтүүд", + "Users:" : "Хэрэглэгчид:", + "Groups:" : "Бүлгүүд:", + "Links:" : "Холбоосууд:", + "Emails:" : "Имэйлүүд:", + "Federated sent:" : "Холбогдсон илгээсэн:", + "Federated received:" : "Холбогдсон хүлээн авсан:", + "Talk conversations:" : "Talk яриа:", + "Average" : "Дундаж", + "Warning" : "Анхааруулга", + "Operating System:" : "Үйлдлийн систем:", + "CPU:" : "CPU:", + "Server time:" : "Серверийн цаг:", + "Uptime:" : "Ажилласан хугацаа:", + "Temperature" : "Температур", + "CPU Usage:" : "CPU ашиглалт:", + "Load average: {percentage} % ({load}) last minute" : "Дундаж ачаалал: {percentage} % ({load}) сүүлийн минут", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) сүүлийн 1 минут\n{last5MinutesPercentage} % ({last5Minutes}) сүүлийн 5 минут\n{last15MinutesPercentage} % ({last15Minutes}) сүүлийн 15 минут", + "RAM Usage:" : "RAM ашиглалт:", + "SWAP Usage:" : "SWAP ашиглалт:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Нийт: {memTotalBytes}/Одоогийн ашиглалт: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Нийт: {swapTotalBytes}/Одоогийн ашиглалт: {swapUsageBytes}", + "SWAP info not available" : "SWAP мэдээлэл боломжгүй", + "Copied!" : "Хуулсан!", + "Not supported!" : "Дэмжигдэхгүй", + "Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.", + "Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.", + "threads" : "thread-ууд", + "Memory:" : "Санах ой:", + "Files:" : "Файлууд:", + "Storages:" : "Санах ойнууд:", + "Free Space:" : "Чөлөөт зай:", + "Hostname:" : "Хостын нэр:", + "Gateway:" : "Гарц:", + "%s%% of all users" : "Бүх хэрэглэгчдийн %s%%", + "Memory limit:" : "Санах ойн хязгаар:", + "MB" : "МБ", + "OPcache Revalidate Frequency:" : "OPcache дахин баталгаажуулах давтамж:", + "External monitoring tool" : "Гадаад хяналтын хэрэгсэл", + "Use this end point to connect an external monitoring tool:" : "Гадаад хяналтын хэрэгсэл холбоход энэ төгсгөлийн цэгийг ашиглана уу:", + "Copy" : "Хуулах", + "Skip apps section (including apps section will send an external request to the app store)" : "Аппуудын хэсгийг алгасах (аппуудын хэсгийг оруулахад апп дэлгүүр рүү гадаад хүсэлт илгээнэ)", + "To use an access token, please generate one then set it using the following command:" : "Хандалтын токен ашиглахын тулд эхлээд токен үүсгэж, дараахь командын тусламжтайгаар тохируулна уу:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Дараа нь дээрх URL-д хүсэлт илгээхдээ токеноо \"NC-Token\" толгойн мэдээллээр дамжуулна уу." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/ms_MY.js b/l10n/ms_MY.js index a9554690..aa5fed38 100644 --- a/l10n/ms_MY.js +++ b/l10n/ms_MY.js @@ -1,12 +1,16 @@ OC.L10N.register( "serverinfo", { + "Type:" : "Jenis", + "Size:" : "Saiz", + "Files" : "Fail-fail", + "Yes" : "Ya", + "No" : "Tidak", + "Shares" : "Kongsi", + "Warning" : "Amaran", "Copied!" : "Disalin!", "Not supported!" : "Tidak menyokong!", "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", - "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.", - "Size:" : "Saiz", - "Shares" : "Kongsi", - "Type:" : "Jenis" + "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin." }, "nplurals=1; plural=0;"); diff --git a/l10n/ms_MY.json b/l10n/ms_MY.json index 81900d99..33638b79 100644 --- a/l10n/ms_MY.json +++ b/l10n/ms_MY.json @@ -1,10 +1,14 @@ { "translations": { + "Type:" : "Jenis", + "Size:" : "Saiz", + "Files" : "Fail-fail", + "Yes" : "Ya", + "No" : "Tidak", + "Shares" : "Kongsi", + "Warning" : "Amaran", "Copied!" : "Disalin!", "Not supported!" : "Tidak menyokong!", "Press ⌘-C to copy." : "Tekan ⌘-C untuk menyalin.", - "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.", - "Size:" : "Saiz", - "Shares" : "Kongsi", - "Type:" : "Jenis" + "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/my.js b/l10n/my.js deleted file mode 100644 index 535598f0..00000000 --- a/l10n/my.js +++ /dev/null @@ -1,10 +0,0 @@ -OC.L10N.register( - "serverinfo", - { - "Copied!" : "ကူးယူပြီး!", - "Not supported!" : "အထောက်အပံ့ မပြု!", - "Press ⌘-C to copy." : "ကူးယူရန်အတွက် ⌘-C ကိုနှိပ်ပါ။", - "Press Ctrl-C to copy." : "ကူးယူရန်အတွက် Ctrl-C ကိုနှိပ်ပါ။", - "Copy" : "ကူးယူပါ" -}, -"nplurals=1; plural=0;"); diff --git a/l10n/my.json b/l10n/my.json deleted file mode 100644 index ef06ff6e..00000000 --- a/l10n/my.json +++ /dev/null @@ -1,8 +0,0 @@ -{ "translations": { - "Copied!" : "ကူးယူပြီး!", - "Not supported!" : "အထောက်အပံ့ မပြု!", - "Press ⌘-C to copy." : "ကူးယူရန်အတွက် ⌘-C ကိုနှိပ်ပါ။", - "Press Ctrl-C to copy." : "ကူးယူရန်အတွက် Ctrl-C ကိုနှိပ်ပါ။", - "Copy" : "ကူးယူပါ" -},"pluralForm" :"nplurals=1; plural=0;" -} \ No newline at end of file diff --git a/l10n/nb.js b/l10n/nb.js index b1bbd0ef..273fc21d 100644 --- a/l10n/nb.js +++ b/l10n/nb.js @@ -1,47 +1,77 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Info om prosessor er ikke tilgjengelig", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Minne: Totalt: {memTotalBytes}/Nåværende bruk: {memUsageBytes}", - "RAM info not available" : "Info om minne er ikke tilgjengelig", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totalt: {swapTotalBytes}/Nåværende bruk: {swapUsageBytes}", - "SWAP info not available" : "Info om SWAP er ikke tilgjengelig", - "Copied!" : "Kopiert!", - "Not supported!" : "Ikke støttet!", - "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", - "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", "System" : "System", + "Unknown" : "Ukjent", "Monitoring" : "Overvåker", "Monitoring app with useful server information" : "Overvåkingsapp med nyttig serverinformasjon", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gir nyttig serverinformasjon, som CPU-belastning, RAM-bruk, diskbruk, antall brukere, ned mere.", - "Operating System:" : "Operativsystem:", - "CPU:" : "CPU:", - "Memory:" : "Minne:", - "Server time:" : "Servertid:", - "Uptime:" : "Oppetid:", - "Temperature" : "Temperatur", + "Active users" : "Aktive brukere", + "Last hour" : "Siste time", + "Webcron" : "Webcron", + "Background jobs" : "Bakgrunnsjobber", + "Mode" : "Modus", + "Never" : "Aldri", "Load" : "Last", - "Memory" : "Minne", + "CPU info not available" : "Info om prosessor er ikke tilgjengelig", + "Current usage" : "Nåværende bruk", + "Load average" : "Snittbelastning", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Versjon:", + "Size:" : "Størrelse:", + "Used" : "Brukt", + "Available" : "Ledig", "Disk" : "Disk", + "Files" : "Filer", + "Storages" : "Lagringer", "Mount:" : "Montering:", "Filesystem:" : "Filsystem:", - "Size:" : "Størrelse:", "Available:" : "Tilgjengelig:", "Used:" : "Brukt:", - "Files:" : "Filer:", - "Storages:" : "Lagringer:", - "Free Space:" : "Ledig plass:", + "Status" : "Status", + "Started" : "Started", + "Duration" : "Varighet", + "Job" : "Jobb", + "When" : "Når", + "Details" : "Detaljer", + "Succeeded" : "Vellykket", + "Failed" : "Mislyktes", + "Running" : "Løping", + "Memory" : "Minne", + "RAM info not available" : "Info om minne er ikke tilgjengelig", + "Total" : "Totalt", + "Configuration" : "Konfigurasjon", + "Output in JSON" : "Utdata i JSON", + "Skip server update" : "Hopp over serveroppdatering", + "Authentication" : "Autentisering", "Network" : "Nettverk", - "Hostname:" : "Servernavn:", - "Gateway:" : "Standardruter:", + "Hostname" : "Servernavn", + "Gateway" : "Standardruter", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Hastighet:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktive brukere", - "Last hour" : "Siste time", + "Keys" : "Nøkler", + "Disabled" : "Deaktivert", + "seconds" : "sekund", + "Yes" : "Ja", + "No" : "Nei", + "PHP extensions" : "PHP-utvidelser", + "Extension" : "Filetternavn", + "Unable to list extensions" : "Ikke i stand til å laste utvidelser", + "PHP" : "PHP", + "Version" : "Versjon", + "Memory limit" : "Minnegrense", + "Max execution time:" : "Maks. kjøringstid:", + "Upload max size:" : "Maks. opplastingstørrelse:", + "Extensions:" : "Utvidelser:", + "Show phpinfo" : "Vis phpinfo", + "CPU" : "CPU", + "Resource usage" : "Ressursbruk", "Shares" : "Delinger", "Users:" : "Brukere:", "Groups:" : "Grupper:", @@ -50,25 +80,34 @@ OC.L10N.register( "Federated sent:" : "Forent sendt:", "Federated received:" : "Forent mottatt:", "Talk conversations:" : "Talk-samtaler:", - "PHP" : "PHP", - "Version:" : "Versjon:", + "Average" : "Gjennomsnitt", + "Warning" : "Advarsel", + "Operating System:" : "Operativsystem:", + "CPU:" : "CPU:", + "Server time:" : "Servertid:", + "Uptime:" : "Oppetid:", + "Temperature" : "Temperatur", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Minne: Totalt: {memTotalBytes}/Nåværende bruk: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totalt: {swapTotalBytes}/Nåværende bruk: {swapUsageBytes}", + "SWAP info not available" : "Info om SWAP er ikke tilgjengelig", + "Copied!" : "Kopiert!", + "Not supported!" : "Ikke støttet!", + "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", + "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", + "Memory:" : "Minne:", + "Files:" : "Filer:", + "Storages:" : "Lagringer:", + "Free Space:" : "Ledig plass:", + "Hostname:" : "Servernavn:", + "Gateway:" : "Standardruter:", "Memory limit:" : "Minnegrense:", - "Max execution time:" : "Maks. kjøringstid:", - "Upload max size:" : "Maks. opplastingstørrelse:", "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", - "Extensions:" : "Utvidelser:", - "Unable to list extensions" : "Ikke i stand til å laste utvidelser", - "Show phpinfo" : "Vis phpinfo", - "Database" : "Database", - "Type:" : "Type:", "External monitoring tool" : "Eksternt overvåkingsverktøy", "Use this end point to connect an external monitoring tool:" : "Bruk dette endepunktet til å koble til et eksternt overvåkingsverktøy:", "Copy" : "Kopier", - "Output in JSON" : "Utdata i JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Hopp over apper-delen (inkludert appdelen sender en ekstern forespørsel til appbutikken)", - "Skip server update" : "Hopp over serveroppdatering", "To use an access token, please generate one then set it using the following command:" : "For å bruke et tilgangstoken, vennligst generer et og sett det ved hjelp av følgende kommando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Send deretter tokenet med \"NC-Token\"-overskriften under spørring av URL-adressen ovenfor.", - "Unknown Processor" : "Ukjent prosessor" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nb.json b/l10n/nb.json index f2ffe6ca..cf452bf2 100644 --- a/l10n/nb.json +++ b/l10n/nb.json @@ -1,45 +1,75 @@ { "translations": { - "CPU info not available" : "Info om prosessor er ikke tilgjengelig", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Minne: Totalt: {memTotalBytes}/Nåværende bruk: {memUsageBytes}", - "RAM info not available" : "Info om minne er ikke tilgjengelig", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totalt: {swapTotalBytes}/Nåværende bruk: {swapUsageBytes}", - "SWAP info not available" : "Info om SWAP er ikke tilgjengelig", - "Copied!" : "Kopiert!", - "Not supported!" : "Ikke støttet!", - "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", - "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", "System" : "System", + "Unknown" : "Ukjent", "Monitoring" : "Overvåker", "Monitoring app with useful server information" : "Overvåkingsapp med nyttig serverinformasjon", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Gir nyttig serverinformasjon, som CPU-belastning, RAM-bruk, diskbruk, antall brukere, ned mere.", - "Operating System:" : "Operativsystem:", - "CPU:" : "CPU:", - "Memory:" : "Minne:", - "Server time:" : "Servertid:", - "Uptime:" : "Oppetid:", - "Temperature" : "Temperatur", + "Active users" : "Aktive brukere", + "Last hour" : "Siste time", + "Webcron" : "Webcron", + "Background jobs" : "Bakgrunnsjobber", + "Mode" : "Modus", + "Never" : "Aldri", "Load" : "Last", - "Memory" : "Minne", + "CPU info not available" : "Info om prosessor er ikke tilgjengelig", + "Current usage" : "Nåværende bruk", + "Load average" : "Snittbelastning", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Versjon:", + "Size:" : "Størrelse:", + "Used" : "Brukt", + "Available" : "Ledig", "Disk" : "Disk", + "Files" : "Filer", + "Storages" : "Lagringer", "Mount:" : "Montering:", "Filesystem:" : "Filsystem:", - "Size:" : "Størrelse:", "Available:" : "Tilgjengelig:", "Used:" : "Brukt:", - "Files:" : "Filer:", - "Storages:" : "Lagringer:", - "Free Space:" : "Ledig plass:", + "Status" : "Status", + "Started" : "Started", + "Duration" : "Varighet", + "Job" : "Jobb", + "When" : "Når", + "Details" : "Detaljer", + "Succeeded" : "Vellykket", + "Failed" : "Mislyktes", + "Running" : "Løping", + "Memory" : "Minne", + "RAM info not available" : "Info om minne er ikke tilgjengelig", + "Total" : "Totalt", + "Configuration" : "Konfigurasjon", + "Output in JSON" : "Utdata i JSON", + "Skip server update" : "Hopp over serveroppdatering", + "Authentication" : "Autentisering", "Network" : "Nettverk", - "Hostname:" : "Servernavn:", - "Gateway:" : "Standardruter:", + "Hostname" : "Servernavn", + "Gateway" : "Standardruter", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Hastighet:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktive brukere", - "Last hour" : "Siste time", + "Keys" : "Nøkler", + "Disabled" : "Deaktivert", + "seconds" : "sekund", + "Yes" : "Ja", + "No" : "Nei", + "PHP extensions" : "PHP-utvidelser", + "Extension" : "Filetternavn", + "Unable to list extensions" : "Ikke i stand til å laste utvidelser", + "PHP" : "PHP", + "Version" : "Versjon", + "Memory limit" : "Minnegrense", + "Max execution time:" : "Maks. kjøringstid:", + "Upload max size:" : "Maks. opplastingstørrelse:", + "Extensions:" : "Utvidelser:", + "Show phpinfo" : "Vis phpinfo", + "CPU" : "CPU", + "Resource usage" : "Ressursbruk", "Shares" : "Delinger", "Users:" : "Brukere:", "Groups:" : "Grupper:", @@ -48,25 +78,34 @@ "Federated sent:" : "Forent sendt:", "Federated received:" : "Forent mottatt:", "Talk conversations:" : "Talk-samtaler:", - "PHP" : "PHP", - "Version:" : "Versjon:", + "Average" : "Gjennomsnitt", + "Warning" : "Advarsel", + "Operating System:" : "Operativsystem:", + "CPU:" : "CPU:", + "Server time:" : "Servertid:", + "Uptime:" : "Oppetid:", + "Temperature" : "Temperatur", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Minne: Totalt: {memTotalBytes}/Nåværende bruk: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totalt: {swapTotalBytes}/Nåværende bruk: {swapUsageBytes}", + "SWAP info not available" : "Info om SWAP er ikke tilgjengelig", + "Copied!" : "Kopiert!", + "Not supported!" : "Ikke støttet!", + "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", + "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", + "Memory:" : "Minne:", + "Files:" : "Filer:", + "Storages:" : "Lagringer:", + "Free Space:" : "Ledig plass:", + "Hostname:" : "Servernavn:", + "Gateway:" : "Standardruter:", "Memory limit:" : "Minnegrense:", - "Max execution time:" : "Maks. kjøringstid:", - "Upload max size:" : "Maks. opplastingstørrelse:", "OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:", - "Extensions:" : "Utvidelser:", - "Unable to list extensions" : "Ikke i stand til å laste utvidelser", - "Show phpinfo" : "Vis phpinfo", - "Database" : "Database", - "Type:" : "Type:", "External monitoring tool" : "Eksternt overvåkingsverktøy", "Use this end point to connect an external monitoring tool:" : "Bruk dette endepunktet til å koble til et eksternt overvåkingsverktøy:", "Copy" : "Kopier", - "Output in JSON" : "Utdata i JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Hopp over apper-delen (inkludert appdelen sender en ekstern forespørsel til appbutikken)", - "Skip server update" : "Hopp over serveroppdatering", "To use an access token, please generate one then set it using the following command:" : "For å bruke et tilgangstoken, vennligst generer et og sett det ved hjelp av følgende kommando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Send deretter tokenet med \"NC-Token\"-overskriften under spørring av URL-adressen ovenfor.", - "Unknown Processor" : "Ukjent prosessor" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/nl.js b/l10n/nl.js index 0f151063..5ecc75f9 100644 --- a/l10n/nl.js +++ b/l10n/nl.js @@ -1,47 +1,95 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU info niet beschikbaar", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totaal: {memTotalBytes}/Huidig gebruik: {memUsageBytes}", - "RAM info not available" : "RAM-info niet beschikbaar", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totaal: {swapTotalBytes}/Huidig gebruik: {swapUsageBytes}", - "SWAP info not available" : "SWAP-info niet beschikbaar", - "Copied!" : "Gekopieerd!", - "Not supported!" : "Niet ondersteund", - "Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.", - "Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.", "System" : "Systeem", + "Unknown" : "Onbekend", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$ddagen, %2$d uren, %3$d minuten, %4$d seconden", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d uren, %2$d minuten, %3$d seconden", "Monitoring" : "Monitoren", "Monitoring app with useful server information" : "Monitor app met nuttige serverinformatie", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Toont nuttige serverinformatie, zoals CPU belasting, RAM gebruik, disk gebruik, aantal gebruikers, etc.", - "Operating System:" : "Besturingssysteem:", - "CPU:" : "CPU:", - "Memory:" : "Geheugen:", - "Server time:" : "Servertijd:", - "Uptime:" : "Bedrijfstijd:", - "Temperature" : "Temperatuur", + "Active users" : "Actieve gebruikers", + "Last hour" : "Laatste uur", + "Last 24 Hours" : "Laatste 24 uur", + "Last 7 Days" : "Laatste 7 dagen", + "Last 30 Days" : "Laatste 30 dagen", + "Webcron" : "Webcron", + "Background jobs" : "Achtergrondtaken", + "Mode" : "Modus", + "Never" : "Nooit", "Load" : "Belasting", - "Memory" : "Geheugen", + "CPU info not available" : "CPU info niet beschikbaar", + "Current usage" : "Huidig gebruik", + "Threads" : "Lijnen", + "Load average" : "Gemiddelde belasting", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Versie:", + "Size:" : "Grootte:", + "Used" : "Gebruikt", + "Available" : "Beschikbaar", "Disk" : "Schijf", + "Files" : "Bestanden", + "Storages" : "Opslag", "Mount:" : "Koppelpunt:", "Filesystem:" : "Bestandssysteem:", - "Size:" : "Grootte:", "Available:" : "Beschikbaar:", "Used:" : "Gebruikt:", - "Files:" : "Bestanden:", - "Storages:" : "Opslag:", - "Free Space:" : "Vrije ruimte:", + "Status" : "Status", + "Started" : "Gestart", + "Duration" : "Duur", + "Job" : "Taak", + "When" : "Wanneer", + "Details" : "Details", + "Failed" : "Mislukt", + "Running" : "Hardlopen", + "Memory" : "Geheugen", + "RAM info not available" : "RAM-info niet beschikbaar", + "Total" : "Totaal", + "Configuration" : "Configuratie", + "Output in JSON" : "Uitvoer in JSON", + "Skip server update" : "Serverupdate overslaan", + "Authentication" : "Authenticatie", "Network" : "Netwerk", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Hostname", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Snelheid:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Actieve gebruikers", - "Last hour" : "Laatste uur", + "Keys" : "Sleutels", + "Disabled" : "Uitgeschakeld", + "seconds" : "seconden", + "Yes" : "Ja", + "No" : "Nee", + "PHP extensions" : "PHP extensies", + "Extension" : "Extensie", + "Unable to list extensions" : "Kan extensies niet weergeven", + "PHP" : "PHP", + "Version" : "Versie", + "Memory limit" : "Geheugenlimiet", + "Max execution time:" : "Maximale uitvoeringstijd:", + "Upload max size:" : "Max. uploadgrootte:", + "Extensions:" : "Extensies:", + "PHP Info:" : "PHP info:", + "Show phpinfo" : "phpinfo weergeven", + "FPM worker pool" : "FPM werkpool", + "Pool name:" : "Poolnaam:", + "Pool type:" : "Pooltype:", + "Start time:" : "Starttijd:", + "Accepted connections:" : "Geaccepteerde verbindingen:", + "Total processes:" : "Totaal aantal processen:", + "Active processes:" : "Actieve processen:", + "Idle processes:" : "Slapende processen:", + "Listen queue:" : "Luisterwachtrij:", + "Slow requests:" : "Langzame aanvragen:", + "Max listen queue:" : "Max luisterwachtrij:", + "Max active processes:" : "Max actieve processen:", + "Max children reached:" : "Max kinderen bereikt:", + "CPU" : "CPU", "Shares" : "Delen", "Users:" : "Gebruikers:", "Groups:" : "Groepen:", @@ -50,24 +98,42 @@ OC.L10N.register( "Federated sent:" : "Federated verstuurd:", "Federated received:" : "Federated ontvangen:", "Talk conversations:" : "Talk gesprekken:", - "PHP" : "PHP", - "Version:" : "Versie:", + "Average" : "Gemiddeld", + "Warning" : "Waarschuwing", + "Operating System:" : "Besturingssysteem:", + "CPU:" : "CPU:", + "Server time:" : "Servertijd:", + "Uptime:" : "Bedrijfstijd:", + "Temperature" : "Temperatuur", + "CPU Usage:" : "CPU gebruik:", + "Load average: {percentage} % ({load}) last minute" : "Beladingsgemiddelde: {percentage} % (afgelopen minuut:{load})", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute} Laatste minuut )\n{last5MinutesPercentage}% ({last5Minutes}) Laatste 5 minuten\n{last15MinutesPercentage} % ({last15Minutes}) Laatste 15 minuten", + "RAM Usage:" : "RAM gebruik:", + "SWAP Usage:" : "SWAP gebruik;", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totaal: {memTotalBytes}/Huidig gebruik: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totaal: {swapTotalBytes}/Huidig gebruik: {swapUsageBytes}", + "SWAP info not available" : "SWAP-info niet beschikbaar", + "Copied!" : "Gekopieerd!", + "Not supported!" : "Niet ondersteund", + "Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.", + "Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.", + "threads" : "lijnen", + "Memory:" : "Geheugen:", + "Files:" : "Bestanden:", + "Storages:" : "Opslag:", + "Free Space:" : "Vrije ruimte:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s %% van alle gebruikers", "Memory limit:" : "Geheugen limiet:", - "Max execution time:" : "Maximale uitvoeringstijd:", - "Upload max size:" : "Max. uploadgrootte:", + "MB" : "MB", "OPcache Revalidate Frequency:" : "Frequentie OPcache opnieuw valideren:", - "Extensions:" : "Extensies:", - "Unable to list extensions" : "Kan extensies niet weergeven", - "Show phpinfo" : "phpinfo weergeven", - "Database" : "Database", - "Type:" : "Type:", "External monitoring tool" : "Externe monitoring tool", "Use this end point to connect an external monitoring tool:" : "Gebruik dit eindpunt om een extern monitoringprogramma te koppelen:", "Copy" : "Kopiëren", - "Output in JSON" : "Uitvoer in JSON", - "Skip server update" : "Serverupdate overslaan", + "Skip apps section (including apps section will send an external request to the app store)" : "Sla apps sectie over (apps sectie meenemen stuurt een extern verzoek naar de app store)", "To use an access token, please generate one then set it using the following command:" : "Om een ​​toegangstoken te gebruiken, genereert u er een en stelt u deze in met de volgende opdracht:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Geef vervolgens het token met de \"NC-Token\" -header door bij het opvragen van de bovenstaande URL.", - "Unknown Processor" : "Onbekende Processor" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/nl.json b/l10n/nl.json index 9947db6b..81b94eb3 100644 --- a/l10n/nl.json +++ b/l10n/nl.json @@ -1,45 +1,93 @@ { "translations": { - "CPU info not available" : "CPU info niet beschikbaar", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totaal: {memTotalBytes}/Huidig gebruik: {memUsageBytes}", - "RAM info not available" : "RAM-info niet beschikbaar", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totaal: {swapTotalBytes}/Huidig gebruik: {swapUsageBytes}", - "SWAP info not available" : "SWAP-info niet beschikbaar", - "Copied!" : "Gekopieerd!", - "Not supported!" : "Niet ondersteund", - "Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.", - "Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.", "System" : "Systeem", + "Unknown" : "Onbekend", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$ddagen, %2$d uren, %3$d minuten, %4$d seconden", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d uren, %2$d minuten, %3$d seconden", "Monitoring" : "Monitoren", "Monitoring app with useful server information" : "Monitor app met nuttige serverinformatie", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Toont nuttige serverinformatie, zoals CPU belasting, RAM gebruik, disk gebruik, aantal gebruikers, etc.", - "Operating System:" : "Besturingssysteem:", - "CPU:" : "CPU:", - "Memory:" : "Geheugen:", - "Server time:" : "Servertijd:", - "Uptime:" : "Bedrijfstijd:", - "Temperature" : "Temperatuur", + "Active users" : "Actieve gebruikers", + "Last hour" : "Laatste uur", + "Last 24 Hours" : "Laatste 24 uur", + "Last 7 Days" : "Laatste 7 dagen", + "Last 30 Days" : "Laatste 30 dagen", + "Webcron" : "Webcron", + "Background jobs" : "Achtergrondtaken", + "Mode" : "Modus", + "Never" : "Nooit", "Load" : "Belasting", - "Memory" : "Geheugen", + "CPU info not available" : "CPU info niet beschikbaar", + "Current usage" : "Huidig gebruik", + "Threads" : "Lijnen", + "Load average" : "Gemiddelde belasting", + "Database" : "Database", + "Type:" : "Type:", + "Version:" : "Versie:", + "Size:" : "Grootte:", + "Used" : "Gebruikt", + "Available" : "Beschikbaar", "Disk" : "Schijf", + "Files" : "Bestanden", + "Storages" : "Opslag", "Mount:" : "Koppelpunt:", "Filesystem:" : "Bestandssysteem:", - "Size:" : "Grootte:", "Available:" : "Beschikbaar:", "Used:" : "Gebruikt:", - "Files:" : "Bestanden:", - "Storages:" : "Opslag:", - "Free Space:" : "Vrije ruimte:", + "Status" : "Status", + "Started" : "Gestart", + "Duration" : "Duur", + "Job" : "Taak", + "When" : "Wanneer", + "Details" : "Details", + "Failed" : "Mislukt", + "Running" : "Hardlopen", + "Memory" : "Geheugen", + "RAM info not available" : "RAM-info niet beschikbaar", + "Total" : "Totaal", + "Configuration" : "Configuratie", + "Output in JSON" : "Uitvoer in JSON", + "Skip server update" : "Serverupdate overslaan", + "Authentication" : "Authenticatie", "Network" : "Netwerk", - "Hostname:" : "Hostname:", - "Gateway:" : "Gateway:", + "Hostname" : "Hostname", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Snelheid:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Actieve gebruikers", - "Last hour" : "Laatste uur", + "Keys" : "Sleutels", + "Disabled" : "Uitgeschakeld", + "seconds" : "seconden", + "Yes" : "Ja", + "No" : "Nee", + "PHP extensions" : "PHP extensies", + "Extension" : "Extensie", + "Unable to list extensions" : "Kan extensies niet weergeven", + "PHP" : "PHP", + "Version" : "Versie", + "Memory limit" : "Geheugenlimiet", + "Max execution time:" : "Maximale uitvoeringstijd:", + "Upload max size:" : "Max. uploadgrootte:", + "Extensions:" : "Extensies:", + "PHP Info:" : "PHP info:", + "Show phpinfo" : "phpinfo weergeven", + "FPM worker pool" : "FPM werkpool", + "Pool name:" : "Poolnaam:", + "Pool type:" : "Pooltype:", + "Start time:" : "Starttijd:", + "Accepted connections:" : "Geaccepteerde verbindingen:", + "Total processes:" : "Totaal aantal processen:", + "Active processes:" : "Actieve processen:", + "Idle processes:" : "Slapende processen:", + "Listen queue:" : "Luisterwachtrij:", + "Slow requests:" : "Langzame aanvragen:", + "Max listen queue:" : "Max luisterwachtrij:", + "Max active processes:" : "Max actieve processen:", + "Max children reached:" : "Max kinderen bereikt:", + "CPU" : "CPU", "Shares" : "Delen", "Users:" : "Gebruikers:", "Groups:" : "Groepen:", @@ -48,24 +96,42 @@ "Federated sent:" : "Federated verstuurd:", "Federated received:" : "Federated ontvangen:", "Talk conversations:" : "Talk gesprekken:", - "PHP" : "PHP", - "Version:" : "Versie:", + "Average" : "Gemiddeld", + "Warning" : "Waarschuwing", + "Operating System:" : "Besturingssysteem:", + "CPU:" : "CPU:", + "Server time:" : "Servertijd:", + "Uptime:" : "Bedrijfstijd:", + "Temperature" : "Temperatuur", + "CPU Usage:" : "CPU gebruik:", + "Load average: {percentage} % ({load}) last minute" : "Beladingsgemiddelde: {percentage} % (afgelopen minuut:{load})", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute} Laatste minuut )\n{last5MinutesPercentage}% ({last5Minutes}) Laatste 5 minuten\n{last15MinutesPercentage} % ({last15Minutes}) Laatste 15 minuten", + "RAM Usage:" : "RAM gebruik:", + "SWAP Usage:" : "SWAP gebruik;", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totaal: {memTotalBytes}/Huidig gebruik: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totaal: {swapTotalBytes}/Huidig gebruik: {swapUsageBytes}", + "SWAP info not available" : "SWAP-info niet beschikbaar", + "Copied!" : "Gekopieerd!", + "Not supported!" : "Niet ondersteund", + "Press ⌘-C to copy." : "Druk op ⌘-C om te kopiëren.", + "Press Ctrl-C to copy." : "Druk op Ctrl-C om te kopiëren.", + "threads" : "lijnen", + "Memory:" : "Geheugen:", + "Files:" : "Bestanden:", + "Storages:" : "Opslag:", + "Free Space:" : "Vrije ruimte:", + "Hostname:" : "Hostname:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s %% van alle gebruikers", "Memory limit:" : "Geheugen limiet:", - "Max execution time:" : "Maximale uitvoeringstijd:", - "Upload max size:" : "Max. uploadgrootte:", + "MB" : "MB", "OPcache Revalidate Frequency:" : "Frequentie OPcache opnieuw valideren:", - "Extensions:" : "Extensies:", - "Unable to list extensions" : "Kan extensies niet weergeven", - "Show phpinfo" : "phpinfo weergeven", - "Database" : "Database", - "Type:" : "Type:", "External monitoring tool" : "Externe monitoring tool", "Use this end point to connect an external monitoring tool:" : "Gebruik dit eindpunt om een extern monitoringprogramma te koppelen:", "Copy" : "Kopiëren", - "Output in JSON" : "Uitvoer in JSON", - "Skip server update" : "Serverupdate overslaan", + "Skip apps section (including apps section will send an external request to the app store)" : "Sla apps sectie over (apps sectie meenemen stuurt een extern verzoek naar de app store)", "To use an access token, please generate one then set it using the following command:" : "Om een ​​toegangstoken te gebruiken, genereert u er een en stelt u deze in met de volgende opdracht:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Geef vervolgens het token met de \"NC-Token\" -header door bij het opvragen van de bovenstaande URL.", - "Unknown Processor" : "Onbekende Processor" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js index 5ecd77ed..68922ec3 100644 --- a/l10n/nn_NO.js +++ b/l10n/nn_NO.js @@ -1,20 +1,31 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Kopiert!", - "Not supported!" : "Ikkje støtta!", - "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", - "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", "System" : "System", + "Unknown" : "Ukjend", "Monitoring" : "Overvåker", - "Size:" : "Storleik:", - "Files:" : "Filar:", "Active users" : "Aktive brukarare", - "Shares" : "Delingar", - "Users:" : "Brukarare:", - "Upload max size:" : "Maks opplastning storleik:", + "Never" : "Aldri", + "Current usage" : "Nåverende bruk", "Database" : "Database", "Type:" : "Type:", + "Size:" : "Storleik:", + "Status" : "Status", + "Details" : "Detaljar", + "Total" : "Totalt", + "Authentication" : "Godkjenning", + "Hostname" : "Vertsnamn", + "Disabled" : "Deaktivert", + "Version" : "Utgåve", + "Upload max size:" : "Maks opplastning storleik:", + "Shares" : "Delingar", + "Users:" : "Brukarare:", + "Warning" : "Åtvaring", + "Copied!" : "Kopiert!", + "Not supported!" : "Ikkje støtta!", + "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", + "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", + "Files:" : "Filar:", "External monitoring tool" : "Eksternt monoitor verktøy", "Copy" : "Kopier" }, diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json index b7448785..c5974a94 100644 --- a/l10n/nn_NO.json +++ b/l10n/nn_NO.json @@ -1,18 +1,29 @@ { "translations": { - "Copied!" : "Kopiert!", - "Not supported!" : "Ikkje støtta!", - "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", - "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", "System" : "System", + "Unknown" : "Ukjend", "Monitoring" : "Overvåker", - "Size:" : "Storleik:", - "Files:" : "Filar:", "Active users" : "Aktive brukarare", - "Shares" : "Delingar", - "Users:" : "Brukarare:", - "Upload max size:" : "Maks opplastning storleik:", + "Never" : "Aldri", + "Current usage" : "Nåverende bruk", "Database" : "Database", "Type:" : "Type:", + "Size:" : "Storleik:", + "Status" : "Status", + "Details" : "Detaljar", + "Total" : "Totalt", + "Authentication" : "Godkjenning", + "Hostname" : "Vertsnamn", + "Disabled" : "Deaktivert", + "Version" : "Utgåve", + "Upload max size:" : "Maks opplastning storleik:", + "Shares" : "Delingar", + "Users:" : "Brukarare:", + "Warning" : "Åtvaring", + "Copied!" : "Kopiert!", + "Not supported!" : "Ikkje støtta!", + "Press ⌘-C to copy." : "Trykk ⌘-C for å kopiere.", + "Press Ctrl-C to copy." : "Trykk Ctrl-C for å kopiere.", + "Files:" : "Filar:", "External monitoring tool" : "Eksternt monoitor verktøy", "Copy" : "Kopier" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/oc.js b/l10n/oc.js index e36fb1b1..a30a0497 100644 --- a/l10n/oc.js +++ b/l10n/oc.js @@ -1,15 +1,34 @@ OC.L10N.register( "serverinfo", { + "Unknown" : "Desconegut", + "Active users" : "Utilizaires actius", + "Background jobs" : "Prètzfaches de rèireplan", + "Mode" : "Mòde", + "Never" : "Jamai", + "Type:" : "Tipe :", + "Size:" : "Talha :", + "Available" : "Disponible", + "Status" : "Estat", + "Duration" : "Durada", + "Details" : "Per lo Menut", + "Failed" : "Fracàs", + "Configuration" : "Configuracion", + "Authentication" : "Autentificacion", + "Disabled" : "Desactivat", + "seconds" : "segondas", + "Yes" : "Òc", + "No" : "Non", + "PHP extensions" : "extensions PHP", + "Extension" : "Extension", + "PHP" : "PHP", + "Version" : "Version", + "Shares" : "Partatges", + "Warning" : "Avertiment", "Copied!" : "Copiat !", "Not supported!" : "Pas pres en carga !", "Press ⌘-C to copy." : "Quichar ⌘-C per copiar.", "Press Ctrl-C to copy." : "Quichar Ctrl-C per copiar.", - "Size:" : "Talha :", - "Active users" : "Utilizaires actius", - "Shares" : "Partatges", - "PHP" : "PHP", - "Type:" : "Tipe :", "Copy" : "Copiar" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/oc.json b/l10n/oc.json index a608077c..86bc94b5 100644 --- a/l10n/oc.json +++ b/l10n/oc.json @@ -1,13 +1,32 @@ { "translations": { + "Unknown" : "Desconegut", + "Active users" : "Utilizaires actius", + "Background jobs" : "Prètzfaches de rèireplan", + "Mode" : "Mòde", + "Never" : "Jamai", + "Type:" : "Tipe :", + "Size:" : "Talha :", + "Available" : "Disponible", + "Status" : "Estat", + "Duration" : "Durada", + "Details" : "Per lo Menut", + "Failed" : "Fracàs", + "Configuration" : "Configuracion", + "Authentication" : "Autentificacion", + "Disabled" : "Desactivat", + "seconds" : "segondas", + "Yes" : "Òc", + "No" : "Non", + "PHP extensions" : "extensions PHP", + "Extension" : "Extension", + "PHP" : "PHP", + "Version" : "Version", + "Shares" : "Partatges", + "Warning" : "Avertiment", "Copied!" : "Copiat !", "Not supported!" : "Pas pres en carga !", "Press ⌘-C to copy." : "Quichar ⌘-C per copiar.", "Press Ctrl-C to copy." : "Quichar Ctrl-C per copiar.", - "Size:" : "Talha :", - "Active users" : "Utilizaires actius", - "Shares" : "Partatges", - "PHP" : "PHP", - "Type:" : "Tipe :", "Copy" : "Copiar" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/pl.js b/l10n/pl.js index a844c48c..ce74bebc 100644 --- a/l10n/pl.js +++ b/l10n/pl.js @@ -1,51 +1,81 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informacje o procesorze są niedostępne", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Pamięć RAM: Całkowita: {memTotalBytes}/Bieżące użycie: {memUsageBytes}", - "RAM info not available" : "Informacje o pamięci RAM są niedostępne", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Pamięć SWAP: Całkowita: {swapTotalBytes}/Bieżące użycie: {swapUsageBytes}", - "SWAP info not available" : "Informacje o pamięci SWAP są niedostępne", - "Copied!" : "Skopiowano!", - "Not supported!" : "Niewspierane!", - "Press ⌘-C to copy." : "Aby skopiować wciśnij ⌘-C.", - "Press Ctrl-C to copy." : "Aby skopiować wciśnij Ctrl+C.", "System" : "System", + "Unknown" : "Nieznana", "Monitoring" : "Monitoring", "Monitoring app with useful server information" : "Aplikacja monitorująca z przydatnymi informacjami o serwerze", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zapewnia przydatne informacje o serwerze, takie jak obciążenie procesora, użycie pamięci RAM, wykorzystanie dysku, liczba użytkowników itp.", - "Operating System:" : "System operacyjny:", - "CPU:" : "Procesor CPU:", - "Memory:" : "Pamięć:", - "Server time:" : "Czas serwera:", - "Uptime:" : "Czas pracy:", - "Temperature" : "Temperatura", + "Active users" : "Aktywni użytkownicy", + "Last hour" : "Ostatnia godzina", + "Last 24 Hours" : "Ostatnie 24 godziny", + "Last 7 Days" : "Ostatnie 7 dni", + "Last 30 Days" : "Ostatnie 30 dni", + "Webcron" : "Webcron", + "Background jobs" : "Zadania w tle", + "Mode" : "Tryb", + "Never" : "Nigdy", "Load" : "Obciążenie", - "Memory" : "Pamięć", + "CPU info not available" : "Informacje o procesorze są niedostępne", + "Current usage" : "Bieżące użycie", + "Threads" : "Wątki", + "Load average" : "Średnie obciążenie", + "Database" : "Baza danych", + "Type:" : "Rodzaj:", + "Version:" : "Wersja:", + "Size:" : "Rozmiar:", + "Used" : "Używany", + "Available" : "Dostępność", "Disk" : "Dysk", + "Files" : "Pliki", + "Storages" : "Magazyny", "Mount:" : "Zamontowany:", "Filesystem:" : "System plików:", - "Size:" : "Rozmiar:", "Available:" : "Dostępny:", "Used:" : "Używany:", - "Files:" : "Pliki:", - "Storages:" : "Magazyny:", - "Free Space:" : "Wolne miejsce:", + "Status" : "Status", + "Started" : "Rozpoczęte", + "Duration" : "Czas trwania", + "Job" : "Praca", + "When" : "Kiedy", + "Details" : "Szczegóły", + "Succeeded" : "Zakończono pomyślnie", + "Failed" : "Nie powiodło się", + "Running" : "Uruchomione", + "Memory" : "Pamięć", + "RAM info not available" : "Informacje o pamięci RAM są niedostępne", + "Total" : "Całkowita", + "Configuration" : "Konfiguracja", + "Output in JSON" : "Dane wyjściowe w JSON", + "Skip server update" : "Pomiń aktualizację serwera", + "Authentication" : "Uwierzytelnienie", "Network" : "Sieć", - "Hostname:" : "Nazwa hosta:", - "Gateway:" : "Brama:", + "Hostname" : "Nazwa hosta", + "Gateway" : "Brama", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Prędkość:", "Duplex:" : "Dupleks:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktywni użytkownicy", - "Last hour" : "Ostatnia godzina", - "%s%% of all users" : "%s%% wszystkich użytkowników", - "Last 24 Hours" : "Ostatnie 24 godziny", - "Last 7 Days" : "Ostatnie 7 dni", - "Last 30 Days" : "Ostatnie 30 dni", + "Keys" : "Klucze", + "Disabled" : "Wyłączone", + "seconds" : "sekund", + "Yes" : "Tak", + "No" : "Nie", + "PHP extensions" : "Rozszerzenia PHP", + "Extension" : "Rozszerzenie", + "Unable to list extensions" : "Nie można wyświetlić listy rozszerzeń", + "PHP" : "PHP", + "Version" : "Wersja", + "Memory limit" : "Limit pamięci", + "Max execution time:" : "Maksymalny czas wykonania:", + "Upload max size:" : "Limit wielkości przesyłanego pliku (upload_max_filesize):", + "Extensions:" : "Rozszerzenia:", + "Show phpinfo" : "Pokaż phpinfo", + "CPU" : "Procesor CPU", + "Resource usage" : "Wykorzystanie zasobów", "Shares" : "Udostępnienia", "Users:" : "Użytkownicy:", "Groups:" : "Grupy:", @@ -54,25 +84,35 @@ OC.L10N.register( "Federated sent:" : "Wysłane do federacji:", "Federated received:" : "Otrzymane z federacji:", "Talk conversations:" : "Rozmowy Talk:", - "PHP" : "PHP", - "Version:" : "Wersja:", + "Average" : "Średnia", + "Warning" : "Ostrzeżenie", + "Operating System:" : "System operacyjny:", + "CPU:" : "Procesor CPU:", + "Server time:" : "Czas serwera:", + "Uptime:" : "Czas pracy:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Pamięć RAM: Całkowita: {memTotalBytes}/Bieżące użycie: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Pamięć SWAP: Całkowita: {swapTotalBytes}/Bieżące użycie: {swapUsageBytes}", + "SWAP info not available" : "Informacje o pamięci SWAP są niedostępne", + "Copied!" : "Skopiowano!", + "Not supported!" : "Niewspierane!", + "Press ⌘-C to copy." : "Aby skopiować wciśnij ⌘-C.", + "Press Ctrl-C to copy." : "Aby skopiować wciśnij Ctrl+C.", + "Memory:" : "Pamięć:", + "Files:" : "Pliki:", + "Storages:" : "Magazyny:", + "Free Space:" : "Wolne miejsce:", + "Hostname:" : "Nazwa hosta:", + "Gateway:" : "Brama:", + "%s%% of all users" : "%s%% wszystkich użytkowników", "Memory limit:" : "Limit pamięci:", - "Max execution time:" : "Maksymalny czas wykonania:", - "Upload max size:" : "Limit wielkości przesyłanego pliku (upload_max_filesize):", "OPcache Revalidate Frequency:" : "Częstotliwość ponownej weryfikacji OPcache:", - "Extensions:" : "Rozszerzenia:", - "Unable to list extensions" : "Nie można wyświetlić listy rozszerzeń", - "Show phpinfo" : "Pokaż phpinfo", - "Database" : "Baza danych", - "Type:" : "Rodzaj:", "External monitoring tool" : "Zewnętrzne narzędzie monitorujące", "Use this end point to connect an external monitoring tool:" : "Użyj tego punktu końcowego, aby podłączyć zewnętrzne narzędzie monitorujące:", "Copy" : "Kopiuj", - "Output in JSON" : "Dane wyjściowe w JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Pomiń sekcję aplikacji (włączenie sekcji aplikacji wyśle ​​zewnętrzne żądanie do sklepu z aplikacjami)", - "Skip server update" : "Pomiń aktualizację serwera", "To use an access token, please generate one then set it using the following command:" : "Aby użyć tokena dostępu, wygeneruj go, a następnie ustaw za pomocą następującego polecenia:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Następnie przekaż token z nagłówkiem \"NC-Token\" podczas odpytywania powyższego adresu URL.", - "Unknown Processor" : "Procesor nieznany" + "DNS:" : "DNS:" }, "nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);"); diff --git a/l10n/pl.json b/l10n/pl.json index 63c242fe..4e427241 100644 --- a/l10n/pl.json +++ b/l10n/pl.json @@ -1,49 +1,79 @@ { "translations": { - "CPU info not available" : "Informacje o procesorze są niedostępne", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Pamięć RAM: Całkowita: {memTotalBytes}/Bieżące użycie: {memUsageBytes}", - "RAM info not available" : "Informacje o pamięci RAM są niedostępne", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Pamięć SWAP: Całkowita: {swapTotalBytes}/Bieżące użycie: {swapUsageBytes}", - "SWAP info not available" : "Informacje o pamięci SWAP są niedostępne", - "Copied!" : "Skopiowano!", - "Not supported!" : "Niewspierane!", - "Press ⌘-C to copy." : "Aby skopiować wciśnij ⌘-C.", - "Press Ctrl-C to copy." : "Aby skopiować wciśnij Ctrl+C.", "System" : "System", + "Unknown" : "Nieznana", "Monitoring" : "Monitoring", "Monitoring app with useful server information" : "Aplikacja monitorująca z przydatnymi informacjami o serwerze", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Zapewnia przydatne informacje o serwerze, takie jak obciążenie procesora, użycie pamięci RAM, wykorzystanie dysku, liczba użytkowników itp.", - "Operating System:" : "System operacyjny:", - "CPU:" : "Procesor CPU:", - "Memory:" : "Pamięć:", - "Server time:" : "Czas serwera:", - "Uptime:" : "Czas pracy:", - "Temperature" : "Temperatura", + "Active users" : "Aktywni użytkownicy", + "Last hour" : "Ostatnia godzina", + "Last 24 Hours" : "Ostatnie 24 godziny", + "Last 7 Days" : "Ostatnie 7 dni", + "Last 30 Days" : "Ostatnie 30 dni", + "Webcron" : "Webcron", + "Background jobs" : "Zadania w tle", + "Mode" : "Tryb", + "Never" : "Nigdy", "Load" : "Obciążenie", - "Memory" : "Pamięć", + "CPU info not available" : "Informacje o procesorze są niedostępne", + "Current usage" : "Bieżące użycie", + "Threads" : "Wątki", + "Load average" : "Średnie obciążenie", + "Database" : "Baza danych", + "Type:" : "Rodzaj:", + "Version:" : "Wersja:", + "Size:" : "Rozmiar:", + "Used" : "Używany", + "Available" : "Dostępność", "Disk" : "Dysk", + "Files" : "Pliki", + "Storages" : "Magazyny", "Mount:" : "Zamontowany:", "Filesystem:" : "System plików:", - "Size:" : "Rozmiar:", "Available:" : "Dostępny:", "Used:" : "Używany:", - "Files:" : "Pliki:", - "Storages:" : "Magazyny:", - "Free Space:" : "Wolne miejsce:", + "Status" : "Status", + "Started" : "Rozpoczęte", + "Duration" : "Czas trwania", + "Job" : "Praca", + "When" : "Kiedy", + "Details" : "Szczegóły", + "Succeeded" : "Zakończono pomyślnie", + "Failed" : "Nie powiodło się", + "Running" : "Uruchomione", + "Memory" : "Pamięć", + "RAM info not available" : "Informacje o pamięci RAM są niedostępne", + "Total" : "Całkowita", + "Configuration" : "Konfiguracja", + "Output in JSON" : "Dane wyjściowe w JSON", + "Skip server update" : "Pomiń aktualizację serwera", + "Authentication" : "Uwierzytelnienie", "Network" : "Sieć", - "Hostname:" : "Nazwa hosta:", - "Gateway:" : "Brama:", + "Hostname" : "Nazwa hosta", + "Gateway" : "Brama", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Prędkość:", "Duplex:" : "Dupleks:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktywni użytkownicy", - "Last hour" : "Ostatnia godzina", - "%s%% of all users" : "%s%% wszystkich użytkowników", - "Last 24 Hours" : "Ostatnie 24 godziny", - "Last 7 Days" : "Ostatnie 7 dni", - "Last 30 Days" : "Ostatnie 30 dni", + "Keys" : "Klucze", + "Disabled" : "Wyłączone", + "seconds" : "sekund", + "Yes" : "Tak", + "No" : "Nie", + "PHP extensions" : "Rozszerzenia PHP", + "Extension" : "Rozszerzenie", + "Unable to list extensions" : "Nie można wyświetlić listy rozszerzeń", + "PHP" : "PHP", + "Version" : "Wersja", + "Memory limit" : "Limit pamięci", + "Max execution time:" : "Maksymalny czas wykonania:", + "Upload max size:" : "Limit wielkości przesyłanego pliku (upload_max_filesize):", + "Extensions:" : "Rozszerzenia:", + "Show phpinfo" : "Pokaż phpinfo", + "CPU" : "Procesor CPU", + "Resource usage" : "Wykorzystanie zasobów", "Shares" : "Udostępnienia", "Users:" : "Użytkownicy:", "Groups:" : "Grupy:", @@ -52,25 +82,35 @@ "Federated sent:" : "Wysłane do federacji:", "Federated received:" : "Otrzymane z federacji:", "Talk conversations:" : "Rozmowy Talk:", - "PHP" : "PHP", - "Version:" : "Wersja:", + "Average" : "Średnia", + "Warning" : "Ostrzeżenie", + "Operating System:" : "System operacyjny:", + "CPU:" : "Procesor CPU:", + "Server time:" : "Czas serwera:", + "Uptime:" : "Czas pracy:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Pamięć RAM: Całkowita: {memTotalBytes}/Bieżące użycie: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Pamięć SWAP: Całkowita: {swapTotalBytes}/Bieżące użycie: {swapUsageBytes}", + "SWAP info not available" : "Informacje o pamięci SWAP są niedostępne", + "Copied!" : "Skopiowano!", + "Not supported!" : "Niewspierane!", + "Press ⌘-C to copy." : "Aby skopiować wciśnij ⌘-C.", + "Press Ctrl-C to copy." : "Aby skopiować wciśnij Ctrl+C.", + "Memory:" : "Pamięć:", + "Files:" : "Pliki:", + "Storages:" : "Magazyny:", + "Free Space:" : "Wolne miejsce:", + "Hostname:" : "Nazwa hosta:", + "Gateway:" : "Brama:", + "%s%% of all users" : "%s%% wszystkich użytkowników", "Memory limit:" : "Limit pamięci:", - "Max execution time:" : "Maksymalny czas wykonania:", - "Upload max size:" : "Limit wielkości przesyłanego pliku (upload_max_filesize):", "OPcache Revalidate Frequency:" : "Częstotliwość ponownej weryfikacji OPcache:", - "Extensions:" : "Rozszerzenia:", - "Unable to list extensions" : "Nie można wyświetlić listy rozszerzeń", - "Show phpinfo" : "Pokaż phpinfo", - "Database" : "Baza danych", - "Type:" : "Rodzaj:", "External monitoring tool" : "Zewnętrzne narzędzie monitorujące", "Use this end point to connect an external monitoring tool:" : "Użyj tego punktu końcowego, aby podłączyć zewnętrzne narzędzie monitorujące:", "Copy" : "Kopiuj", - "Output in JSON" : "Dane wyjściowe w JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Pomiń sekcję aplikacji (włączenie sekcji aplikacji wyśle ​​zewnętrzne żądanie do sklepu z aplikacjami)", - "Skip server update" : "Pomiń aktualizację serwera", "To use an access token, please generate one then set it using the following command:" : "Aby użyć tokena dostępu, wygeneruj go, a następnie ustaw za pomocą następującego polecenia:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Następnie przekaż token z nagłówkiem \"NC-Token\" podczas odpytywania powyższego adresu URL.", - "Unknown Processor" : "Procesor nieznany" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);" } \ No newline at end of file diff --git a/l10n/ps.js b/l10n/ps.js deleted file mode 100644 index 2c8960c2..00000000 --- a/l10n/ps.js +++ /dev/null @@ -1,11 +0,0 @@ -OC.L10N.register( - "serverinfo", - { - "Copied!" : "کاپي شو!", - "Not supported!" : "د کار نه کېږي", - "Press ⌘-C to copy." : "د کاپي لپاره د ⌘-C تڼۍ کېکاږئ.", - "Press Ctrl-C to copy." : "د کاپي لپاره د Ctrl-C تڼۍ کېکاږئ.", - "Shares" : "شريک شوي", - "Copy" : "کاپي کول" -}, -"nplurals=2; plural=(n != 1);"); diff --git a/l10n/ps.json b/l10n/ps.json deleted file mode 100644 index c145936d..00000000 --- a/l10n/ps.json +++ /dev/null @@ -1,9 +0,0 @@ -{ "translations": { - "Copied!" : "کاپي شو!", - "Not supported!" : "د کار نه کېږي", - "Press ⌘-C to copy." : "د کاپي لپاره د ⌘-C تڼۍ کېکاږئ.", - "Press Ctrl-C to copy." : "د کاپي لپاره د Ctrl-C تڼۍ کېکاږئ.", - "Shares" : "شريک شوي", - "Copy" : "کاپي کول" -},"pluralForm" :"nplurals=2; plural=(n != 1);" -} \ No newline at end of file diff --git a/l10n/pt_BR.js b/l10n/pt_BR.js index ec223c17..3da04ec8 100644 --- a/l10n/pt_BR.js +++ b/l10n/pt_BR.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informação da CPU não disponível", - "CPU Usage:" : "Uso de CPU:", - "Load average: {percentage} % ({load}) last minute" : "Média de carga: {percentage} % ({load}) no último minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) no último minuto\n{last5MinutesPercentage} % ({last5Minutes}) nos últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) nos últimos 15 minutos", - "RAM Usage:" : "Uso de RAM:", - "SWAP Usage:" : "Uso de SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso atual: {memUsageBytes}", - "RAM info not available" : "Informações de RAM não disponíveis", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso atual: {swapUsageBytes}", - "SWAP info not available" : "Informações de SWAP não disponíveis", - "Copied!" : "Copiado!", - "Not supported!" : "Não suportado!", - "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconhecido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dias, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Monitoramento", "Monitoring app with useful server information" : "Aplicativo de monitoramento com informações úteis do servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", - "Operating System:" : "Sistema Operacional:", - "CPU:" : "CPU:", - "threads" : "threads", - "Memory:" : "Memoria:", - "Server time:" : "Horário do servidor:", - "Uptime:" : "Tempo de operação:", - "Temperature" : "Temperatura", + "{0}% of all users" : "{0}% de todos os usuários", + "Active users" : "Usuários ativos", + "Last hour" : "Na última hora", + "Last 24 Hours" : "Nas Últimas 24 Horas", + "Last 7 Days" : "Nos Últimos 7 Dias", + "Last 30 Days" : "Nos Últimos 30 Dias", + "System cron" : "Cron do sistema", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (não recomendado)", + "Background jobs" : "Tarefas em segundo plano", + "Mode" : "Modo", + "Last run" : "Última execução", + "Never" : "Nunca", + "Latest runs" : "Últimas execuções", + "No background job has run yet." : "Ainda não foi executada nenhuma tarefa em segundo plano.", + "Slowest jobs" : "Tarefas mais lentas", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "As estatísticas de tarefas lentas ainda não estão disponíveis. Elas são coletadas por uma tarefa em segundo plano e aparecem após sua próxima execução.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Falhas mais recentes (último %n dia)","Falhas mais recentes (últimos %n de dias)","Falhas mais recentes (últimos %n dias)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Nenhuma tarefa em segundo plano falhou no último %n dia.","Nenhuma tarefa em segundo plano falhou nos últimos %n de dias.","Nenhuma tarefa em segundo plano falhou nos últimos %n dias."], "Load" : "Carga", - "Memory" : "Memória", + "CPU info not available" : "Informação da CPU não disponível", + "Current usage" : "Uso atual:", + "Threads" : "Threads", + "Load average" : "Carga média", + "Database" : "Banco de Dados", + "Type:" : "Tipo:", + "Version:" : "Versão:", + "Size:" : "Tamanho:", + "{used} of {total} used" : "{used} de {total} utilizados", + "Used" : "Utilizado", + "Available" : "Disponível", "Disk" : "Disco", + "Files" : "Arquivos", + "Storages" : "Armazenamentos", + "Free space" : "Espaço livre", "Mount:" : "Montagem:", "Filesystem:" : "Sistema de arquivo:", - "Size:" : "Tamanho:", "Available:" : "Disponível:", "Used:" : "Usado:", - "Files:" : "Arquivos:", - "Storages:" : "Armazenamentos:", - "Free Space:" : "Espaço Livre:", + "Class" : "Classe", + "Status" : "Status", + "Started" : "Iniciado", + "Duration" : "Duração", + "Peak memory" : "Memória máxima", + "Run ID" : "ID da execução", + "Server ID" : "ID do servidor", + "Process ID" : "ID do processo", + "Details about {job} from {time}" : "Detalhes sobre {job} em {time}", + "Job" : "Tarefa", + "When" : "Quando", + "Details" : "Detalhes", + "Succeeded" : "Sucesso", + "Failed" : "Falhou", + "Crashed" : "Travou", + "Running" : "Em andamento", + "RAM usage" : "Uso de RAM", + "Swap usage" : "Uso de swap", + "Memory" : "Memória", + "RAM info not available" : "Informações de RAM não disponíveis", + "Total" : "Total", + "Swap used" : "Swap utilizado", + "External monitoring API" : "API de monitoramento externo", + "Endpoint URL" : "URL do ponto final", + "Configuration" : "Configurações", + "Output in JSON" : "Saída em JSON", + "Skip apps section" : "Pular a seção de aplicativos", + "Including the apps section sends an external request to the app store" : "A inclusão da seção de aplicativos envia uma solicitação externa à loja de aplicativos", + "Skip server update" : "Ignorar atualização do servidor", + "Authentication" : "Autenticação", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Este token foi gerado no seu navegador e não fica armazenado até que você execute o comando abaixo. Envie-o no cabeçalho {header} em todas as solicitações.", + "Command to store the token" : "Comando para armazenar o token", + "Request header" : "Cabeçalho de solicitação", "Network" : "Rede", - "Hostname:" : "Nome do host:", - "Gateway:" : "Gateway:", + "Hostname" : "Nome do hospedeiro", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Velocidade:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuários ativos", - "Last hour" : "Na última hora", - "%s%% of all users" : "%s%% de todos os usuários", - "Last 24 Hours" : "Nas Últimas 24 Horas", - "Last 7 Days" : "Nos Últimos 7 Dias", - "Last 30 Days" : "Nos Últimos 30 Dias", - "Shares" : "Compartilhamentos", - "Users:" : "Usuários:", - "Groups:" : "Grupos:", - "Links:" : "Links:", - "Emails:" : "E-mails:", - "Federated sent:" : "Envio federado:", - "Federated received:" : "Recebimento federado:", - "Talk conversations:" : "Conversas do Talk:", + "OPcache is not loaded." : "OPcache não foi carregado.", + "OPcache is disabled." : "OPcache está desativado.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "O Nextcloud não tem permissão para ler o status do OPcache (“opcache.restrict_api”).", + "OPcache status is unavailable." : "O status do OPcache está indisponível", + "{used} of {total}" : "{used} de {total}", + "Interned strings" : "Cadeias de caracteres incorporadas (interned strings)", + "Keys" : "Chaves", + "{used} of {max}" : "{used} de {max}", + "Disabled" : "Desativado", + "Enabled, {used} of {total} buffer used" : "Ativado, {used} de {total} do buffer utilizados", + "OPcache" : "OPcache", + "Hit rate" : "Taxa de acertos", + "Cached scripts" : "Scripts no cache", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Esses números referem-se ao processo PHP responsável por processar essa solicitação. Outros pools do FPM ou a CLI mantêm seu próprio OPcache.", + "Revalidate frequency:" : "Frequência de revalidação:", + "seconds" : "segundos", + "Validate timestamps:" : "Validar marcas temporais:", + "Yes" : "Sim", + "No" : "Não", + "OOM restarts:" : "Reinicializações causadas por OOM:", + "Last restart:" : "Última reinicialização:", + "JIT:" : "JIT:", + "PHP extensions" : "Extensões PHP", + "Extension" : "Extensão", + "Unable to list extensions" : "Não foi possível listar as extensões", + "{count} loaded" : "{count} carregadas", "PHP" : "PHP", - "Version:" : "Versão:", - "Memory limit:" : "Limite de memória:", + "Version" : "Versão", + "Memory limit" : "Limite de memória", "Max execution time:" : "Tempo máximo de execução:", "Upload max size:" : "Tamanho máximo para uploads:", - "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:", + "Post max size:" : "Tamanho máximo para solicitações POST:", + "SAPI:" : "SAPI:", "Extensions:" : "Extensões:", - "Unable to list extensions" : "Não foi possível listar as extensões", + "PHP Info:" : "Informações do PHP:", "Show phpinfo" : "Mostrar phpinfo", "FPM worker pool" : "Pool de trabalhadores FPM", "Pool name:" : "Nome do pool:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "Máximo da fila de escuta:", "Max active processes:" : "Máximo de processes ativos:", "Max children reached:" : "Máximo de processos filhos atingido:", - "Database" : "Banco de Dados", - "Type:" : "Tipo:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "Uso de recursos", + "Shares" : "Compartilhamentos", + "Users:" : "Usuários:", + "Groups:" : "Grupos:", + "Links:" : "Links:", + "Emails:" : "E-mails:", + "Federated sent:" : "Envio federado:", + "Federated received:" : "Recebimento federado:", + "Talk conversations:" : "Conversas do Talk:", + "Runs" : "Execuções", + "Average" : "Média", + "Longest" : "Mais longa", + "Warning" : "Aviso", + "Critical" : "Crítico", + "Operating System:" : "Sistema Operacional:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} threads)", + "Server time:" : "Horário do servidor:", + "Uptime:" : "Tempo de operação:", + "Temperature" : "Temperatura", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Uso de CPU:", + "Load average: {percentage} % ({load}) last minute" : "Média de carga: {percentage} % ({load}) no último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) no último minuto\n{last5MinutesPercentage} % ({last5Minutes}) nos últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) nos últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso atual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso atual: {swapUsageBytes}", + "SWAP info not available" : "Informações de SWAP não disponíveis", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", + "threads" : "threads", + "Memory:" : "Memoria:", + "Files:" : "Arquivos:", + "Storages:" : "Armazenamentos:", + "Free Space:" : "Espaço Livre:", + "Hostname:" : "Nome do hospedeiro:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% de todos os usuários", + "Memory limit:" : "Limite de memória:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:", "External monitoring tool" : "Ferramenta de monitoramento externo", "Use this end point to connect an external monitoring tool:" : "Use este endpoint para conectar uma ferramenta de monitoramento externa:", "Copy" : "Copiar", - "Output in JSON" : "Saída em JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Ignorar a seção de aplicativos (incluir a seção de aplicativos enviará uma solicitação externa para a loja de aplicativos)", - "Skip server update" : "Ignorar atualização do servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar um token de acesso, gere um e defina-o usando o seguinte comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Em seguida, passe o token com o cabeçalho \"NC-Token\" ao consultar o URL acima.", - "Unknown Processor" : "Processador Desconhecido" + "%1$s (%2$d threads)" : "%1$s (%2$d threads)", + "DNS:" : "DNS:" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/pt_BR.json b/l10n/pt_BR.json index 670bb3aa..41aa7465 100644 --- a/l10n/pt_BR.json +++ b/l10n/pt_BR.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "Informação da CPU não disponível", - "CPU Usage:" : "Uso de CPU:", - "Load average: {percentage} % ({load}) last minute" : "Média de carga: {percentage} % ({load}) no último minuto", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) no último minuto\n{last5MinutesPercentage} % ({last5Minutes}) nos últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) nos últimos 15 minutos", - "RAM Usage:" : "Uso de RAM:", - "SWAP Usage:" : "Uso de SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso atual: {memUsageBytes}", - "RAM info not available" : "Informações de RAM não disponíveis", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso atual: {swapUsageBytes}", - "SWAP info not available" : "Informações de SWAP não disponíveis", - "Copied!" : "Copiado!", - "Not supported!" : "Não suportado!", - "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconhecido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dias, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Monitoramento", "Monitoring app with useful server information" : "Aplicativo de monitoramento com informações úteis do servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Fornece informações úteis do servidor, como carga de CPU, uso de RAM, uso do disco, número de usuários, etc.", - "Operating System:" : "Sistema Operacional:", - "CPU:" : "CPU:", - "threads" : "threads", - "Memory:" : "Memoria:", - "Server time:" : "Horário do servidor:", - "Uptime:" : "Tempo de operação:", - "Temperature" : "Temperatura", + "{0}% of all users" : "{0}% de todos os usuários", + "Active users" : "Usuários ativos", + "Last hour" : "Na última hora", + "Last 24 Hours" : "Nas Últimas 24 Horas", + "Last 7 Days" : "Nos Últimos 7 Dias", + "Last 30 Days" : "Nos Últimos 30 Dias", + "System cron" : "Cron do sistema", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (não recomendado)", + "Background jobs" : "Tarefas em segundo plano", + "Mode" : "Modo", + "Last run" : "Última execução", + "Never" : "Nunca", + "Latest runs" : "Últimas execuções", + "No background job has run yet." : "Ainda não foi executada nenhuma tarefa em segundo plano.", + "Slowest jobs" : "Tarefas mais lentas", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "As estatísticas de tarefas lentas ainda não estão disponíveis. Elas são coletadas por uma tarefa em segundo plano e aparecem após sua próxima execução.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Falhas mais recentes (último %n dia)","Falhas mais recentes (últimos %n de dias)","Falhas mais recentes (últimos %n dias)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Nenhuma tarefa em segundo plano falhou no último %n dia.","Nenhuma tarefa em segundo plano falhou nos últimos %n de dias.","Nenhuma tarefa em segundo plano falhou nos últimos %n dias."], "Load" : "Carga", - "Memory" : "Memória", + "CPU info not available" : "Informação da CPU não disponível", + "Current usage" : "Uso atual:", + "Threads" : "Threads", + "Load average" : "Carga média", + "Database" : "Banco de Dados", + "Type:" : "Tipo:", + "Version:" : "Versão:", + "Size:" : "Tamanho:", + "{used} of {total} used" : "{used} de {total} utilizados", + "Used" : "Utilizado", + "Available" : "Disponível", "Disk" : "Disco", + "Files" : "Arquivos", + "Storages" : "Armazenamentos", + "Free space" : "Espaço livre", "Mount:" : "Montagem:", "Filesystem:" : "Sistema de arquivo:", - "Size:" : "Tamanho:", "Available:" : "Disponível:", "Used:" : "Usado:", - "Files:" : "Arquivos:", - "Storages:" : "Armazenamentos:", - "Free Space:" : "Espaço Livre:", + "Class" : "Classe", + "Status" : "Status", + "Started" : "Iniciado", + "Duration" : "Duração", + "Peak memory" : "Memória máxima", + "Run ID" : "ID da execução", + "Server ID" : "ID do servidor", + "Process ID" : "ID do processo", + "Details about {job} from {time}" : "Detalhes sobre {job} em {time}", + "Job" : "Tarefa", + "When" : "Quando", + "Details" : "Detalhes", + "Succeeded" : "Sucesso", + "Failed" : "Falhou", + "Crashed" : "Travou", + "Running" : "Em andamento", + "RAM usage" : "Uso de RAM", + "Swap usage" : "Uso de swap", + "Memory" : "Memória", + "RAM info not available" : "Informações de RAM não disponíveis", + "Total" : "Total", + "Swap used" : "Swap utilizado", + "External monitoring API" : "API de monitoramento externo", + "Endpoint URL" : "URL do ponto final", + "Configuration" : "Configurações", + "Output in JSON" : "Saída em JSON", + "Skip apps section" : "Pular a seção de aplicativos", + "Including the apps section sends an external request to the app store" : "A inclusão da seção de aplicativos envia uma solicitação externa à loja de aplicativos", + "Skip server update" : "Ignorar atualização do servidor", + "Authentication" : "Autenticação", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Este token foi gerado no seu navegador e não fica armazenado até que você execute o comando abaixo. Envie-o no cabeçalho {header} em todas as solicitações.", + "Command to store the token" : "Comando para armazenar o token", + "Request header" : "Cabeçalho de solicitação", "Network" : "Rede", - "Hostname:" : "Nome do host:", - "Gateway:" : "Gateway:", + "Hostname" : "Nome do hospedeiro", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Velocidade:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Usuários ativos", - "Last hour" : "Na última hora", - "%s%% of all users" : "%s%% de todos os usuários", - "Last 24 Hours" : "Nas Últimas 24 Horas", - "Last 7 Days" : "Nos Últimos 7 Dias", - "Last 30 Days" : "Nos Últimos 30 Dias", - "Shares" : "Compartilhamentos", - "Users:" : "Usuários:", - "Groups:" : "Grupos:", - "Links:" : "Links:", - "Emails:" : "E-mails:", - "Federated sent:" : "Envio federado:", - "Federated received:" : "Recebimento federado:", - "Talk conversations:" : "Conversas do Talk:", + "OPcache is not loaded." : "OPcache não foi carregado.", + "OPcache is disabled." : "OPcache está desativado.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "O Nextcloud não tem permissão para ler o status do OPcache (“opcache.restrict_api”).", + "OPcache status is unavailable." : "O status do OPcache está indisponível", + "{used} of {total}" : "{used} de {total}", + "Interned strings" : "Cadeias de caracteres incorporadas (interned strings)", + "Keys" : "Chaves", + "{used} of {max}" : "{used} de {max}", + "Disabled" : "Desativado", + "Enabled, {used} of {total} buffer used" : "Ativado, {used} de {total} do buffer utilizados", + "OPcache" : "OPcache", + "Hit rate" : "Taxa de acertos", + "Cached scripts" : "Scripts no cache", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Esses números referem-se ao processo PHP responsável por processar essa solicitação. Outros pools do FPM ou a CLI mantêm seu próprio OPcache.", + "Revalidate frequency:" : "Frequência de revalidação:", + "seconds" : "segundos", + "Validate timestamps:" : "Validar marcas temporais:", + "Yes" : "Sim", + "No" : "Não", + "OOM restarts:" : "Reinicializações causadas por OOM:", + "Last restart:" : "Última reinicialização:", + "JIT:" : "JIT:", + "PHP extensions" : "Extensões PHP", + "Extension" : "Extensão", + "Unable to list extensions" : "Não foi possível listar as extensões", + "{count} loaded" : "{count} carregadas", "PHP" : "PHP", - "Version:" : "Versão:", - "Memory limit:" : "Limite de memória:", + "Version" : "Versão", + "Memory limit" : "Limite de memória", "Max execution time:" : "Tempo máximo de execução:", "Upload max size:" : "Tamanho máximo para uploads:", - "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:", + "Post max size:" : "Tamanho máximo para solicitações POST:", + "SAPI:" : "SAPI:", "Extensions:" : "Extensões:", - "Unable to list extensions" : "Não foi possível listar as extensões", + "PHP Info:" : "Informações do PHP:", "Show phpinfo" : "Mostrar phpinfo", "FPM worker pool" : "Pool de trabalhadores FPM", "Pool name:" : "Nome do pool:", @@ -80,16 +137,60 @@ "Max listen queue:" : "Máximo da fila de escuta:", "Max active processes:" : "Máximo de processes ativos:", "Max children reached:" : "Máximo de processos filhos atingido:", - "Database" : "Banco de Dados", - "Type:" : "Tipo:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "Uso de recursos", + "Shares" : "Compartilhamentos", + "Users:" : "Usuários:", + "Groups:" : "Grupos:", + "Links:" : "Links:", + "Emails:" : "E-mails:", + "Federated sent:" : "Envio federado:", + "Federated received:" : "Recebimento federado:", + "Talk conversations:" : "Conversas do Talk:", + "Runs" : "Execuções", + "Average" : "Média", + "Longest" : "Mais longa", + "Warning" : "Aviso", + "Critical" : "Crítico", + "Operating System:" : "Sistema Operacional:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} threads)", + "Server time:" : "Horário do servidor:", + "Uptime:" : "Tempo de operação:", + "Temperature" : "Temperatura", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "Uso de CPU:", + "Load average: {percentage} % ({load}) last minute" : "Média de carga: {percentage} % ({load}) no último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) no último minuto\n{last5MinutesPercentage} % ({last5Minutes}) nos últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) nos últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso atual: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes}/Uso atual: {swapUsageBytes}", + "SWAP info not available" : "Informações de SWAP não disponíveis", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressione ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressione Ctrl-C para copiar.", + "threads" : "threads", + "Memory:" : "Memoria:", + "Files:" : "Arquivos:", + "Storages:" : "Armazenamentos:", + "Free Space:" : "Espaço Livre:", + "Hostname:" : "Nome do hospedeiro:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% de todos os usuários", + "Memory limit:" : "Limite de memória:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:", "External monitoring tool" : "Ferramenta de monitoramento externo", "Use this end point to connect an external monitoring tool:" : "Use este endpoint para conectar uma ferramenta de monitoramento externa:", "Copy" : "Copiar", - "Output in JSON" : "Saída em JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Ignorar a seção de aplicativos (incluir a seção de aplicativos enviará uma solicitação externa para a loja de aplicativos)", - "Skip server update" : "Ignorar atualização do servidor", "To use an access token, please generate one then set it using the following command:" : "Para usar um token de acesso, gere um e defina-o usando o seguinte comando:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Em seguida, passe o token com o cabeçalho \"NC-Token\" ao consultar o URL acima.", - "Unknown Processor" : "Processador Desconhecido" + "%1$s (%2$d threads)" : "%1$s (%2$d threads)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/pt_PT.js b/l10n/pt_PT.js index a64b8c97..d955db1d 100644 --- a/l10n/pt_PT.js +++ b/l10n/pt_PT.js @@ -1,34 +1,132 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informação do CPU indisponível", - "Copied!" : "Copiado!", - "Not supported!" : "Não suportado!", - "Press ⌘-C to copy." : "Pressionar ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Pressionar Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconhecido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dias, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Monitorização", "Monitoring app with useful server information" : "Aplicação de monitorização com informação útil do servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Disponibiliza informação útil do servidor como a carga do CPU, utilização da RAM, utilização do disco, número de utilizadores, etc.", - "Temperature" : "Temperatura", + "Active users" : "Utilizadores ativos", + "Last hour" : "Ultima hora", + "Last 24 Hours" : "Nas Últimas 24 Horas", + "Last 7 Days" : "Nos Últimos 7 Dias", + "Last 30 Days" : "Nos Últimos 30 Dias", + "Background jobs" : "Tarefas de segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", "Load" : "Carga", - "Memory" : "Memória", - "Disk" : "Disco", + "CPU info not available" : "Informação do CPU indisponível", + "Current usage" : "Utilização atual", + "Threads" : "Fios", + "Load average" : "Carga média", + "Database" : "Base de dados", + "Type:" : "Tipo:", + "Version:" : "Versão:", "Size:" : "Tamanho:", - "Files:" : "Ficheiros:", - "Storages:" : "Armazenamentos:", - "Free Space:" : "Espaço livre:", + "Used" : "Usado", + "Available" : "Disponível", + "Disk" : "Disco", + "Files" : "Ficheiros", + "Mount:" : "Montagem:", + "Available:" : "Disponível:", + "Used:" : "Usado:", + "Status" : "Status", + "Started" : "Iniciado", + "Duration" : "Duração", + "Job" : "Trabalho", + "When" : "Quando", + "Details" : "Detalhes", + "Succeeded" : "Sucesso", + "Failed" : "Falhou", + "Running" : "Correr", + "Memory" : "Memória", + "RAM info not available" : "Informações de RAM não disponíveis", + "Total" : "Total", + "Configuration" : "Configurações", + "Output in JSON" : "Saída em JSON", + "Skip server update" : "Ignorar atualização do servidor", + "Authentication" : "Autenticação", "Network" : "Rede", - "Active users" : "Utilizadores ativos", - "Last hour" : "Ultima hora", - "Shares" : "Partilhas", - "Users:" : "Utilizadores:", + "Hostname" : "Nome do Anfitrião", + "DNS" : "DNS", + "Status:" : "Status:", + "Speed:" : "Velocidade:", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv6:" : "IPv6:", + "Keys" : "Chaves", + "Disabled" : "Desativado", + "seconds" : "segundos", + "Yes" : "Sim", + "No" : "Não", + "PHP extensions" : "Extensões PHP", + "Extension" : "Extensão", + "Unable to list extensions" : "Não foi possível listar as extensões", "PHP" : "PHP", - "Version:" : "Versão:", + "Version" : "Versão", + "Memory limit" : "Limite de memória", + "Max execution time:" : "Tempo máximo de execução:", "Upload max size:" : "Tamanho máximo de carregamento:", - "Database" : "Base de dados", - "Type:" : "Tipo:", + "Extensions:" : "Extensões:", + "PHP Info:" : "Informações do PHP:", + "FPM worker pool" : "Pool de trabalhadores FPM", + "Pool name:" : "Nome do pool:", + "Pool type:" : "Tipo do pool:", + "Start time:" : "Hora de início:", + "Accepted connections:" : "Conexões aceitas:", + "Total processes:" : "Total de processos:", + "Active processes:" : "Processos ativos:", + "Idle processes:" : "Processes inativos:", + "Listen queue:" : "Fila de escuta:", + "Slow requests:" : "Solicitações lentas:", + "Max listen queue:" : "Máximo da fila de escuta:", + "Max children reached:" : "Máximo de processos filhos atingido:", + "CPU" : "CPU", + "Resource usage" : "Uso de recursos", + "Shares" : "Partilhas", + "Users:" : "Utilizadores:", + "Groups:" : "Grupos:", + "Links:" : "Links:", + "Emails:" : "E-mails:", + "Federated received:" : "Recebimento federado:", + "Talk conversations:" : "Conversas do Talk:", + "Average" : "Média", + "Warning" : "Aviso", + "Operating System:" : "Sistema Operacional:", + "CPU:" : "CPU:", + "Server time:" : "Horário do servidor:", + "Uptime:" : "Tempo de operação:", + "Temperature" : "Temperatura", + "CPU Usage:" : "Uso de CPU:", + "Load average: {percentage} % ({load}) last minute" : "Média de carga: {percentage} % ({load}) no último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) no último minuto\n{last5MinutesPercentage} % ({last5Minutes}) nos últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) nos últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso atual: {memUsageBytes}", + "SWAP info not available" : "Informações de SWAP não disponíveis", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressionar ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressionar Ctrl-C para copiar.", + "threads" : "threads", + "Memory:" : "Memoria:", + "Files:" : "Ficheiros:", + "Storages:" : "Armazenamentos:", + "Free Space:" : "Espaço livre:", + "Hostname:" : "Nome do host:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% de todos os usuários", + "Memory limit:" : "Limite de memória:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:", "External monitoring tool" : "Ferramenta externa de monitorização", - "Copy" : "Copiar" + "Use this end point to connect an external monitoring tool:" : "Use este endpoint para conectar uma ferramenta de monitoramento externa:", + "Copy" : "Copiar", + "Skip apps section (including apps section will send an external request to the app store)" : "Ignorar a seção de aplicativos (incluir a seção de aplicativos enviará uma solicitação externa para a loja de aplicativos)", + "To use an access token, please generate one then set it using the following command:" : "Para usar um token de acesso, gere um e defina-o usando o seguinte comando:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Em seguida, passe o token com o cabeçalho \"NC-Token\" ao consultar o URL acima.", + "DNS:" : "DNS:" }, "nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"); diff --git a/l10n/pt_PT.json b/l10n/pt_PT.json index 9f382523..5fbff8bc 100644 --- a/l10n/pt_PT.json +++ b/l10n/pt_PT.json @@ -1,32 +1,130 @@ { "translations": { - "CPU info not available" : "Informação do CPU indisponível", - "Copied!" : "Copiado!", - "Not supported!" : "Não suportado!", - "Press ⌘-C to copy." : "Pressionar ⌘-C para copiar.", - "Press Ctrl-C to copy." : "Pressionar Ctrl-C para copiar.", "System" : "Sistema", + "Unknown" : "Desconhecido", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dias, %2$d horas, %3$d minutos, %4$d segundos", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d horas, %2$d minutos, %3$d segundos", "Monitoring" : "Monitorização", "Monitoring app with useful server information" : "Aplicação de monitorização com informação útil do servidor", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Disponibiliza informação útil do servidor como a carga do CPU, utilização da RAM, utilização do disco, número de utilizadores, etc.", - "Temperature" : "Temperatura", + "Active users" : "Utilizadores ativos", + "Last hour" : "Ultima hora", + "Last 24 Hours" : "Nas Últimas 24 Horas", + "Last 7 Days" : "Nos Últimos 7 Dias", + "Last 30 Days" : "Nos Últimos 30 Dias", + "Background jobs" : "Tarefas de segundo plano", + "Mode" : "Modo", + "Never" : "Nunca", "Load" : "Carga", - "Memory" : "Memória", - "Disk" : "Disco", + "CPU info not available" : "Informação do CPU indisponível", + "Current usage" : "Utilização atual", + "Threads" : "Fios", + "Load average" : "Carga média", + "Database" : "Base de dados", + "Type:" : "Tipo:", + "Version:" : "Versão:", "Size:" : "Tamanho:", - "Files:" : "Ficheiros:", - "Storages:" : "Armazenamentos:", - "Free Space:" : "Espaço livre:", + "Used" : "Usado", + "Available" : "Disponível", + "Disk" : "Disco", + "Files" : "Ficheiros", + "Mount:" : "Montagem:", + "Available:" : "Disponível:", + "Used:" : "Usado:", + "Status" : "Status", + "Started" : "Iniciado", + "Duration" : "Duração", + "Job" : "Trabalho", + "When" : "Quando", + "Details" : "Detalhes", + "Succeeded" : "Sucesso", + "Failed" : "Falhou", + "Running" : "Correr", + "Memory" : "Memória", + "RAM info not available" : "Informações de RAM não disponíveis", + "Total" : "Total", + "Configuration" : "Configurações", + "Output in JSON" : "Saída em JSON", + "Skip server update" : "Ignorar atualização do servidor", + "Authentication" : "Autenticação", "Network" : "Rede", - "Active users" : "Utilizadores ativos", - "Last hour" : "Ultima hora", - "Shares" : "Partilhas", - "Users:" : "Utilizadores:", + "Hostname" : "Nome do Anfitrião", + "DNS" : "DNS", + "Status:" : "Status:", + "Speed:" : "Velocidade:", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv6:" : "IPv6:", + "Keys" : "Chaves", + "Disabled" : "Desativado", + "seconds" : "segundos", + "Yes" : "Sim", + "No" : "Não", + "PHP extensions" : "Extensões PHP", + "Extension" : "Extensão", + "Unable to list extensions" : "Não foi possível listar as extensões", "PHP" : "PHP", - "Version:" : "Versão:", + "Version" : "Versão", + "Memory limit" : "Limite de memória", + "Max execution time:" : "Tempo máximo de execução:", "Upload max size:" : "Tamanho máximo de carregamento:", - "Database" : "Base de dados", - "Type:" : "Tipo:", + "Extensions:" : "Extensões:", + "PHP Info:" : "Informações do PHP:", + "FPM worker pool" : "Pool de trabalhadores FPM", + "Pool name:" : "Nome do pool:", + "Pool type:" : "Tipo do pool:", + "Start time:" : "Hora de início:", + "Accepted connections:" : "Conexões aceitas:", + "Total processes:" : "Total de processos:", + "Active processes:" : "Processos ativos:", + "Idle processes:" : "Processes inativos:", + "Listen queue:" : "Fila de escuta:", + "Slow requests:" : "Solicitações lentas:", + "Max listen queue:" : "Máximo da fila de escuta:", + "Max children reached:" : "Máximo de processos filhos atingido:", + "CPU" : "CPU", + "Resource usage" : "Uso de recursos", + "Shares" : "Partilhas", + "Users:" : "Utilizadores:", + "Groups:" : "Grupos:", + "Links:" : "Links:", + "Emails:" : "E-mails:", + "Federated received:" : "Recebimento federado:", + "Talk conversations:" : "Conversas do Talk:", + "Average" : "Média", + "Warning" : "Aviso", + "Operating System:" : "Sistema Operacional:", + "CPU:" : "CPU:", + "Server time:" : "Horário do servidor:", + "Uptime:" : "Tempo de operação:", + "Temperature" : "Temperatura", + "CPU Usage:" : "Uso de CPU:", + "Load average: {percentage} % ({load}) last minute" : "Média de carga: {percentage} % ({load}) no último minuto", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) no último minuto\n{last5MinutesPercentage} % ({last5Minutes}) nos últimos 5 minutos\n{last15MinutesPercentage} % ({last15Minutes}) nos últimos 15 minutos", + "RAM Usage:" : "Uso de RAM:", + "SWAP Usage:" : "Uso de SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Total: {memTotalBytes}/Uso atual: {memUsageBytes}", + "SWAP info not available" : "Informações de SWAP não disponíveis", + "Copied!" : "Copiado!", + "Not supported!" : "Não suportado!", + "Press ⌘-C to copy." : "Pressionar ⌘-C para copiar.", + "Press Ctrl-C to copy." : "Pressionar Ctrl-C para copiar.", + "threads" : "threads", + "Memory:" : "Memoria:", + "Files:" : "Ficheiros:", + "Storages:" : "Armazenamentos:", + "Free Space:" : "Espaço livre:", + "Hostname:" : "Nome do host:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% de todos os usuários", + "Memory limit:" : "Limite de memória:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:", "External monitoring tool" : "Ferramenta externa de monitorização", - "Copy" : "Copiar" + "Use this end point to connect an external monitoring tool:" : "Use este endpoint para conectar uma ferramenta de monitoramento externa:", + "Copy" : "Copiar", + "Skip apps section (including apps section will send an external request to the app store)" : "Ignorar a seção de aplicativos (incluir a seção de aplicativos enviará uma solicitação externa para a loja de aplicativos)", + "To use an access token, please generate one then set it using the following command:" : "Para usar um token de acesso, gere um e defina-o usando o seguinte comando:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Em seguida, passe o token com o cabeçalho \"NC-Token\" ao consultar o URL acima.", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;" } \ No newline at end of file diff --git a/l10n/ro.js b/l10n/ro.js index ab225e3e..1045e643 100644 --- a/l10n/ro.js +++ b/l10n/ro.js @@ -1,16 +1,36 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "S-a copiat!", - "Not supported!" : "Nu este suportat!", - "Press ⌘-C to copy." : "Apasă ⌘-C pentru copiere.", - "Press Ctrl-C to copy." : "Apasă Ctrl-C pentru copiere.", "System" : "Sistem", + "Unknown" : "Necunoscut", "Monitoring" : "Monitorizare", - "Size:" : "Mărime:", - "Shares" : "Partajări", + "Background jobs" : "Proces de fundal", + "Mode" : "Mod", + "Never" : "Niciodată", "Database" : "Baza de date", "Type:" : "Tip:", + "Size:" : "Mărime:", + "Started" : "A început", + "Duration" : "Durată", + "Details" : "Detalii", + "Failed" : "Eșuat", + "Running" : "Alergat", + "Authentication" : "Autentificare", + "Hostname" : "Nume mașină", + "Keys" : "Chei", + "Disabled" : "Dezactivați", + "seconds" : "secunde", + "Yes" : "Da", + "No" : "Nu", + "PHP extensions" : "extensii PHP ", + "Extension" : "Extensia", + "Version" : "Versiune", + "Shares" : "Partajări", + "Warning" : "Atenție", + "Copied!" : "S-a copiat!", + "Not supported!" : "Nu este suportat!", + "Press ⌘-C to copy." : "Apasă ⌘-C pentru copiere.", + "Press Ctrl-C to copy." : "Apasă Ctrl-C pentru copiere.", "Copy" : "Copiază" }, "nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));"); diff --git a/l10n/ro.json b/l10n/ro.json index 438376c3..e604392d 100644 --- a/l10n/ro.json +++ b/l10n/ro.json @@ -1,14 +1,34 @@ { "translations": { - "Copied!" : "S-a copiat!", - "Not supported!" : "Nu este suportat!", - "Press ⌘-C to copy." : "Apasă ⌘-C pentru copiere.", - "Press Ctrl-C to copy." : "Apasă Ctrl-C pentru copiere.", "System" : "Sistem", + "Unknown" : "Necunoscut", "Monitoring" : "Monitorizare", - "Size:" : "Mărime:", - "Shares" : "Partajări", + "Background jobs" : "Proces de fundal", + "Mode" : "Mod", + "Never" : "Niciodată", "Database" : "Baza de date", "Type:" : "Tip:", + "Size:" : "Mărime:", + "Started" : "A început", + "Duration" : "Durată", + "Details" : "Detalii", + "Failed" : "Eșuat", + "Running" : "Alergat", + "Authentication" : "Autentificare", + "Hostname" : "Nume mașină", + "Keys" : "Chei", + "Disabled" : "Dezactivați", + "seconds" : "secunde", + "Yes" : "Da", + "No" : "Nu", + "PHP extensions" : "extensii PHP ", + "Extension" : "Extensia", + "Version" : "Versiune", + "Shares" : "Partajări", + "Warning" : "Atenție", + "Copied!" : "S-a copiat!", + "Not supported!" : "Nu este suportat!", + "Press ⌘-C to copy." : "Apasă ⌘-C pentru copiere.", + "Press Ctrl-C to copy." : "Apasă Ctrl-C pentru copiere.", "Copy" : "Copiază" },"pluralForm" :"nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));" } \ No newline at end of file diff --git a/l10n/ru.js b/l10n/ru.js index dbea2cf6..a759221a 100644 --- a/l10n/ru.js +++ b/l10n/ru.js @@ -1,56 +1,97 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Информация о ЦП недоступна", - "CPU Usage:" : "Использование ЦП:", - "Load average: {percentage} % ({load}) last minute" : "Средняя нагрузка: {percentage} % ({load}) за последнюю минуту", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за последнюю минуту\n{last5MinutesPercentage} % ({last5Minutes}) за последние 5 минут\n{last15MinutesPercentage} % ({last15Minutes}) за последние 15 минут", - "RAM Usage:" : "Использование RAM:", - "SWAP Usage:" : "Использование SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Всего: {memTotalBytes} / Использовано: {memUsageBytes}", - "RAM info not available" : "RAM информация не доступна", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Всего: {swapTotalBytes} / Использовано: {swapUsageBytes}", - "SWAP info not available" : "Информация о SWAP не доступна", - "Copied!" : "Скопировано!", - "Not supported!" : "Не поддерживается!", - "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования. ", - "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", "System" : "Система", + "Unknown" : "Неизвестно", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d дней, %2$d часов, %3$d минут, %4$d секунд", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d часов, %2$d минут, %3$d секунд", "Monitoring" : "Мониторинг", "Monitoring app with useful server information" : "Приложение мониторинга с полезной информацией о сервере", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.", - "Operating System:" : "Операционная система:", - "CPU:" : "CPU:", - "Memory:" : "Память:", - "Server time:" : "Серверное время:", - "Uptime:" : "Время работы:", - "Temperature" : "Температура", + "Active users" : "Активные пользователи", + "Last hour" : "Последний час", + "Last 24 Hours" : "Последние 24 часа", + "Last 7 Days" : "Последние 7 дней", + "Last 30 Days" : "Последние 30 дней", + "Webcron" : "Webcron", + "Background jobs" : "Фоновые задания", + "Mode" : "Режим сканирования", + "Never" : "Никогда", "Load" : "Нагрузка", - "Memory" : "Память", + "CPU info not available" : "Информация о ЦП недоступна", + "Current usage" : "Текущая нагрузка", + "Threads" : "Темы", + "Load average" : "Средняя нагрузка", + "Database" : "База данных", + "Type:" : "Тип:", + "Version:" : "Версия:", + "Size:" : "Размер:", + "Used" : "Использовано", + "Available" : "Доступный", "Disk" : "Диск", + "Files" : "Файлы", + "Storages" : "Хранилище", "Mount:" : "Метка диска:", "Filesystem:" : "Файловая система:", - "Size:" : "Размер:", "Available:" : "Доступно:", "Used:" : "Используется:", - "Files:" : "Файлы:", - "Storages:" : "Хранилища:", - "Free Space:" : "Свободно:", + "Status" : "Статус", + "Started" : "Начато", + "Duration" : "Продолжительность", + "Job" : "Работа", + "When" : "Когда", + "Details" : "Свойства", + "Succeeded" : "Успешно", + "Failed" : "Не удалось", + "Running" : "Бег", + "Memory" : "Память", + "RAM info not available" : "RAM информация не доступна", + "Total" : "Всего", + "Configuration" : "Настройки", + "Output in JSON" : "Вывод в формате JSON", + "Skip server update" : "Пропустить обновление сервера", + "Authentication" : "Аутентификация", "Network" : "Сеть", - "Hostname:" : "Хост:", - "Gateway:" : "Шлюз:", + "Hostname" : "Имя хоста", + "Gateway" : "Шлюз", + "DNS" : "DNS", "Status:" : "Статус:", "Speed:" : "Скорость:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активные пользователи", - "Last hour" : "Последний час", - "%s%% of all users" : "%s%% всех пользователей", - "Last 24 Hours" : "Последние 24 часа", - "Last 7 Days" : "Последние 7 дней", - "Last 30 Days" : "Последние 30 дней", + "Keys" : "Ключи", + "Disabled" : "Отключено", + "seconds" : "секунд", + "Yes" : "Да", + "No" : "Нет", + "PHP extensions" : "Расширения PHP", + "Extension" : "Расширение", + "Unable to list extensions" : "Невозможно перечислить расширения", + "PHP" : "PHP", + "Version" : "Версия", + "Memory limit" : "Лимит памяти", + "Max execution time:" : "Максимальное время выполнения:", + "Upload max size:" : "Максимальный размер для отправки:", + "Extensions:" : "Расширения:", + "PHP Info:" : "PHP Info:", + "Show phpinfo" : "Показать информацию о php", + "FPM worker pool" : "Рабочий пул FPM", + "Pool name:" : "Имя пула:", + "Pool type:" : "Тип пула:", + "Start time:" : "Время начала:", + "Accepted connections:" : "Принятые соединения:", + "Total processes:" : "Всего процессов:", + "Active processes:" : "Активные процессы:", + "Idle processes:" : "Неактивные процессы:", + "Listen queue:" : "Очередь прослушивания:", + "Slow requests:" : "Медленные запросы:", + "Max listen queue:" : "Максимальная очередь прослушивания:", + "Max active processes:" : "Максимальное количество активных процессов:", + "Max children reached:" : "Максимум потомков достигнут:", + "CPU" : "Процессор", + "Resource usage" : "Использование ресурсов", "Shares" : "Общие ресурсы", "Users:" : "Пользователей:", "Groups:" : "Группы:", @@ -59,25 +100,42 @@ OC.L10N.register( "Federated sent:" : "Отправлено в федерацию:", "Federated received:" : "Получено из федерации:", "Talk conversations:" : "Talk беседы:", - "PHP" : "PHP", - "Version:" : "Версия:", + "Average" : "Усреднённый", + "Warning" : "Предупреждение", + "Operating System:" : "Операционная система:", + "CPU:" : "CPU:", + "Server time:" : "Серверное время:", + "Uptime:" : "Время работы:", + "Temperature" : "Температура", + "CPU Usage:" : "Использование ЦП:", + "Load average: {percentage} % ({load}) last minute" : "Средняя нагрузка: {percentage} % ({load}) за последнюю минуту", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за последнюю минуту\n{last5MinutesPercentage} % ({last5Minutes}) за последние 5 минут\n{last15MinutesPercentage} % ({last15Minutes}) за последние 15 минут", + "RAM Usage:" : "Использование RAM:", + "SWAP Usage:" : "Использование SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Всего: {memTotalBytes} / Использовано: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Всего: {swapTotalBytes} / Использовано: {swapUsageBytes}", + "SWAP info not available" : "Информация о SWAP не доступна", + "Copied!" : "Скопировано!", + "Not supported!" : "Не поддерживается!", + "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования. ", + "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", + "threads" : "темы", + "Memory:" : "Память:", + "Files:" : "Файлы:", + "Storages:" : "Хранилища:", + "Free Space:" : "Свободно:", + "Hostname:" : "Хост:", + "Gateway:" : "Шлюз:", + "%s%% of all users" : "%s%% всех пользователей", "Memory limit:" : "Лимит памяти:", - "Max execution time:" : "Максимальное время выполнения:", - "Upload max size:" : "Максимальный размер для отправки:", + "MB" : "МБ", "OPcache Revalidate Frequency:" : "Частота повторной проверки OPcache:", - "Extensions:" : "Расширения:", - "Unable to list extensions" : "Невозможно перечислить расширения", - "Show phpinfo" : "Показать информацию о php", - "Database" : "База данных", - "Type:" : "Тип:", "External monitoring tool" : "Внешний мониторинг", "Use this end point to connect an external monitoring tool:" : "Используйте эту конечную точку для подключения внешнего средства мониторинга:", "Copy" : "Копировать", - "Output in JSON" : "Вывод в формате JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Пропустить раздел \"приложения\" (включение раздела \"приложения\" приведет к отправке внешнего запроса в App Store)", - "Skip server update" : "Пропустить обновление сервера", "To use an access token, please generate one then set it using the following command:" : "Чтобы использовать токен доступа, пожалуйста, сгенерируйте его, а затем установите с помощью следующей команды:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затем передайте токен с заголовком «NC-Token» при запросе указанного выше URL.", - "Unknown Processor" : "Неизвестный процессор" + "DNS:" : "DNS:" }, "nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"); diff --git a/l10n/ru.json b/l10n/ru.json index 0c876484..62aaff70 100644 --- a/l10n/ru.json +++ b/l10n/ru.json @@ -1,54 +1,95 @@ { "translations": { - "CPU info not available" : "Информация о ЦП недоступна", - "CPU Usage:" : "Использование ЦП:", - "Load average: {percentage} % ({load}) last minute" : "Средняя нагрузка: {percentage} % ({load}) за последнюю минуту", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за последнюю минуту\n{last5MinutesPercentage} % ({last5Minutes}) за последние 5 минут\n{last15MinutesPercentage} % ({last15Minutes}) за последние 15 минут", - "RAM Usage:" : "Использование RAM:", - "SWAP Usage:" : "Использование SWAP:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Всего: {memTotalBytes} / Использовано: {memUsageBytes}", - "RAM info not available" : "RAM информация не доступна", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Всего: {swapTotalBytes} / Использовано: {swapUsageBytes}", - "SWAP info not available" : "Информация о SWAP не доступна", - "Copied!" : "Скопировано!", - "Not supported!" : "Не поддерживается!", - "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования. ", - "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", "System" : "Система", + "Unknown" : "Неизвестно", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d дней, %2$d часов, %3$d минут, %4$d секунд", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d часов, %2$d минут, %3$d секунд", "Monitoring" : "Мониторинг", "Monitoring app with useful server information" : "Приложение мониторинга с полезной информацией о сервере", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.", - "Operating System:" : "Операционная система:", - "CPU:" : "CPU:", - "Memory:" : "Память:", - "Server time:" : "Серверное время:", - "Uptime:" : "Время работы:", - "Temperature" : "Температура", + "Active users" : "Активные пользователи", + "Last hour" : "Последний час", + "Last 24 Hours" : "Последние 24 часа", + "Last 7 Days" : "Последние 7 дней", + "Last 30 Days" : "Последние 30 дней", + "Webcron" : "Webcron", + "Background jobs" : "Фоновые задания", + "Mode" : "Режим сканирования", + "Never" : "Никогда", "Load" : "Нагрузка", - "Memory" : "Память", + "CPU info not available" : "Информация о ЦП недоступна", + "Current usage" : "Текущая нагрузка", + "Threads" : "Темы", + "Load average" : "Средняя нагрузка", + "Database" : "База данных", + "Type:" : "Тип:", + "Version:" : "Версия:", + "Size:" : "Размер:", + "Used" : "Использовано", + "Available" : "Доступный", "Disk" : "Диск", + "Files" : "Файлы", + "Storages" : "Хранилище", "Mount:" : "Метка диска:", "Filesystem:" : "Файловая система:", - "Size:" : "Размер:", "Available:" : "Доступно:", "Used:" : "Используется:", - "Files:" : "Файлы:", - "Storages:" : "Хранилища:", - "Free Space:" : "Свободно:", + "Status" : "Статус", + "Started" : "Начато", + "Duration" : "Продолжительность", + "Job" : "Работа", + "When" : "Когда", + "Details" : "Свойства", + "Succeeded" : "Успешно", + "Failed" : "Не удалось", + "Running" : "Бег", + "Memory" : "Память", + "RAM info not available" : "RAM информация не доступна", + "Total" : "Всего", + "Configuration" : "Настройки", + "Output in JSON" : "Вывод в формате JSON", + "Skip server update" : "Пропустить обновление сервера", + "Authentication" : "Аутентификация", "Network" : "Сеть", - "Hostname:" : "Хост:", - "Gateway:" : "Шлюз:", + "Hostname" : "Имя хоста", + "Gateway" : "Шлюз", + "DNS" : "DNS", "Status:" : "Статус:", "Speed:" : "Скорость:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активные пользователи", - "Last hour" : "Последний час", - "%s%% of all users" : "%s%% всех пользователей", - "Last 24 Hours" : "Последние 24 часа", - "Last 7 Days" : "Последние 7 дней", - "Last 30 Days" : "Последние 30 дней", + "Keys" : "Ключи", + "Disabled" : "Отключено", + "seconds" : "секунд", + "Yes" : "Да", + "No" : "Нет", + "PHP extensions" : "Расширения PHP", + "Extension" : "Расширение", + "Unable to list extensions" : "Невозможно перечислить расширения", + "PHP" : "PHP", + "Version" : "Версия", + "Memory limit" : "Лимит памяти", + "Max execution time:" : "Максимальное время выполнения:", + "Upload max size:" : "Максимальный размер для отправки:", + "Extensions:" : "Расширения:", + "PHP Info:" : "PHP Info:", + "Show phpinfo" : "Показать информацию о php", + "FPM worker pool" : "Рабочий пул FPM", + "Pool name:" : "Имя пула:", + "Pool type:" : "Тип пула:", + "Start time:" : "Время начала:", + "Accepted connections:" : "Принятые соединения:", + "Total processes:" : "Всего процессов:", + "Active processes:" : "Активные процессы:", + "Idle processes:" : "Неактивные процессы:", + "Listen queue:" : "Очередь прослушивания:", + "Slow requests:" : "Медленные запросы:", + "Max listen queue:" : "Максимальная очередь прослушивания:", + "Max active processes:" : "Максимальное количество активных процессов:", + "Max children reached:" : "Максимум потомков достигнут:", + "CPU" : "Процессор", + "Resource usage" : "Использование ресурсов", "Shares" : "Общие ресурсы", "Users:" : "Пользователей:", "Groups:" : "Группы:", @@ -57,25 +98,42 @@ "Federated sent:" : "Отправлено в федерацию:", "Federated received:" : "Получено из федерации:", "Talk conversations:" : "Talk беседы:", - "PHP" : "PHP", - "Version:" : "Версия:", + "Average" : "Усреднённый", + "Warning" : "Предупреждение", + "Operating System:" : "Операционная система:", + "CPU:" : "CPU:", + "Server time:" : "Серверное время:", + "Uptime:" : "Время работы:", + "Temperature" : "Температура", + "CPU Usage:" : "Использование ЦП:", + "Load average: {percentage} % ({load}) last minute" : "Средняя нагрузка: {percentage} % ({load}) за последнюю минуту", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за последнюю минуту\n{last5MinutesPercentage} % ({last5Minutes}) за последние 5 минут\n{last15MinutesPercentage} % ({last15Minutes}) за последние 15 минут", + "RAM Usage:" : "Использование RAM:", + "SWAP Usage:" : "Использование SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Всего: {memTotalBytes} / Использовано: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Всего: {swapTotalBytes} / Использовано: {swapUsageBytes}", + "SWAP info not available" : "Информация о SWAP не доступна", + "Copied!" : "Скопировано!", + "Not supported!" : "Не поддерживается!", + "Press ⌘-C to copy." : "Нажмите ⌘-C для копирования. ", + "Press Ctrl-C to copy." : "Нажмите Ctrl-C для копирования.", + "threads" : "темы", + "Memory:" : "Память:", + "Files:" : "Файлы:", + "Storages:" : "Хранилища:", + "Free Space:" : "Свободно:", + "Hostname:" : "Хост:", + "Gateway:" : "Шлюз:", + "%s%% of all users" : "%s%% всех пользователей", "Memory limit:" : "Лимит памяти:", - "Max execution time:" : "Максимальное время выполнения:", - "Upload max size:" : "Максимальный размер для отправки:", + "MB" : "МБ", "OPcache Revalidate Frequency:" : "Частота повторной проверки OPcache:", - "Extensions:" : "Расширения:", - "Unable to list extensions" : "Невозможно перечислить расширения", - "Show phpinfo" : "Показать информацию о php", - "Database" : "База данных", - "Type:" : "Тип:", "External monitoring tool" : "Внешний мониторинг", "Use this end point to connect an external monitoring tool:" : "Используйте эту конечную точку для подключения внешнего средства мониторинга:", "Copy" : "Копировать", - "Output in JSON" : "Вывод в формате JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Пропустить раздел \"приложения\" (включение раздела \"приложения\" приведет к отправке внешнего запроса в App Store)", - "Skip server update" : "Пропустить обновление сервера", "To use an access token, please generate one then set it using the following command:" : "Чтобы использовать токен доступа, пожалуйста, сгенерируйте его, а затем установите с помощью следующей команды:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затем передайте токен с заголовком «NC-Token» при запросе указанного выше URL.", - "Unknown Processor" : "Неизвестный процессор" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);" } \ No newline at end of file diff --git a/l10n/sc.js b/l10n/sc.js index 608d1980..a389fc10 100644 --- a/l10n/sc.js +++ b/l10n/sc.js @@ -1,32 +1,63 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Informatziones CPU no a disponimentu", - "Copied!" : "Copiados!", - "Not supported!" : "Non suportadu!", - "Press ⌘-C to copy." : "Incarca ⌘-C pro copiare.", - "Press Ctrl-C to copy." : "Incarca Crtl-C pro copiare.", "System" : "Sistema", + "Unknown" : "Disconnotu", "Monitoring" : "Controllende", "Monitoring app with useful server information" : "Aplicatzione pro controllu cun informatziones ùtiles subra de su serbidore", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Frunit informatziones ùtiles subra de su serbidore. comente càrrigu de CPU, impreu de RAM, impreu de discu, nùmeru de utentes, etc.", - "Temperature" : "Temperadura", + "Active users" : "Utèntzias ativas", + "Last hour" : "Un'ora a immoe", + "Background jobs" : "Atividades de background", + "Mode" : "Modalidade", + "Never" : "Mai", "Load" : "Càrrigu", - "Memory" : "Memòria", - "Disk" : "Discu", + "CPU info not available" : "Informatziones CPU no a disponimentu", + "Current usage" : "Impreu atuale", + "Load average" : "Càrrigu mèdiu", + "Database" : "Base de datos", + "Type:" : "Genia:", + "Version:" : "Versione:", "Size:" : "Mannària:", - "Files:" : "Archìviu:", - "Storages:" : "Archiviatziones:", - "Free Space:" : "Logu lìberu:", + "Used" : "Impreados", + "Disk" : "Discu", + "Files" : "Archìvios", + "Status" : "Status", + "Started" : "Cumintzadu", + "Duration" : "Durata", + "Job" : "Traballu", + "When" : "Cando", + "Details" : "Detàllios", + "Running" : "Cursa", + "Memory" : "Memòria", + "Total" : "Totale", + "Configuration" : "Cunfiguratzione", + "Authentication" : "Autenticatzione", "Network" : "Rete", - "Active users" : "Utèntzias ativas", - "Last hour" : "Un'ora a immoe", - "Shares" : "Cumpartziduras", + "Hostname" : "Nùmene retzidore", + "Gateway" : "Gateway", + "DNS" : "DNS", + "Disabled" : "Disativadu", + "seconds" : "segundos", + "Yes" : "Si", + "No" : "No", + "PHP extensions" : "Estensiones PHP", + "Extension" : "Estensione", "PHP" : "PHP", - "Version:" : "Versione:", + "Version" : "Versione", "Upload max size:" : "Mannària màssima de carrigamentu", - "Database" : "Base de datos", - "Type:" : "Genia:", + "CPU" : "CPU", + "Shares" : "Cumpartziduras", + "Average" : "Mèdia", + "Warning" : "Avisu", + "Temperature" : "Temperadura", + "Copied!" : "Copiados!", + "Not supported!" : "Non suportadu!", + "Press ⌘-C to copy." : "Incarca ⌘-C pro copiare.", + "Press Ctrl-C to copy." : "Incarca Crtl-C pro copiare.", + "Files:" : "Archìviu:", + "Storages:" : "Archiviatziones:", + "Free Space:" : "Logu lìberu:", "External monitoring tool" : "Trastu de controllu esternu", "Copy" : "Còpia", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "A pustis passa su token cun s'intestatzione \"NC-Token\" cando rechedes s'URL in subra." diff --git a/l10n/sc.json b/l10n/sc.json index 638fa7de..bd9428e1 100644 --- a/l10n/sc.json +++ b/l10n/sc.json @@ -1,30 +1,61 @@ { "translations": { - "CPU info not available" : "Informatziones CPU no a disponimentu", - "Copied!" : "Copiados!", - "Not supported!" : "Non suportadu!", - "Press ⌘-C to copy." : "Incarca ⌘-C pro copiare.", - "Press Ctrl-C to copy." : "Incarca Crtl-C pro copiare.", "System" : "Sistema", + "Unknown" : "Disconnotu", "Monitoring" : "Controllende", "Monitoring app with useful server information" : "Aplicatzione pro controllu cun informatziones ùtiles subra de su serbidore", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Frunit informatziones ùtiles subra de su serbidore. comente càrrigu de CPU, impreu de RAM, impreu de discu, nùmeru de utentes, etc.", - "Temperature" : "Temperadura", + "Active users" : "Utèntzias ativas", + "Last hour" : "Un'ora a immoe", + "Background jobs" : "Atividades de background", + "Mode" : "Modalidade", + "Never" : "Mai", "Load" : "Càrrigu", - "Memory" : "Memòria", - "Disk" : "Discu", + "CPU info not available" : "Informatziones CPU no a disponimentu", + "Current usage" : "Impreu atuale", + "Load average" : "Càrrigu mèdiu", + "Database" : "Base de datos", + "Type:" : "Genia:", + "Version:" : "Versione:", "Size:" : "Mannària:", - "Files:" : "Archìviu:", - "Storages:" : "Archiviatziones:", - "Free Space:" : "Logu lìberu:", + "Used" : "Impreados", + "Disk" : "Discu", + "Files" : "Archìvios", + "Status" : "Status", + "Started" : "Cumintzadu", + "Duration" : "Durata", + "Job" : "Traballu", + "When" : "Cando", + "Details" : "Detàllios", + "Running" : "Cursa", + "Memory" : "Memòria", + "Total" : "Totale", + "Configuration" : "Cunfiguratzione", + "Authentication" : "Autenticatzione", "Network" : "Rete", - "Active users" : "Utèntzias ativas", - "Last hour" : "Un'ora a immoe", - "Shares" : "Cumpartziduras", + "Hostname" : "Nùmene retzidore", + "Gateway" : "Gateway", + "DNS" : "DNS", + "Disabled" : "Disativadu", + "seconds" : "segundos", + "Yes" : "Si", + "No" : "No", + "PHP extensions" : "Estensiones PHP", + "Extension" : "Estensione", "PHP" : "PHP", - "Version:" : "Versione:", + "Version" : "Versione", "Upload max size:" : "Mannària màssima de carrigamentu", - "Database" : "Base de datos", - "Type:" : "Genia:", + "CPU" : "CPU", + "Shares" : "Cumpartziduras", + "Average" : "Mèdia", + "Warning" : "Avisu", + "Temperature" : "Temperadura", + "Copied!" : "Copiados!", + "Not supported!" : "Non suportadu!", + "Press ⌘-C to copy." : "Incarca ⌘-C pro copiare.", + "Press Ctrl-C to copy." : "Incarca Crtl-C pro copiare.", + "Files:" : "Archìviu:", + "Storages:" : "Archiviatziones:", + "Free Space:" : "Logu lìberu:", "External monitoring tool" : "Trastu de controllu esternu", "Copy" : "Còpia", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "A pustis passa su token cun s'intestatzione \"NC-Token\" cando rechedes s'URL in subra." diff --git a/l10n/si.js b/l10n/si.js index 90c03142..72a95449 100644 --- a/l10n/si.js +++ b/l10n/si.js @@ -1,12 +1,21 @@ OC.L10N.register( "serverinfo", { + "System" : "පද්ධතිය", + "Available" : "ඇත", + "Files" : "ගොනු", + "Duration" : "කාල සීමාව", + "Authentication" : "සත්‍යාපනය", + "Hostname" : "ධාරක නාමය", + "Disabled" : "අබල කර ඇත", + "No" : "නැහැ", + "Version" : "අනුවාදය", + "Shares" : "බෙදාගැනීම්", + "Warning" : "අවවාදයයි", "Copied!" : "පිටපත් කළා!", "Not supported!" : "සහාය නොදක්වයි!", "Press ⌘-C to copy." : "පිටපත් කිරීමට ⌘-C ඔබන්න.", "Press Ctrl-C to copy." : "පිටපත් කිරීමට Ctrl-C ඔබන්න.", - "System" : "පද්ධතිය", - "Shares" : "බෙදාගැනීම්", "Copy" : "පිටපත්" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/si.json b/l10n/si.json index 2c8232b0..90fe3472 100644 --- a/l10n/si.json +++ b/l10n/si.json @@ -1,10 +1,19 @@ { "translations": { + "System" : "පද්ධතිය", + "Available" : "ඇත", + "Files" : "ගොනු", + "Duration" : "කාල සීමාව", + "Authentication" : "සත්‍යාපනය", + "Hostname" : "ධාරක නාමය", + "Disabled" : "අබල කර ඇත", + "No" : "නැහැ", + "Version" : "අනුවාදය", + "Shares" : "බෙදාගැනීම්", + "Warning" : "අවවාදයයි", "Copied!" : "පිටපත් කළා!", "Not supported!" : "සහාය නොදක්වයි!", "Press ⌘-C to copy." : "පිටපත් කිරීමට ⌘-C ඔබන්න.", "Press Ctrl-C to copy." : "පිටපත් කිරීමට Ctrl-C ඔබන්න.", - "System" : "පද්ධතිය", - "Shares" : "බෙදාගැනීම්", "Copy" : "පිටපත්" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sk.js b/l10n/sk.js index f82562e1..90643d1c 100644 --- a/l10n/sk.js +++ b/l10n/sk.js @@ -1,72 +1,78 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Info o CPU nie je dostupné", - "CPU Usage:" : "Využitie CPU:", - "Load average: {percentage} % ({load}) last minute" : "Priemerné zaťaženie: {percentage} % ({load})za poslednú minútu", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) za poslednú minútu\n{last5MinutesPercentage} % ({last5Minutes}) za posledných 5 minút\n{last15MinutesPercentage} % ({last15Minutes}) za posledných 15 minút", - "RAM Usage:" : "Využitie RAM:", - "SWAP Usage:" : "Využitie SWAPu:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Celkom: {memTotalBytes}/Využité: {memUsageBytes}", - "RAM info not available" : "Informácia o RAM nie je prístupná", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Celkom: {swapTotalBytes}/Využité: {swapUsageBytes}", - "SWAP info not available" : "Informácia o SWAPe nie je prístupná", - "Copied!" : "Skopírované!", - "Not supported!" : "Nepodporované!", - "Press ⌘-C to copy." : "Pre kopírovanie, stlačte ⌘-C.", - "Press Ctrl-C to copy." : "Pre kopírovanie, stlačte Ctrl-C.", "System" : "Systém", + "Unknown" : "Neznámy", "Monitoring" : "Sledovanie", "Monitoring app with useful server information" : "Monitorovacia apka s užitočnými informáciami o serveri", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Poskytuje užitočné informácie o serveri, ako napríklad vyťaženie CPU, RAM, využitie diskov, počet používateľov, atď.", - "Operating System:" : "Operačný systém:", - "CPU:" : "CPU:", - "Memory:" : "Pamäť:", - "Server time:" : "Čas na serveri:", - "Uptime:" : "Doba behu:", - "Temperature" : "Teplota", + "Active users" : "Aktívni používatelia", + "Last hour" : "Posledná hodina", + "Last 24 Hours" : "Posledných 24 hodín", + "Last 7 Days" : "Posledných 7 dní", + "Last 30 Days" : "Posledných 30 dní", + "Webcron" : "Webcron", + "Background jobs" : "Úlohy na pozadí", + "Mode" : "Režim", + "Never" : "Nikdy", "Load" : "Záťaž", - "Memory" : "Pamäť", + "CPU info not available" : "Info o CPU nie je dostupné", + "Current usage" : "Aktuálne využitie", + "Threads" : "Vlákna", + "Load average" : "Priemerné zaťaženie", + "Database" : "Databáza", + "Type:" : "Typ:", + "Version:" : "Verzia:", + "Size:" : "Veľkosť:", + "Used" : "Použité", + "Available" : "Dostupné", "Disk" : "Disk", + "Files" : "Súbory", + "Storages" : "Úložiská", "Mount:" : "Prípojný bod:", "Filesystem:" : "Súborový systém:", - "Size:" : "Veľkosť:", "Available:" : "Dostupné:", "Used:" : "Využité:", - "Files:" : "Súbory:", - "Storages:" : "Úložiská:", - "Free Space:" : "Voľné miesto:", + "Status" : "Stav", + "Started" : "Zahájená", + "Duration" : "Trvanie", + "Job" : "Práca", + "When" : "Keď", + "Details" : "Podrobnosti", + "Succeeded" : "Úspešné", + "Failed" : "Zlyhalo", + "Running" : "Beh", + "Memory" : "Pamäť", + "RAM info not available" : "Informácia o RAM nie je prístupná", + "Total" : "Celkom", + "Configuration" : "Nastavenia", + "Output in JSON" : "Výstup v JSON", + "Skip server update" : "Preskočiť aktualizáciu servera", + "Authentication" : "Autentifikácia", "Network" : "Sieť", - "Hostname:" : "Názov servera:", - "Gateway:" : "Brána:", + "Hostname" : "Názov servera", + "Gateway" : "Brána", + "DNS" : "DNS", "Status:" : "Stav:", "Speed:" : "Rýchlosť:", "Duplex:" : "Duplex:", "MAC:" : "MAC adresa:", "IPv4:" : "Adresa IPv4:", "IPv6:" : "Adresa IPv6:", - "Active users" : "Aktívni používatelia", - "Last hour" : "Posledná hodina", - "%s%% of all users" : "%s%% všetkých používateľov", - "Last 24 Hours" : "Posledných 24 hodín", - "Last 7 Days" : "Posledných 7 dní", - "Last 30 Days" : "Posledných 30 dní", - "Shares" : "Sprístupnené položky", - "Users:" : "Používatelia:", - "Groups:" : "Skupiny:", - "Links:" : "Odkazy:", - "Emails:" : "E-maily:", - "Federated sent:" : "Združené odoslané:", - "Federated received:" : "Združené prijaté:", - "Talk conversations:" : "Talk /Rozhovor/ konverzácia", + "Keys" : "Kľúče", + "Disabled" : "Vypnuté", + "seconds" : "sekúnd", + "Yes" : "Áno", + "No" : "Nie", + "PHP extensions" : "PHP rozšírenia", + "Extension" : "Prípona", + "Unable to list extensions" : "Nepodarilo sa zobraziť rozšírenia", "PHP" : "PHP", - "Version:" : "Verzia:", - "Memory limit:" : "Obmedzenie pamäte:", + "Version" : "Verzia", + "Memory limit" : "Obmedzenie pamäte", "Max execution time:" : "Maximálny čas spustenia:", "Upload max size:" : "Maximálna veľkosť pre nahratie:", - "OPcache Revalidate Frequency:" : "Frekvencia opätovného overenia pamäte OPcache:", "Extensions:" : "Rozšírenia:", - "Unable to list extensions" : "Nepodarilo sa zobraziť rozšírenia", "Show phpinfo" : "Zobraziť phpinfo", "FPM worker pool" : "Skupina procesov FPM", "Pool name:" : "Názov skupiny:", @@ -81,16 +87,50 @@ OC.L10N.register( "Max listen queue:" : "Maximálna dĺžka čakajúcej fronty:", "Max active processes:" : "Maximálny počet aktívnych procesov:", "Max children reached:" : "Maximálny počet podprocesov:", - "Database" : "Databáza", - "Type:" : "Typ:", + "CPU" : "CPU", + "Resource usage" : "Využitie zdrojov", + "Shares" : "Sprístupnené položky", + "Users:" : "Používatelia:", + "Groups:" : "Skupiny:", + "Links:" : "Odkazy:", + "Emails:" : "E-maily:", + "Federated sent:" : "Združené odoslané:", + "Federated received:" : "Združené prijaté:", + "Talk conversations:" : "Talk /Rozhovor/ konverzácia", + "Average" : "Maticové", + "Warning" : "Varovanie", + "Operating System:" : "Operačný systém:", + "CPU:" : "CPU:", + "Server time:" : "Čas na serveri:", + "Uptime:" : "Doba behu:", + "Temperature" : "Teplota", + "CPU Usage:" : "Využitie CPU:", + "Load average: {percentage} % ({load}) last minute" : "Priemerné zaťaženie: {percentage} % ({load})za poslednú minútu", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) za poslednú minútu\n{last5MinutesPercentage} % ({last5Minutes}) za posledných 5 minút\n{last15MinutesPercentage} % ({last15Minutes}) za posledných 15 minút", + "RAM Usage:" : "Využitie RAM:", + "SWAP Usage:" : "Využitie SWAPu:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Celkom: {memTotalBytes}/Využité: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Celkom: {swapTotalBytes}/Využité: {swapUsageBytes}", + "SWAP info not available" : "Informácia o SWAPe nie je prístupná", + "Copied!" : "Skopírované!", + "Not supported!" : "Nepodporované!", + "Press ⌘-C to copy." : "Pre kopírovanie, stlačte ⌘-C.", + "Press Ctrl-C to copy." : "Pre kopírovanie, stlačte Ctrl-C.", + "Memory:" : "Pamäť:", + "Files:" : "Súbory:", + "Storages:" : "Úložiská:", + "Free Space:" : "Voľné miesto:", + "Hostname:" : "Názov servera:", + "Gateway:" : "Brána:", + "%s%% of all users" : "%s%% všetkých používateľov", + "Memory limit:" : "Obmedzenie pamäte:", + "OPcache Revalidate Frequency:" : "Frekvencia opätovného overenia pamäte OPcache:", "External monitoring tool" : "Externý sledovací nástroj", "Use this end point to connect an external monitoring tool:" : "Použite tento prípojný bod pre externý monitorovací nástroj:", "Copy" : "Kopírovať", - "Output in JSON" : "Výstup v JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Vynechať sekciu aplikácií ( zahrnutie sekcie aplikácií odošle externú požiadavku do obchodu s aplikáciami)", - "Skip server update" : "Preskočiť aktualizáciu servera", "To use an access token, please generate one then set it using the following command:" : "Pre používanie prístupového tokenu ho vygenerujte a potom ho nastavte použitím nasledujúceho príkazu:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pri dotazovaní na vyššie uvedenú adresu URL potom poslať token s hlavičkou „NC-Token“.", - "Unknown Processor" : "Neznámy procesor" + "DNS:" : "DNS:" }, "nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);"); diff --git a/l10n/sk.json b/l10n/sk.json index d071a110..bac2cbd8 100644 --- a/l10n/sk.json +++ b/l10n/sk.json @@ -1,70 +1,76 @@ { "translations": { - "CPU info not available" : "Info o CPU nie je dostupné", - "CPU Usage:" : "Využitie CPU:", - "Load average: {percentage} % ({load}) last minute" : "Priemerné zaťaženie: {percentage} % ({load})za poslednú minútu", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) za poslednú minútu\n{last5MinutesPercentage} % ({last5Minutes}) za posledných 5 minút\n{last15MinutesPercentage} % ({last15Minutes}) za posledných 15 minút", - "RAM Usage:" : "Využitie RAM:", - "SWAP Usage:" : "Využitie SWAPu:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Celkom: {memTotalBytes}/Využité: {memUsageBytes}", - "RAM info not available" : "Informácia o RAM nie je prístupná", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Celkom: {swapTotalBytes}/Využité: {swapUsageBytes}", - "SWAP info not available" : "Informácia o SWAPe nie je prístupná", - "Copied!" : "Skopírované!", - "Not supported!" : "Nepodporované!", - "Press ⌘-C to copy." : "Pre kopírovanie, stlačte ⌘-C.", - "Press Ctrl-C to copy." : "Pre kopírovanie, stlačte Ctrl-C.", "System" : "Systém", + "Unknown" : "Neznámy", "Monitoring" : "Sledovanie", "Monitoring app with useful server information" : "Monitorovacia apka s užitočnými informáciami o serveri", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Poskytuje užitočné informácie o serveri, ako napríklad vyťaženie CPU, RAM, využitie diskov, počet používateľov, atď.", - "Operating System:" : "Operačný systém:", - "CPU:" : "CPU:", - "Memory:" : "Pamäť:", - "Server time:" : "Čas na serveri:", - "Uptime:" : "Doba behu:", - "Temperature" : "Teplota", + "Active users" : "Aktívni používatelia", + "Last hour" : "Posledná hodina", + "Last 24 Hours" : "Posledných 24 hodín", + "Last 7 Days" : "Posledných 7 dní", + "Last 30 Days" : "Posledných 30 dní", + "Webcron" : "Webcron", + "Background jobs" : "Úlohy na pozadí", + "Mode" : "Režim", + "Never" : "Nikdy", "Load" : "Záťaž", - "Memory" : "Pamäť", + "CPU info not available" : "Info o CPU nie je dostupné", + "Current usage" : "Aktuálne využitie", + "Threads" : "Vlákna", + "Load average" : "Priemerné zaťaženie", + "Database" : "Databáza", + "Type:" : "Typ:", + "Version:" : "Verzia:", + "Size:" : "Veľkosť:", + "Used" : "Použité", + "Available" : "Dostupné", "Disk" : "Disk", + "Files" : "Súbory", + "Storages" : "Úložiská", "Mount:" : "Prípojný bod:", "Filesystem:" : "Súborový systém:", - "Size:" : "Veľkosť:", "Available:" : "Dostupné:", "Used:" : "Využité:", - "Files:" : "Súbory:", - "Storages:" : "Úložiská:", - "Free Space:" : "Voľné miesto:", + "Status" : "Stav", + "Started" : "Zahájená", + "Duration" : "Trvanie", + "Job" : "Práca", + "When" : "Keď", + "Details" : "Podrobnosti", + "Succeeded" : "Úspešné", + "Failed" : "Zlyhalo", + "Running" : "Beh", + "Memory" : "Pamäť", + "RAM info not available" : "Informácia o RAM nie je prístupná", + "Total" : "Celkom", + "Configuration" : "Nastavenia", + "Output in JSON" : "Výstup v JSON", + "Skip server update" : "Preskočiť aktualizáciu servera", + "Authentication" : "Autentifikácia", "Network" : "Sieť", - "Hostname:" : "Názov servera:", - "Gateway:" : "Brána:", + "Hostname" : "Názov servera", + "Gateway" : "Brána", + "DNS" : "DNS", "Status:" : "Stav:", "Speed:" : "Rýchlosť:", "Duplex:" : "Duplex:", "MAC:" : "MAC adresa:", "IPv4:" : "Adresa IPv4:", "IPv6:" : "Adresa IPv6:", - "Active users" : "Aktívni používatelia", - "Last hour" : "Posledná hodina", - "%s%% of all users" : "%s%% všetkých používateľov", - "Last 24 Hours" : "Posledných 24 hodín", - "Last 7 Days" : "Posledných 7 dní", - "Last 30 Days" : "Posledných 30 dní", - "Shares" : "Sprístupnené položky", - "Users:" : "Používatelia:", - "Groups:" : "Skupiny:", - "Links:" : "Odkazy:", - "Emails:" : "E-maily:", - "Federated sent:" : "Združené odoslané:", - "Federated received:" : "Združené prijaté:", - "Talk conversations:" : "Talk /Rozhovor/ konverzácia", + "Keys" : "Kľúče", + "Disabled" : "Vypnuté", + "seconds" : "sekúnd", + "Yes" : "Áno", + "No" : "Nie", + "PHP extensions" : "PHP rozšírenia", + "Extension" : "Prípona", + "Unable to list extensions" : "Nepodarilo sa zobraziť rozšírenia", "PHP" : "PHP", - "Version:" : "Verzia:", - "Memory limit:" : "Obmedzenie pamäte:", + "Version" : "Verzia", + "Memory limit" : "Obmedzenie pamäte", "Max execution time:" : "Maximálny čas spustenia:", "Upload max size:" : "Maximálna veľkosť pre nahratie:", - "OPcache Revalidate Frequency:" : "Frekvencia opätovného overenia pamäte OPcache:", "Extensions:" : "Rozšírenia:", - "Unable to list extensions" : "Nepodarilo sa zobraziť rozšírenia", "Show phpinfo" : "Zobraziť phpinfo", "FPM worker pool" : "Skupina procesov FPM", "Pool name:" : "Názov skupiny:", @@ -79,16 +85,50 @@ "Max listen queue:" : "Maximálna dĺžka čakajúcej fronty:", "Max active processes:" : "Maximálny počet aktívnych procesov:", "Max children reached:" : "Maximálny počet podprocesov:", - "Database" : "Databáza", - "Type:" : "Typ:", + "CPU" : "CPU", + "Resource usage" : "Využitie zdrojov", + "Shares" : "Sprístupnené položky", + "Users:" : "Používatelia:", + "Groups:" : "Skupiny:", + "Links:" : "Odkazy:", + "Emails:" : "E-maily:", + "Federated sent:" : "Združené odoslané:", + "Federated received:" : "Združené prijaté:", + "Talk conversations:" : "Talk /Rozhovor/ konverzácia", + "Average" : "Maticové", + "Warning" : "Varovanie", + "Operating System:" : "Operačný systém:", + "CPU:" : "CPU:", + "Server time:" : "Čas na serveri:", + "Uptime:" : "Doba behu:", + "Temperature" : "Teplota", + "CPU Usage:" : "Využitie CPU:", + "Load average: {percentage} % ({load}) last minute" : "Priemerné zaťaženie: {percentage} % ({load})za poslednú minútu", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage}% ({lastMinute}) za poslednú minútu\n{last5MinutesPercentage} % ({last5Minutes}) za posledných 5 minút\n{last15MinutesPercentage} % ({last15Minutes}) za posledných 15 minút", + "RAM Usage:" : "Využitie RAM:", + "SWAP Usage:" : "Využitie SWAPu:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Celkom: {memTotalBytes}/Využité: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Celkom: {swapTotalBytes}/Využité: {swapUsageBytes}", + "SWAP info not available" : "Informácia o SWAPe nie je prístupná", + "Copied!" : "Skopírované!", + "Not supported!" : "Nepodporované!", + "Press ⌘-C to copy." : "Pre kopírovanie, stlačte ⌘-C.", + "Press Ctrl-C to copy." : "Pre kopírovanie, stlačte Ctrl-C.", + "Memory:" : "Pamäť:", + "Files:" : "Súbory:", + "Storages:" : "Úložiská:", + "Free Space:" : "Voľné miesto:", + "Hostname:" : "Názov servera:", + "Gateway:" : "Brána:", + "%s%% of all users" : "%s%% všetkých používateľov", + "Memory limit:" : "Obmedzenie pamäte:", + "OPcache Revalidate Frequency:" : "Frekvencia opätovného overenia pamäte OPcache:", "External monitoring tool" : "Externý sledovací nástroj", "Use this end point to connect an external monitoring tool:" : "Použite tento prípojný bod pre externý monitorovací nástroj:", "Copy" : "Kopírovať", - "Output in JSON" : "Výstup v JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Vynechať sekciu aplikácií ( zahrnutie sekcie aplikácií odošle externú požiadavku do obchodu s aplikáciami)", - "Skip server update" : "Preskočiť aktualizáciu servera", "To use an access token, please generate one then set it using the following command:" : "Pre používanie prístupového tokenu ho vygenerujte a potom ho nastavte použitím nasledujúceho príkazu:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pri dotazovaní na vyššie uvedenú adresu URL potom poslať token s hlavičkou „NC-Token“.", - "Unknown Processor" : "Neznámy procesor" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);" } \ No newline at end of file diff --git a/l10n/sl.js b/l10n/sl.js index e3d3a6e9..42b38771 100644 --- a/l10n/sl.js +++ b/l10n/sl.js @@ -1,47 +1,75 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Podatki CPE niso na voljo", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Skupaj: {memTotalBytes}/Trenutna uporaba: {memUsageBytes}", - "RAM info not available" : "Podatki RAM niso na voljo", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Izmenjevalni prostor SWAP: Skupaj: {swapTotalBytes}/Trenutna uporaba: {swapUsageBytes}", - "SWAP info not available" : "Podatki izmenjevalnega prostora niso na voljo", - "Copied!" : "Kopirano!", - "Not supported!" : "Ni podprto!", - "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", - "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", "System" : "Sistem", + "Unknown" : "Neznano", "Monitoring" : "Sistemska dejavnost", "Monitoring app with useful server information" : "Program za spremljanje delovanja sistema z različnimi podrobnostmi obremenitve strežnika", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Omogoča prikaz različnih podrobnosti strežnika, kot so obremenitev CPE, zasedenost pomnilnika in prostora, števila uporabnikov in drugo.", - "Operating System:" : "Operacijski sistem:", - "CPU:" : "CPE:", - "Memory:" : "Pomnilnik:", - "Server time:" : "Čas strežnika:", - "Uptime:" : "Čas delovanja:", - "Temperature" : "Temperatura", + "Active users" : "Dejavni uporabniki", + "Last hour" : "Zadnja ura", + "Webcron" : "Webcron", + "Background jobs" : "Opravila v ozadju", + "Mode" : "Način", + "Never" : "nikoli", "Load" : "Obremenitev", - "Memory" : "Pomnilnik", + "CPU info not available" : "Podatki CPE niso na voljo", + "Current usage" : "Trenutna zasedenost", + "Load average" : "Povprečna obremenitev", + "Database" : "Podatkovna zbirka", + "Type:" : "Vrsta:", + "Version:" : "Različica:", + "Size:" : "Velikost:", + "Used" : "Zasedeno", + "Available" : "Na voljo", "Disk" : "Disk", + "Files" : "Datoteke", + "Storages" : "Shrambe", "Mount:" : "Priklopna točka:", "Filesystem:" : "Datotečni sistem:", - "Size:" : "Velikost:", "Available:" : "Na voljo:", "Used:" : "V uporabi:", - "Files:" : "Datoteke:", - "Storages:" : "Shrambe:", - "Free Space:" : "Prostor:", + "Status" : "Stanje", + "Started" : "Začeto", + "Duration" : "Trajanje", + "Job" : "Zaposlitev", + "When" : "Ko je", + "Details" : "Podrobnosti", + "Failed" : "Opravilo je spodletelo!", + "Running" : "V teku", + "Memory" : "Pomnilnik", + "RAM info not available" : "Podatki RAM niso na voljo", + "Total" : "Skupaj", + "Configuration" : "Nastavitve", + "Output in JSON" : "Odvod v zapisu JSON", + "Skip server update" : "Preskoči posodobitev strežnika", + "Authentication" : "Overitev", "Network" : "Omrežje", - "Hostname:" : "Ime gostitelja:", - "Gateway:" : "Prehod:", + "Hostname" : "Ime gostitelja", + "Gateway" : "Prehod", + "DNS" : "Domensko ime DNS", "Status:" : "Stanje:", "Speed:" : "Hitrost:", "Duplex:" : "Dupleks:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Dejavni uporabniki", - "Last hour" : "Zadnja ura", + "Keys" : "Ključi", + "Disabled" : "Onemogočeno", + "seconds" : "sekunde", + "Yes" : "Da", + "No" : "Ne", + "PHP extensions" : "Razširitve PHP", + "Extension" : "Pripona", + "Unable to list extensions" : "Ni mogoče izpisati seznama razširitev", + "PHP" : "Okolje PHP", + "Version" : "Različica", + "Memory limit" : "Omejitev pomnilnika", + "Max execution time:" : "Največji čas izvajanja:", + "Upload max size:" : "Omejitev velikosti pošiljanja:", + "Extensions:" : "Razširitve:", + "Show phpinfo" : "Pokaži odvod ukaza phpinfo", + "CPU" : "CPE", "Shares" : "Souporaba", "Users:" : "Uporabniki:", "Groups:" : "Skupine:", @@ -50,25 +78,34 @@ OC.L10N.register( "Federated sent:" : "Poslano zveznemu oblaku:", "Federated received:" : "Prejeto zveznemu oblaku:", "Talk conversations:" : "Pogovori Talk:", - "PHP" : "Okolje PHP", - "Version:" : "Različica:", + "Average" : "Povprečje", + "Warning" : "Opozorilo", + "Operating System:" : "Operacijski sistem:", + "CPU:" : "CPE:", + "Server time:" : "Čas strežnika:", + "Uptime:" : "Čas delovanja:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Skupaj: {memTotalBytes}/Trenutna uporaba: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Izmenjevalni prostor SWAP: Skupaj: {swapTotalBytes}/Trenutna uporaba: {swapUsageBytes}", + "SWAP info not available" : "Podatki izmenjevalnega prostora niso na voljo", + "Copied!" : "Kopirano!", + "Not supported!" : "Ni podprto!", + "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", + "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", + "Memory:" : "Pomnilnik:", + "Files:" : "Datoteke:", + "Storages:" : "Shrambe:", + "Free Space:" : "Prostor:", + "Hostname:" : "Ime gostitelja:", + "Gateway:" : "Prehod:", "Memory limit:" : "Omejitev pomnilnika:", - "Max execution time:" : "Največji čas izvajanja:", - "Upload max size:" : "Omejitev velikosti pošiljanja:", "OPcache Revalidate Frequency:" : "Frekvenca overjanja OPcache:", - "Extensions:" : "Razširitve:", - "Unable to list extensions" : "Ni mogoče izpisati seznama razširitev", - "Show phpinfo" : "Pokaži odvod ukaza phpinfo", - "Database" : "Podatkovna zbirka", - "Type:" : "Vrsta:", "External monitoring tool" : "Zunanje orodje za nadzor", "Use this end point to connect an external monitoring tool:" : "Priklopna točka za povezavo zunanjega orodja za nadzor:", "Copy" : "Kopiraj", - "Output in JSON" : "Odvod v zapisu JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Preskoči razdelek programov (vključitev razdelka pošlje zunanji zahtevek trgovini s programi).", - "Skip server update" : "Preskoči posodobitev strežnika", "To use an access token, please generate one then set it using the following command:" : "Za uporabo žetona za dostop, ga je treba najprej ustvariti in nato nastaviti z ukazom:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pri poizvedovanju po zgornjem naslovu URL je treba žeton nato prenesti z glavo »NC-Token«.", - "Unknown Processor" : "Neznan processor" + "DNS:" : "DNS:" }, "nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"); diff --git a/l10n/sl.json b/l10n/sl.json index 46bf8540..b66b8550 100644 --- a/l10n/sl.json +++ b/l10n/sl.json @@ -1,45 +1,73 @@ { "translations": { - "CPU info not available" : "Podatki CPE niso na voljo", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Skupaj: {memTotalBytes}/Trenutna uporaba: {memUsageBytes}", - "RAM info not available" : "Podatki RAM niso na voljo", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Izmenjevalni prostor SWAP: Skupaj: {swapTotalBytes}/Trenutna uporaba: {swapUsageBytes}", - "SWAP info not available" : "Podatki izmenjevalnega prostora niso na voljo", - "Copied!" : "Kopirano!", - "Not supported!" : "Ni podprto!", - "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", - "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", "System" : "Sistem", + "Unknown" : "Neznano", "Monitoring" : "Sistemska dejavnost", "Monitoring app with useful server information" : "Program za spremljanje delovanja sistema z različnimi podrobnostmi obremenitve strežnika", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Omogoča prikaz različnih podrobnosti strežnika, kot so obremenitev CPE, zasedenost pomnilnika in prostora, števila uporabnikov in drugo.", - "Operating System:" : "Operacijski sistem:", - "CPU:" : "CPE:", - "Memory:" : "Pomnilnik:", - "Server time:" : "Čas strežnika:", - "Uptime:" : "Čas delovanja:", - "Temperature" : "Temperatura", + "Active users" : "Dejavni uporabniki", + "Last hour" : "Zadnja ura", + "Webcron" : "Webcron", + "Background jobs" : "Opravila v ozadju", + "Mode" : "Način", + "Never" : "nikoli", "Load" : "Obremenitev", - "Memory" : "Pomnilnik", + "CPU info not available" : "Podatki CPE niso na voljo", + "Current usage" : "Trenutna zasedenost", + "Load average" : "Povprečna obremenitev", + "Database" : "Podatkovna zbirka", + "Type:" : "Vrsta:", + "Version:" : "Različica:", + "Size:" : "Velikost:", + "Used" : "Zasedeno", + "Available" : "Na voljo", "Disk" : "Disk", + "Files" : "Datoteke", + "Storages" : "Shrambe", "Mount:" : "Priklopna točka:", "Filesystem:" : "Datotečni sistem:", - "Size:" : "Velikost:", "Available:" : "Na voljo:", "Used:" : "V uporabi:", - "Files:" : "Datoteke:", - "Storages:" : "Shrambe:", - "Free Space:" : "Prostor:", + "Status" : "Stanje", + "Started" : "Začeto", + "Duration" : "Trajanje", + "Job" : "Zaposlitev", + "When" : "Ko je", + "Details" : "Podrobnosti", + "Failed" : "Opravilo je spodletelo!", + "Running" : "V teku", + "Memory" : "Pomnilnik", + "RAM info not available" : "Podatki RAM niso na voljo", + "Total" : "Skupaj", + "Configuration" : "Nastavitve", + "Output in JSON" : "Odvod v zapisu JSON", + "Skip server update" : "Preskoči posodobitev strežnika", + "Authentication" : "Overitev", "Network" : "Omrežje", - "Hostname:" : "Ime gostitelja:", - "Gateway:" : "Prehod:", + "Hostname" : "Ime gostitelja", + "Gateway" : "Prehod", + "DNS" : "Domensko ime DNS", "Status:" : "Stanje:", "Speed:" : "Hitrost:", "Duplex:" : "Dupleks:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Dejavni uporabniki", - "Last hour" : "Zadnja ura", + "Keys" : "Ključi", + "Disabled" : "Onemogočeno", + "seconds" : "sekunde", + "Yes" : "Da", + "No" : "Ne", + "PHP extensions" : "Razširitve PHP", + "Extension" : "Pripona", + "Unable to list extensions" : "Ni mogoče izpisati seznama razširitev", + "PHP" : "Okolje PHP", + "Version" : "Različica", + "Memory limit" : "Omejitev pomnilnika", + "Max execution time:" : "Največji čas izvajanja:", + "Upload max size:" : "Omejitev velikosti pošiljanja:", + "Extensions:" : "Razširitve:", + "Show phpinfo" : "Pokaži odvod ukaza phpinfo", + "CPU" : "CPE", "Shares" : "Souporaba", "Users:" : "Uporabniki:", "Groups:" : "Skupine:", @@ -48,25 +76,34 @@ "Federated sent:" : "Poslano zveznemu oblaku:", "Federated received:" : "Prejeto zveznemu oblaku:", "Talk conversations:" : "Pogovori Talk:", - "PHP" : "Okolje PHP", - "Version:" : "Različica:", + "Average" : "Povprečje", + "Warning" : "Opozorilo", + "Operating System:" : "Operacijski sistem:", + "CPU:" : "CPE:", + "Server time:" : "Čas strežnika:", + "Uptime:" : "Čas delovanja:", + "Temperature" : "Temperatura", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Skupaj: {memTotalBytes}/Trenutna uporaba: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Izmenjevalni prostor SWAP: Skupaj: {swapTotalBytes}/Trenutna uporaba: {swapUsageBytes}", + "SWAP info not available" : "Podatki izmenjevalnega prostora niso na voljo", + "Copied!" : "Kopirano!", + "Not supported!" : "Ni podprto!", + "Press ⌘-C to copy." : "Pritisnite ⌘-C za kopiranje.", + "Press Ctrl-C to copy." : "Pritisnite Ctrl-C za kopiranje.", + "Memory:" : "Pomnilnik:", + "Files:" : "Datoteke:", + "Storages:" : "Shrambe:", + "Free Space:" : "Prostor:", + "Hostname:" : "Ime gostitelja:", + "Gateway:" : "Prehod:", "Memory limit:" : "Omejitev pomnilnika:", - "Max execution time:" : "Največji čas izvajanja:", - "Upload max size:" : "Omejitev velikosti pošiljanja:", "OPcache Revalidate Frequency:" : "Frekvenca overjanja OPcache:", - "Extensions:" : "Razširitve:", - "Unable to list extensions" : "Ni mogoče izpisati seznama razširitev", - "Show phpinfo" : "Pokaži odvod ukaza phpinfo", - "Database" : "Podatkovna zbirka", - "Type:" : "Vrsta:", "External monitoring tool" : "Zunanje orodje za nadzor", "Use this end point to connect an external monitoring tool:" : "Priklopna točka za povezavo zunanjega orodja za nadzor:", "Copy" : "Kopiraj", - "Output in JSON" : "Odvod v zapisu JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Preskoči razdelek programov (vključitev razdelka pošlje zunanji zahtevek trgovini s programi).", - "Skip server update" : "Preskoči posodobitev strežnika", "To use an access token, please generate one then set it using the following command:" : "Za uporabo žetona za dostop, ga je treba najprej ustvariti in nato nastaviti z ukazom:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pri poizvedovanju po zgornjem naslovu URL je treba žeton nato prenesti z glavo »NC-Token«.", - "Unknown Processor" : "Neznan processor" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);" } \ No newline at end of file diff --git a/l10n/sq.js b/l10n/sq.js index b1b46497..43b832bc 100644 --- a/l10n/sq.js +++ b/l10n/sq.js @@ -1,23 +1,43 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "I kopjuar!", - "Not supported!" : "Nuk mbështetet!", - "Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.", - "Press Ctrl-C to copy." : "Shtyp Ctrl-C për të kopjuar", "System" : "Sistem", + "Unknown" : "I panjohur", "Monitoring" : "Vëzhgim", - "Temperature" : "Temperatura", - "Size:" : "Madhësia:", - "Files:" : "Skedarët: ", "Active users" : "Përdoruesit aktivë", - "Shares" : "Shpërndarje", - "Users:" : "Përdoruesit:", - "PHP" : "PHP", - "Version:" : "Versioni: ", - "Upload max size:" : "Ngarkoni madhësinë maksimale: ", + "Background jobs" : "Punët në background", + "Never" : "Kurrë", + "Current usage" : "Perdorimi aktual", + "Load average" : "Ngarkesa mesatare", "Database" : "Databazë", "Type:" : "Lloji:", + "Version:" : "Versioni: ", + "Size:" : "Madhësia:", + "Available" : "i disponueshëm", + "Files" : "Skedarë", + "Status" : "Statusi", + "Started" : "Filloi", + "Duration" : "Kohëzgjatja", + "Details" : "Detajet", + "Total" : "Total", + "Authentication" : "Mirëfilltësim", + "Hostname" : "Strehëemër", + "Disabled" : "I/E çaktivizuar", + "seconds" : "sekonda", + "Yes" : "Po", + "PHP extensions" : "Zgjerimet e PHP", + "PHP" : "PHP", + "Version" : "Versioni", + "Upload max size:" : "Ngarkoni madhësinë maksimale: ", + "Shares" : "Shpërndarje", + "Users:" : "Përdoruesit:", + "Warning" : "Kujdes", + "Temperature" : "Temperatura", + "Copied!" : "I kopjuar!", + "Not supported!" : "Nuk mbështetet!", + "Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.", + "Press Ctrl-C to copy." : "Shtyp Ctrl-C për të kopjuar", + "Files:" : "Skedarët: ", "External monitoring tool" : "Mjet i kontrollit të jashtëm", "Copy" : "Kopjo" }, diff --git a/l10n/sq.json b/l10n/sq.json index d198690c..48c953b6 100644 --- a/l10n/sq.json +++ b/l10n/sq.json @@ -1,21 +1,41 @@ { "translations": { - "Copied!" : "I kopjuar!", - "Not supported!" : "Nuk mbështetet!", - "Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.", - "Press Ctrl-C to copy." : "Shtyp Ctrl-C për të kopjuar", "System" : "Sistem", + "Unknown" : "I panjohur", "Monitoring" : "Vëzhgim", - "Temperature" : "Temperatura", - "Size:" : "Madhësia:", - "Files:" : "Skedarët: ", "Active users" : "Përdoruesit aktivë", - "Shares" : "Shpërndarje", - "Users:" : "Përdoruesit:", - "PHP" : "PHP", - "Version:" : "Versioni: ", - "Upload max size:" : "Ngarkoni madhësinë maksimale: ", + "Background jobs" : "Punët në background", + "Never" : "Kurrë", + "Current usage" : "Perdorimi aktual", + "Load average" : "Ngarkesa mesatare", "Database" : "Databazë", "Type:" : "Lloji:", + "Version:" : "Versioni: ", + "Size:" : "Madhësia:", + "Available" : "i disponueshëm", + "Files" : "Skedarë", + "Status" : "Statusi", + "Started" : "Filloi", + "Duration" : "Kohëzgjatja", + "Details" : "Detajet", + "Total" : "Total", + "Authentication" : "Mirëfilltësim", + "Hostname" : "Strehëemër", + "Disabled" : "I/E çaktivizuar", + "seconds" : "sekonda", + "Yes" : "Po", + "PHP extensions" : "Zgjerimet e PHP", + "PHP" : "PHP", + "Version" : "Versioni", + "Upload max size:" : "Ngarkoni madhësinë maksimale: ", + "Shares" : "Shpërndarje", + "Users:" : "Përdoruesit:", + "Warning" : "Kujdes", + "Temperature" : "Temperatura", + "Copied!" : "I kopjuar!", + "Not supported!" : "Nuk mbështetet!", + "Press ⌘-C to copy." : "Shtyp ⌘-C për të kopjuar.", + "Press Ctrl-C to copy." : "Shtyp Ctrl-C për të kopjuar", + "Files:" : "Skedarët: ", "External monitoring tool" : "Mjet i kontrollit të jashtëm", "Copy" : "Kopjo" },"pluralForm" :"nplurals=2; plural=(n != 1);" diff --git a/l10n/sr.js b/l10n/sr.js index f9b551d3..d0bec024 100644 --- a/l10n/sr.js +++ b/l10n/sr.js @@ -1,73 +1,78 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Информације о процесору нису доступне", - "CPU Usage:" : "Искоришћење процесора:", - "Load average: {percentage} % ({load}) last minute" : "Просечно оптерећење: {percentage} % ({load}) у последњем минуту", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) у последњем минуту\n{last5MinutesPercentage} % ({last5Minutes}) последњих 5 минута\n{last15MinutesPercentage} % ({last15Minutes}) последњих 15 минута", - "RAM Usage:" : "Искоришћење меморије:", - "SWAP Usage:" : "Искоришћење SWAP простора:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Укупно: {memTotalBytes}/Тренутна употреба: {memUsageBytes}", - "RAM info not available" : "Нису доступни подаци о RAM меморији", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Укупно: {swapTotalBytes}/Тренутна употреба: {swapUsageBytes}", - "SWAP info not available" : "Нису доступни подаци о SWAP меморији", - "Copied!" : "Копирано!", - "Not supported!" : "Није подржано! ", - "Press ⌘-C to copy." : "Притисните ⌘-C за копирање.", - "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", "System" : "Систем", + "Unknown" : "Непознато", "Monitoring" : "Праћење система", "Monitoring app with useful server information" : "Апликација праћења система са корисним серверским информацијама", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Даје корисне информације о серверу, као што су оптерећење процесора, употреба RAM-а, употреба диска, број корисника, итд.", - "Operating System:" : "Оперативни систем:", - "CPU:" : "CPU:", - "threads" : "низови", - "Memory:" : "Меморија:", - "Server time:" : "Време сервера:", - "Uptime:" : "Време од стартовања система:", - "Temperature" : "Температура", + "Active users" : "Активних корисника", + "Last hour" : "Прошлог сата", + "Last 24 Hours" : "Последња 24 сата", + "Last 7 Days" : "Последњих 7 дана", + "Last 30 Days" : "Последњих 30 дана", + "Webcron" : "Webcron", + "Background jobs" : "Послови у позадини", + "Mode" : "Режим", + "Never" : "Никад", "Load" : "Оптерећење", - "Memory" : "Меморија", + "CPU info not available" : "Информације о процесору нису доступне", + "Current usage" : "Тренутна употреба", + "Threads" : "Нити", + "Load average" : "Просечно оптерећење", + "Database" : "База података", + "Type:" : "Тип:", + "Version:" : "Верзија:", + "Size:" : "Величина:", + "Used" : "Искоришћено", + "Available" : "Доступно", "Disk" : "Диск", + "Files" : "Фајлови", + "Storages" : "Складишта", "Mount:" : "Монтирано:", "Filesystem:" : "Фајл систем:", - "Size:" : "Величина:", "Available:" : "Доступно:", "Used:" : "Искоришћено:", - "Files:" : "Фајлова:", - "Storages:" : "Складишта:", - "Free Space:" : "Слободно место:", + "Status" : "Стање", + "Started" : "Започет", + "Duration" : "Трајање", + "Job" : "Посао", + "When" : "Када", + "Details" : "Детаљи", + "Succeeded" : "Успело", + "Failed" : "Није успело", + "Running" : "Трчање", + "Memory" : "Меморија", + "RAM info not available" : "Нису доступни подаци о RAM меморији", + "Total" : "Укупно", + "Configuration" : "Конфигурација", + "Output in JSON" : "Излаз у JSON", + "Skip server update" : "Прескочи ажурирање сервера", + "Authentication" : "Провера идентитета", "Network" : "Мрежа", - "Hostname:" : "Име хоста:", - "Gateway:" : "Мрежни пролаз:", + "Hostname" : "Име домаћина", + "Gateway" : "Мрежни пролаз", + "DNS" : "DNS", "Status:" : "Статус:", "Speed:" : "Брзина:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активних корисника", - "Last hour" : "Прошлог сата", - "%s%% of all users" : "%s%% од свих корисника", - "Last 24 Hours" : "Последња 24 сата", - "Last 7 Days" : "Последњих 7 дана", - "Last 30 Days" : "Последњих 30 дана", - "Shares" : "Дељења", - "Users:" : "Корисника:", - "Groups:" : "Групе:", - "Links:" : "Линкови:", - "Emails:" : "И-мејлови:", - "Federated sent:" : "Послатих здружено:", - "Federated received:" : "Примљено здружено:", - "Talk conversations:" : "Talk разговори:", + "Keys" : "Кључеви", + "Disabled" : "Искључено", + "seconds" : "секунди", + "Yes" : "Да", + "No" : "Не", + "PHP extensions" : "PHP екстензије", + "Extension" : "Екстензија", + "Unable to list extensions" : "Не могу да се прикажу проширења", "PHP" : "PHP", - "Version:" : "Верзија:", - "Memory limit:" : "Ограничење меморије:", + "Version" : "Верзија", + "Memory limit" : "Ограничење меморије", "Max execution time:" : "Максимално време извршавања:", "Upload max size:" : "Максимална величина отпремања:", - "OPcache Revalidate Frequency:" : "Учесталост OPcache ревалидације:", "Extensions:" : "Проширења:", - "Unable to list extensions" : "Не могу да се прикажу проширења", "Show phpinfo" : "Прикажи phpinfo", "FPM worker pool" : "Резервоар FPM радника", "Pool name:" : "Име резервоара:", @@ -82,16 +87,51 @@ OC.L10N.register( "Max listen queue:" : "Максимални ред слушања:", "Max active processes:" : "Максимално активних процеса:", "Max children reached:" : "Достигнуто максимално деце:", - "Database" : "База података", - "Type:" : "Тип:", + "CPU" : "Процесор", + "Resource usage" : "Употреба ресурса", + "Shares" : "Дељења", + "Users:" : "Корисника:", + "Groups:" : "Групе:", + "Links:" : "Линкови:", + "Emails:" : "И-мејлови:", + "Federated sent:" : "Послатих здружено:", + "Federated received:" : "Примљено здружено:", + "Talk conversations:" : "Talk разговори:", + "Average" : "Просечно", + "Warning" : "Упозорење", + "Operating System:" : "Оперативни систем:", + "CPU:" : "CPU:", + "Server time:" : "Време сервера:", + "Uptime:" : "Време од стартовања система:", + "Temperature" : "Температура", + "CPU Usage:" : "Искоришћење процесора:", + "Load average: {percentage} % ({load}) last minute" : "Просечно оптерећење: {percentage} % ({load}) у последњем минуту", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) у последњем минуту\n{last5MinutesPercentage} % ({last5Minutes}) последњих 5 минута\n{last15MinutesPercentage} % ({last15Minutes}) последњих 15 минута", + "RAM Usage:" : "Искоришћење меморије:", + "SWAP Usage:" : "Искоришћење SWAP простора:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Укупно: {memTotalBytes}/Тренутна употреба: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Укупно: {swapTotalBytes}/Тренутна употреба: {swapUsageBytes}", + "SWAP info not available" : "Нису доступни подаци о SWAP меморији", + "Copied!" : "Копирано!", + "Not supported!" : "Није подржано! ", + "Press ⌘-C to copy." : "Притисните ⌘-C за копирање.", + "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", + "threads" : "низови", + "Memory:" : "Меморија:", + "Files:" : "Фајлова:", + "Storages:" : "Складишта:", + "Free Space:" : "Слободно место:", + "Hostname:" : "Име хоста:", + "Gateway:" : "Мрежни пролаз:", + "%s%% of all users" : "%s%% од свих корисника", + "Memory limit:" : "Ограничење меморије:", + "OPcache Revalidate Frequency:" : "Учесталост OPcache ревалидације:", "External monitoring tool" : "Спољни алати за праћење система", "Use this end point to connect an external monitoring tool:" : "Употребите следећу крајњу тачку да повежете спољни алат за праћење:", "Copy" : "Копирај", - "Output in JSON" : "Излаз у JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Прескочи одељак са апликацијама (укључивање одељка са апликацијама ће да пошаље спољни захтев у продавницу апликација)", - "Skip server update" : "Прескочи ажурирање сервера", "To use an access token, please generate one then set it using the following command:" : "Да бисте користили жетон за приступ, молимо вас да га генеришете, па поставите следећом командом:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затим проследите жетон „NC-Token” заглављем када вршите упит на горњу URL адресу.", - "Unknown Processor" : "Непознати процесор" + "DNS:" : "DNS:" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr.json b/l10n/sr.json index b5c00e89..fcba2eba 100644 --- a/l10n/sr.json +++ b/l10n/sr.json @@ -1,71 +1,76 @@ { "translations": { - "CPU info not available" : "Информације о процесору нису доступне", - "CPU Usage:" : "Искоришћење процесора:", - "Load average: {percentage} % ({load}) last minute" : "Просечно оптерећење: {percentage} % ({load}) у последњем минуту", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) у последњем минуту\n{last5MinutesPercentage} % ({last5Minutes}) последњих 5 минута\n{last15MinutesPercentage} % ({last15Minutes}) последњих 15 минута", - "RAM Usage:" : "Искоришћење меморије:", - "SWAP Usage:" : "Искоришћење SWAP простора:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Укупно: {memTotalBytes}/Тренутна употреба: {memUsageBytes}", - "RAM info not available" : "Нису доступни подаци о RAM меморији", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Укупно: {swapTotalBytes}/Тренутна употреба: {swapUsageBytes}", - "SWAP info not available" : "Нису доступни подаци о SWAP меморији", - "Copied!" : "Копирано!", - "Not supported!" : "Није подржано! ", - "Press ⌘-C to copy." : "Притисните ⌘-C за копирање.", - "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", "System" : "Систем", + "Unknown" : "Непознато", "Monitoring" : "Праћење система", "Monitoring app with useful server information" : "Апликација праћења система са корисним серверским информацијама", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Даје корисне информације о серверу, као што су оптерећење процесора, употреба RAM-а, употреба диска, број корисника, итд.", - "Operating System:" : "Оперативни систем:", - "CPU:" : "CPU:", - "threads" : "низови", - "Memory:" : "Меморија:", - "Server time:" : "Време сервера:", - "Uptime:" : "Време од стартовања система:", - "Temperature" : "Температура", + "Active users" : "Активних корисника", + "Last hour" : "Прошлог сата", + "Last 24 Hours" : "Последња 24 сата", + "Last 7 Days" : "Последњих 7 дана", + "Last 30 Days" : "Последњих 30 дана", + "Webcron" : "Webcron", + "Background jobs" : "Послови у позадини", + "Mode" : "Режим", + "Never" : "Никад", "Load" : "Оптерећење", - "Memory" : "Меморија", + "CPU info not available" : "Информације о процесору нису доступне", + "Current usage" : "Тренутна употреба", + "Threads" : "Нити", + "Load average" : "Просечно оптерећење", + "Database" : "База података", + "Type:" : "Тип:", + "Version:" : "Верзија:", + "Size:" : "Величина:", + "Used" : "Искоришћено", + "Available" : "Доступно", "Disk" : "Диск", + "Files" : "Фајлови", + "Storages" : "Складишта", "Mount:" : "Монтирано:", "Filesystem:" : "Фајл систем:", - "Size:" : "Величина:", "Available:" : "Доступно:", "Used:" : "Искоришћено:", - "Files:" : "Фајлова:", - "Storages:" : "Складишта:", - "Free Space:" : "Слободно место:", + "Status" : "Стање", + "Started" : "Започет", + "Duration" : "Трајање", + "Job" : "Посао", + "When" : "Када", + "Details" : "Детаљи", + "Succeeded" : "Успело", + "Failed" : "Није успело", + "Running" : "Трчање", + "Memory" : "Меморија", + "RAM info not available" : "Нису доступни подаци о RAM меморији", + "Total" : "Укупно", + "Configuration" : "Конфигурација", + "Output in JSON" : "Излаз у JSON", + "Skip server update" : "Прескочи ажурирање сервера", + "Authentication" : "Провера идентитета", "Network" : "Мрежа", - "Hostname:" : "Име хоста:", - "Gateway:" : "Мрежни пролаз:", + "Hostname" : "Име домаћина", + "Gateway" : "Мрежни пролаз", + "DNS" : "DNS", "Status:" : "Статус:", "Speed:" : "Брзина:", "Duplex:" : "Дуплекс:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активних корисника", - "Last hour" : "Прошлог сата", - "%s%% of all users" : "%s%% од свих корисника", - "Last 24 Hours" : "Последња 24 сата", - "Last 7 Days" : "Последњих 7 дана", - "Last 30 Days" : "Последњих 30 дана", - "Shares" : "Дељења", - "Users:" : "Корисника:", - "Groups:" : "Групе:", - "Links:" : "Линкови:", - "Emails:" : "И-мејлови:", - "Federated sent:" : "Послатих здружено:", - "Federated received:" : "Примљено здружено:", - "Talk conversations:" : "Talk разговори:", + "Keys" : "Кључеви", + "Disabled" : "Искључено", + "seconds" : "секунди", + "Yes" : "Да", + "No" : "Не", + "PHP extensions" : "PHP екстензије", + "Extension" : "Екстензија", + "Unable to list extensions" : "Не могу да се прикажу проширења", "PHP" : "PHP", - "Version:" : "Верзија:", - "Memory limit:" : "Ограничење меморије:", + "Version" : "Верзија", + "Memory limit" : "Ограничење меморије", "Max execution time:" : "Максимално време извршавања:", "Upload max size:" : "Максимална величина отпремања:", - "OPcache Revalidate Frequency:" : "Учесталост OPcache ревалидације:", "Extensions:" : "Проширења:", - "Unable to list extensions" : "Не могу да се прикажу проширења", "Show phpinfo" : "Прикажи phpinfo", "FPM worker pool" : "Резервоар FPM радника", "Pool name:" : "Име резервоара:", @@ -80,16 +85,51 @@ "Max listen queue:" : "Максимални ред слушања:", "Max active processes:" : "Максимално активних процеса:", "Max children reached:" : "Достигнуто максимално деце:", - "Database" : "База података", - "Type:" : "Тип:", + "CPU" : "Процесор", + "Resource usage" : "Употреба ресурса", + "Shares" : "Дељења", + "Users:" : "Корисника:", + "Groups:" : "Групе:", + "Links:" : "Линкови:", + "Emails:" : "И-мејлови:", + "Federated sent:" : "Послатих здружено:", + "Federated received:" : "Примљено здружено:", + "Talk conversations:" : "Talk разговори:", + "Average" : "Просечно", + "Warning" : "Упозорење", + "Operating System:" : "Оперативни систем:", + "CPU:" : "CPU:", + "Server time:" : "Време сервера:", + "Uptime:" : "Време од стартовања система:", + "Temperature" : "Температура", + "CPU Usage:" : "Искоришћење процесора:", + "Load average: {percentage} % ({load}) last minute" : "Просечно оптерећење: {percentage} % ({load}) у последњем минуту", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) у последњем минуту\n{last5MinutesPercentage} % ({last5Minutes}) последњих 5 минута\n{last15MinutesPercentage} % ({last15Minutes}) последњих 15 минута", + "RAM Usage:" : "Искоришћење меморије:", + "SWAP Usage:" : "Искоришћење SWAP простора:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Укупно: {memTotalBytes}/Тренутна употреба: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Укупно: {swapTotalBytes}/Тренутна употреба: {swapUsageBytes}", + "SWAP info not available" : "Нису доступни подаци о SWAP меморији", + "Copied!" : "Копирано!", + "Not supported!" : "Није подржано! ", + "Press ⌘-C to copy." : "Притисните ⌘-C за копирање.", + "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", + "threads" : "низови", + "Memory:" : "Меморија:", + "Files:" : "Фајлова:", + "Storages:" : "Складишта:", + "Free Space:" : "Слободно место:", + "Hostname:" : "Име хоста:", + "Gateway:" : "Мрежни пролаз:", + "%s%% of all users" : "%s%% од свих корисника", + "Memory limit:" : "Ограничење меморије:", + "OPcache Revalidate Frequency:" : "Учесталост OPcache ревалидације:", "External monitoring tool" : "Спољни алати за праћење система", "Use this end point to connect an external monitoring tool:" : "Употребите следећу крајњу тачку да повежете спољни алат за праћење:", "Copy" : "Копирај", - "Output in JSON" : "Излаз у JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Прескочи одељак са апликацијама (укључивање одељка са апликацијама ће да пошаље спољни захтев у продавницу апликација)", - "Skip server update" : "Прескочи ажурирање сервера", "To use an access token, please generate one then set it using the following command:" : "Да бисте користили жетон за приступ, молимо вас да га генеришете, па поставите следећом командом:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затим проследите жетон „NC-Token” заглављем када вршите упит на горњу URL адресу.", - "Unknown Processor" : "Непознати процесор" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/sr@latin.js b/l10n/sr@latin.js index 8faafb27..eb59b7d1 100644 --- a/l10n/sr@latin.js +++ b/l10n/sr@latin.js @@ -1,12 +1,20 @@ OC.L10N.register( "serverinfo", { + "Never" : "Nikad", + "Type:" : "Tip:", + "Size:" : "Veličina:", + "Files" : "Fajlovi", + "Details" : "Detalji", + "Failed" : "Nije uspelo", + "Yes" : "Da", + "No" : "Ne", + "Version" : "Verzija", + "Warning" : "Upozorenje", "Copied!" : "Копирано!", "Not supported!" : "Није подржано!", "Press ⌘-C to copy." : "Притисни ⌘-C за копирање.", "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", - "Size:" : "Veličina:", - "Type:" : "Tip:", "Copy" : "Kopiraj" }, "nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"); diff --git a/l10n/sr@latin.json b/l10n/sr@latin.json index 2e083f17..4b6240de 100644 --- a/l10n/sr@latin.json +++ b/l10n/sr@latin.json @@ -1,10 +1,18 @@ { "translations": { + "Never" : "Nikad", + "Type:" : "Tip:", + "Size:" : "Veličina:", + "Files" : "Fajlovi", + "Details" : "Detalji", + "Failed" : "Nije uspelo", + "Yes" : "Da", + "No" : "Ne", + "Version" : "Verzija", + "Warning" : "Upozorenje", "Copied!" : "Копирано!", "Not supported!" : "Није подржано!", "Press ⌘-C to copy." : "Притисни ⌘-C за копирање.", "Press Ctrl-C to copy." : "Притисни Ctrl-C за копирање.", - "Size:" : "Veličina:", - "Type:" : "Tip:", "Copy" : "Kopiraj" },"pluralForm" :"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);" } \ No newline at end of file diff --git a/l10n/sv.js b/l10n/sv.js index 35621745..700281b6 100644 --- a/l10n/sv.js +++ b/l10n/sv.js @@ -1,74 +1,131 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU-info inte tillgänglig", - "CPU Usage:" : "CPU-användning:", - "Load average: {percentage} % ({load}) last minute" : "Genomsnittlig belastning: {percentage} % ({load}) senaste minuten", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) senaste minuten\n{last5MinutesPercentage} % ({last5Minutes}) senaste 5 minuterna\n{last15MinutesPercentage} % ({last15Minutes}) senaste 15 minuterna", - "RAM Usage:" : "RAM-användning:", - "SWAP Usage:" : "SWAP-användning:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totalt: {memTotalBytes}/Nuvarande användning: {memUsageBytes}", - "RAM info not available" : "RAM info inte tillgängligt", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totalt: {swapTotalBytes}/Nuvarande användning: {swapUsageBytes}", - "SWAP info not available" : "SWAP info inte tillgängligt", - "Copied!" : "Kopierad!", - "Not supported!" : "Stöds inte!", - "Press ⌘-C to copy." : "Tryck ⌘-C för att kopiera.", - "Press Ctrl-C to copy." : "Tryck Ctrl-C för att kopiera.", "System" : "System", + "Unknown" : "Okänd", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dagar, %2$d timmar, %3$d minuter, %4$d sekunder", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d timmar, %2$d minuter, %3$d sekunder", "Monitoring" : "Övervakning", - "Monitoring app with useful server information" : "Övervaknings-app med användbar serverinformation", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Ger användbar serverinformation, såsom CPU belastning, RAM-användning, diskanvändning, antal användare, m.m.", - "Operating System:" : "Operativsystem:", - "CPU:" : "CPU:", - "threads" : "trådar", - "Memory:" : "Minne:", - "Server time:" : "Servertid:", - "Uptime:" : "Upptid:", - "Temperature" : "Temperatur", - "Load" : "Last", - "Memory" : "Minne", - "Disk" : "Lagring", - "Mount:" : "Montering:", - "Filesystem:" : "Filsystem:", + "Monitoring app with useful server information" : "Övervakningsapp med användbar serverinformation", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Ger användbar serverinformation, till exempel processorbelastning, RAM-användning, diskanvändning och antal användare.", + "{0}% of all users" : "{0}% av alla användare", + "Active users" : "Aktiva användare", + "Last hour" : "Senaste timmen", + "Last 24 Hours" : "Senaste 24 timmarna", + "Last 7 Days" : "Senaste 7 dagarna", + "Last 30 Days" : "Senaste 30 dagarna", + "System cron" : "Systemcron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (rekommenderas inte)", + "Background jobs" : "Bakgrundsjobb", + "Mode" : "Läge", + "Last run" : "Senast körd", + "Never" : "Aldrig", + "Latest runs" : "Senaste körningarna", + "No background job has run yet." : "Inget bakgrundsjobb har körts ännu.", + "Slowest jobs" : "Långsammaste jobben", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Statistik över långsamma jobb är inte tillgänglig ännu. Den samlas in av ett bakgrundsjobb och visas efter nästa körning.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Senaste felen (senaste %n dagen)","Senaste felen (senaste %n dagarna)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Inget bakgrundsjobb misslyckades under den senaste %n dagen.","Inget bakgrundsjobb misslyckades under de senaste %n dagarna."], + "Load" : "Belastning", + "CPU info not available" : "CPU-information är inte tillgänglig", + "Current usage" : "Nuvarande användning", + "Threads" : "Trådar", + "Load average" : "Genomsnittsanvändning", + "Database" : "Databas", + "Type:" : "Typ:", + "Version:" : "Version:", "Size:" : "Storlek:", + "{used} of {total} used" : "{used} av {total} används", + "Used" : "Använt", + "Available" : "Tillgänglig", + "Disk" : "Disk", + "Files" : "Filer", + "Storages" : "Lagring", + "Free space" : "Ledigt utrymme", + "Mount:" : "Monteringspunkt:", + "Filesystem:" : "Filsystem:", "Available:" : "Tillgängligt:", "Used:" : "Använt:", - "Files:" : "Filer:", - "Storages:" : "Lagring:", - "Free Space:" : "Ledigt utrymme:", + "Class" : "Klass", + "Status" : "Status", + "Started" : "Påbörjat", + "Duration" : "Varaktighet", + "Peak memory" : "Högsta minnesanvändning", + "Run ID" : "Körnings-ID", + "Server ID" : "Server-ID", + "Process ID" : "Process-ID", + "Details about {job} from {time}" : "Detaljer om {job} från {time}", + "Job" : "Jobb", + "When" : "När", + "Details" : "Information", + "Succeeded" : "Slutförd", + "Failed" : "Misslyckad", + "Crashed" : "Kraschade", + "Running" : "Pågår", + "RAM usage" : "RAM-användning", + "Swap usage" : "Växlingsutrymmesanvändning", + "Memory" : "Minne", + "RAM info not available" : "RAM-information är inte tillgänglig", + "Total" : "Totalt", + "Swap used" : "Använt växlingsutrymme", + "External monitoring API" : "API för extern övervakning", + "Endpoint URL" : "Slutpunkts-URL", + "Configuration" : "Konfiguration", + "Output in JSON" : "Utdata i JSON", + "Skip apps section" : "Hoppa över appavsnittet", + "Including the apps section sends an external request to the app store" : "Att inkludera appavsnittet skickar en extern begäran till appbutiken", + "Skip server update" : "Hoppa över serveruppdatering", + "Authentication" : "Autentisering", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Den här token genererades i webbläsaren och lagras inte förrän du kör kommandot nedan. Skicka den i rubriken {header} med varje begäran.", + "Command to store the token" : "Kommando för att lagra token", + "Request header" : "Begäranderubrik", "Network" : "Nätverk", - "Hostname:" : "Värdnamn:", - "Gateway:" : "Gateway:", + "Hostname" : "Värdnamn", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Hastighet:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktiva användare", - "Last hour" : "Senaste timmen", - "%s%% of all users" : "%s%% av alla användare", - "Last 24 Hours" : "Senaste 24 timmarna", - "Last 7 Days" : "Senaste 7 dagarna", - "Last 30 Days" : "Senaste 30 dagarna", - "Shares" : "Delningar", - "Users:" : "Användare:", - "Groups:" : "Grupper:", - "Links:" : "Länkar:", - "Emails:" : "E-post:", - "Federated sent:" : "Federerat skickat:", - "Federated received:" : "Federerat mottaget:", - "Talk conversations:" : "Talk-konversationer:", + "OPcache is not loaded." : "OPcache är inte inläst.", + "OPcache is disabled." : "OPcache är inaktiverad.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud har inte behörighet att läsa OPcache-statusen (”opcache.restrict_api”).", + "OPcache status is unavailable." : "OPcache-status är inte tillgänglig.", + "{used} of {total}" : "{used} av {total}", + "Interned strings" : "Internade strängar", + "Keys" : "Nycklar", + "{used} of {max}" : "{used} av {max}", + "Disabled" : "Inaktiverad", + "Enabled, {used} of {total} buffer used" : "Aktiverad, {used} av {total} buffert används", + "OPcache" : "OPcache", + "Hit rate" : "Träfffrekvens", + "Cached scripts" : "Cachade skript", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Dessa siffror beskriver PHP-processen som hanterar den här begäran. Andra FPM-pooler eller CLI har sin egen OPcache.", + "Revalidate frequency:" : "Valideringsfrekvens:", + "seconds" : "sekunder", + "Validate timestamps:" : "Validera tidsstämplar:", + "Yes" : "Ja", + "No" : "Nej", + "OOM restarts:" : "OOM-omstarter:", + "Last restart:" : "Senaste omstart:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP-tillägg", + "Extension" : "Filändelse", + "Unable to list extensions" : "Det går inte att lista tillägg", + "{count} loaded" : "{count} inlästa", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Minnesgräns:", - "Max execution time:" : "Max körningstid:", + "Version" : "Version", + "Memory limit" : "Minnesgräns", + "Max execution time:" : "Maximal körningstid:", "Upload max size:" : "Största uppladdningsstorlek:", - "OPcache Revalidate Frequency:" : "Frekvens för återvalidering av OPcache:", + "Post max size:" : "Största POST-storlek:", + "SAPI:" : "SAPI:", "Extensions:" : "Tillägg:", - "Unable to list extensions" : "Det går inte att lista tillägg", - "Show phpinfo" : "Visa phpinfo", + "PHP Info:" : "PHP-information:", + "Show phpinfo" : "Visa phpinfo()", "FPM worker pool" : "FPM-arbetspool", "Pool name:" : "Poolnamn:", "Pool type:" : "Pooltyp:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "Maximal lyssningskö:", "Max active processes:" : "Maximalt antal aktiva processer:", "Max children reached:" : "Maximalt antal underprocesser uppnått:", - "Database" : "Databas", - "Type:" : "Typ:", + "CPU" : "CPU", + "Swap" : "Växlingsutrymme", + "Resource usage" : "Resursanvändning", + "Shares" : "Delningar", + "Users:" : "Användare:", + "Groups:" : "Grupper:", + "Links:" : "Länkar:", + "Emails:" : "E-post:", + "Federated sent:" : "Federerade delningar skickade:", + "Federated received:" : "Federerade delningar mottagna:", + "Talk conversations:" : "Talk-konversationer:", + "Runs" : "Körningar", + "Average" : "Genomsnitt", + "Longest" : "Längsta", + "Warning" : "Varning", + "Critical" : "Kritisk", + "Operating System:" : "Operativsystem:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} trådar)", + "Server time:" : "Servertid:", + "Uptime:" : "Upptid:", + "Temperature" : "Temperatur", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "CPU-användning:", + "Load average: {percentage} % ({load}) last minute" : "Genomsnittlig belastning: {percentage} % ({load}) senaste minuten", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) senaste minuten\n{last5MinutesPercentage} % ({last5Minutes}) senaste 5 minuterna\n{last15MinutesPercentage} % ({last15Minutes}) senaste 15 minuterna", + "RAM Usage:" : "RAM-användning:", + "SWAP Usage:" : "SWAP-användning:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: totalt: {memTotalBytes}/aktuell användning: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Växlingsutrymme: totalt: {swapTotalBytes}/aktuell användning: {swapUsageBytes}", + "SWAP info not available" : "Växlingsinformation är inte tillgänglig", + "Copied!" : "Kopierat!", + "Not supported!" : "Stöds inte!", + "Press ⌘-C to copy." : "Tryck ⌘-C för att kopiera.", + "Press Ctrl-C to copy." : "Tryck Ctrl-C för att kopiera.", + "threads" : "trådar", + "Memory:" : "Minne:", + "Files:" : "Filer:", + "Storages:" : "Lagringsutrymmen:", + "Free Space:" : "Ledigt utrymme:", + "Hostname:" : "Värdnamn:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% av alla användare", + "Memory limit:" : "Minnesgräns:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frekvens för återvalidering av OPcache:", "External monitoring tool" : "Externt övervakningsverktyg", "Use this end point to connect an external monitoring tool:" : "Använd denna slutpunkt för att ansluta ett externt övervakningsverktyg:", "Copy" : "Kopiera", - "Output in JSON" : "Utdata i JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Hoppa över appsektionen (inkludera appsektionen skickar en extern begäran till appbutiken)", - "Skip server update" : "Hoppa över serveruppdatering", - "To use an access token, please generate one then set it using the following command:" : "För att använda en access-token, generera en och ställ in den med följande kommando:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Skicka sedan token med \"NC-Token\"-header när du frågar efter ovanstående URL.", - "Unknown Processor" : "Okänd processor" + "To use an access token, please generate one then set it using the following command:" : "Generera en åtkomsttoken och ange den sedan med följande kommando:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Skicka sedan token i HTTP-rubriken \"NC-Token\" när URL:en ovan anropas.", + "%1$s (%2$d threads)" : "%1$s (%2$d trådar)", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sv.json b/l10n/sv.json index 47d98cc5..decf0073 100644 --- a/l10n/sv.json +++ b/l10n/sv.json @@ -1,72 +1,129 @@ { "translations": { - "CPU info not available" : "CPU-info inte tillgänglig", - "CPU Usage:" : "CPU-användning:", - "Load average: {percentage} % ({load}) last minute" : "Genomsnittlig belastning: {percentage} % ({load}) senaste minuten", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) senaste minuten\n{last5MinutesPercentage} % ({last5Minutes}) senaste 5 minuterna\n{last15MinutesPercentage} % ({last15Minutes}) senaste 15 minuterna", - "RAM Usage:" : "RAM-användning:", - "SWAP Usage:" : "SWAP-användning:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Totalt: {memTotalBytes}/Nuvarande användning: {memUsageBytes}", - "RAM info not available" : "RAM info inte tillgängligt", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totalt: {swapTotalBytes}/Nuvarande användning: {swapUsageBytes}", - "SWAP info not available" : "SWAP info inte tillgängligt", - "Copied!" : "Kopierad!", - "Not supported!" : "Stöds inte!", - "Press ⌘-C to copy." : "Tryck ⌘-C för att kopiera.", - "Press Ctrl-C to copy." : "Tryck Ctrl-C för att kopiera.", "System" : "System", + "Unknown" : "Okänd", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d dagar, %2$d timmar, %3$d minuter, %4$d sekunder", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d timmar, %2$d minuter, %3$d sekunder", "Monitoring" : "Övervakning", - "Monitoring app with useful server information" : "Övervaknings-app med användbar serverinformation", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Ger användbar serverinformation, såsom CPU belastning, RAM-användning, diskanvändning, antal användare, m.m.", - "Operating System:" : "Operativsystem:", - "CPU:" : "CPU:", - "threads" : "trådar", - "Memory:" : "Minne:", - "Server time:" : "Servertid:", - "Uptime:" : "Upptid:", - "Temperature" : "Temperatur", - "Load" : "Last", - "Memory" : "Minne", - "Disk" : "Lagring", - "Mount:" : "Montering:", - "Filesystem:" : "Filsystem:", + "Monitoring app with useful server information" : "Övervakningsapp med användbar serverinformation", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Ger användbar serverinformation, till exempel processorbelastning, RAM-användning, diskanvändning och antal användare.", + "{0}% of all users" : "{0}% av alla användare", + "Active users" : "Aktiva användare", + "Last hour" : "Senaste timmen", + "Last 24 Hours" : "Senaste 24 timmarna", + "Last 7 Days" : "Senaste 7 dagarna", + "Last 30 Days" : "Senaste 30 dagarna", + "System cron" : "Systemcron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (rekommenderas inte)", + "Background jobs" : "Bakgrundsjobb", + "Mode" : "Läge", + "Last run" : "Senast körd", + "Never" : "Aldrig", + "Latest runs" : "Senaste körningarna", + "No background job has run yet." : "Inget bakgrundsjobb har körts ännu.", + "Slowest jobs" : "Långsammaste jobben", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Statistik över långsamma jobb är inte tillgänglig ännu. Den samlas in av ett bakgrundsjobb och visas efter nästa körning.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Senaste felen (senaste %n dagen)","Senaste felen (senaste %n dagarna)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Inget bakgrundsjobb misslyckades under den senaste %n dagen.","Inget bakgrundsjobb misslyckades under de senaste %n dagarna."], + "Load" : "Belastning", + "CPU info not available" : "CPU-information är inte tillgänglig", + "Current usage" : "Nuvarande användning", + "Threads" : "Trådar", + "Load average" : "Genomsnittsanvändning", + "Database" : "Databas", + "Type:" : "Typ:", + "Version:" : "Version:", "Size:" : "Storlek:", + "{used} of {total} used" : "{used} av {total} används", + "Used" : "Använt", + "Available" : "Tillgänglig", + "Disk" : "Disk", + "Files" : "Filer", + "Storages" : "Lagring", + "Free space" : "Ledigt utrymme", + "Mount:" : "Monteringspunkt:", + "Filesystem:" : "Filsystem:", "Available:" : "Tillgängligt:", "Used:" : "Använt:", - "Files:" : "Filer:", - "Storages:" : "Lagring:", - "Free Space:" : "Ledigt utrymme:", + "Class" : "Klass", + "Status" : "Status", + "Started" : "Påbörjat", + "Duration" : "Varaktighet", + "Peak memory" : "Högsta minnesanvändning", + "Run ID" : "Körnings-ID", + "Server ID" : "Server-ID", + "Process ID" : "Process-ID", + "Details about {job} from {time}" : "Detaljer om {job} från {time}", + "Job" : "Jobb", + "When" : "När", + "Details" : "Information", + "Succeeded" : "Slutförd", + "Failed" : "Misslyckad", + "Crashed" : "Kraschade", + "Running" : "Pågår", + "RAM usage" : "RAM-användning", + "Swap usage" : "Växlingsutrymmesanvändning", + "Memory" : "Minne", + "RAM info not available" : "RAM-information är inte tillgänglig", + "Total" : "Totalt", + "Swap used" : "Använt växlingsutrymme", + "External monitoring API" : "API för extern övervakning", + "Endpoint URL" : "Slutpunkts-URL", + "Configuration" : "Konfiguration", + "Output in JSON" : "Utdata i JSON", + "Skip apps section" : "Hoppa över appavsnittet", + "Including the apps section sends an external request to the app store" : "Att inkludera appavsnittet skickar en extern begäran till appbutiken", + "Skip server update" : "Hoppa över serveruppdatering", + "Authentication" : "Autentisering", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Den här token genererades i webbläsaren och lagras inte förrän du kör kommandot nedan. Skicka den i rubriken {header} med varje begäran.", + "Command to store the token" : "Kommando för att lagra token", + "Request header" : "Begäranderubrik", "Network" : "Nätverk", - "Hostname:" : "Värdnamn:", - "Gateway:" : "Gateway:", + "Hostname" : "Värdnamn", + "Gateway" : "Gateway", + "DNS" : "DNS", "Status:" : "Status:", "Speed:" : "Hastighet:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Aktiva användare", - "Last hour" : "Senaste timmen", - "%s%% of all users" : "%s%% av alla användare", - "Last 24 Hours" : "Senaste 24 timmarna", - "Last 7 Days" : "Senaste 7 dagarna", - "Last 30 Days" : "Senaste 30 dagarna", - "Shares" : "Delningar", - "Users:" : "Användare:", - "Groups:" : "Grupper:", - "Links:" : "Länkar:", - "Emails:" : "E-post:", - "Federated sent:" : "Federerat skickat:", - "Federated received:" : "Federerat mottaget:", - "Talk conversations:" : "Talk-konversationer:", + "OPcache is not loaded." : "OPcache är inte inläst.", + "OPcache is disabled." : "OPcache är inaktiverad.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud har inte behörighet att läsa OPcache-statusen (”opcache.restrict_api”).", + "OPcache status is unavailable." : "OPcache-status är inte tillgänglig.", + "{used} of {total}" : "{used} av {total}", + "Interned strings" : "Internade strängar", + "Keys" : "Nycklar", + "{used} of {max}" : "{used} av {max}", + "Disabled" : "Inaktiverad", + "Enabled, {used} of {total} buffer used" : "Aktiverad, {used} av {total} buffert används", + "OPcache" : "OPcache", + "Hit rate" : "Träfffrekvens", + "Cached scripts" : "Cachade skript", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Dessa siffror beskriver PHP-processen som hanterar den här begäran. Andra FPM-pooler eller CLI har sin egen OPcache.", + "Revalidate frequency:" : "Valideringsfrekvens:", + "seconds" : "sekunder", + "Validate timestamps:" : "Validera tidsstämplar:", + "Yes" : "Ja", + "No" : "Nej", + "OOM restarts:" : "OOM-omstarter:", + "Last restart:" : "Senaste omstart:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP-tillägg", + "Extension" : "Filändelse", + "Unable to list extensions" : "Det går inte att lista tillägg", + "{count} loaded" : "{count} inlästa", "PHP" : "PHP", - "Version:" : "Version:", - "Memory limit:" : "Minnesgräns:", - "Max execution time:" : "Max körningstid:", + "Version" : "Version", + "Memory limit" : "Minnesgräns", + "Max execution time:" : "Maximal körningstid:", "Upload max size:" : "Största uppladdningsstorlek:", - "OPcache Revalidate Frequency:" : "Frekvens för återvalidering av OPcache:", + "Post max size:" : "Största POST-storlek:", + "SAPI:" : "SAPI:", "Extensions:" : "Tillägg:", - "Unable to list extensions" : "Det går inte att lista tillägg", - "Show phpinfo" : "Visa phpinfo", + "PHP Info:" : "PHP-information:", + "Show phpinfo" : "Visa phpinfo()", "FPM worker pool" : "FPM-arbetspool", "Pool name:" : "Poolnamn:", "Pool type:" : "Pooltyp:", @@ -80,16 +137,60 @@ "Max listen queue:" : "Maximal lyssningskö:", "Max active processes:" : "Maximalt antal aktiva processer:", "Max children reached:" : "Maximalt antal underprocesser uppnått:", - "Database" : "Databas", - "Type:" : "Typ:", + "CPU" : "CPU", + "Swap" : "Växlingsutrymme", + "Resource usage" : "Resursanvändning", + "Shares" : "Delningar", + "Users:" : "Användare:", + "Groups:" : "Grupper:", + "Links:" : "Länkar:", + "Emails:" : "E-post:", + "Federated sent:" : "Federerade delningar skickade:", + "Federated received:" : "Federerade delningar mottagna:", + "Talk conversations:" : "Talk-konversationer:", + "Runs" : "Körningar", + "Average" : "Genomsnitt", + "Longest" : "Längsta", + "Warning" : "Varning", + "Critical" : "Kritisk", + "Operating System:" : "Operativsystem:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name} ({threads} trådar)", + "Server time:" : "Servertid:", + "Uptime:" : "Upptid:", + "Temperature" : "Temperatur", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "CPU-användning:", + "Load average: {percentage} % ({load}) last minute" : "Genomsnittlig belastning: {percentage} % ({load}) senaste minuten", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) senaste minuten\n{last5MinutesPercentage} % ({last5Minutes}) senaste 5 minuterna\n{last15MinutesPercentage} % ({last15Minutes}) senaste 15 minuterna", + "RAM Usage:" : "RAM-användning:", + "SWAP Usage:" : "SWAP-användning:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: totalt: {memTotalBytes}/aktuell användning: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Växlingsutrymme: totalt: {swapTotalBytes}/aktuell användning: {swapUsageBytes}", + "SWAP info not available" : "Växlingsinformation är inte tillgänglig", + "Copied!" : "Kopierat!", + "Not supported!" : "Stöds inte!", + "Press ⌘-C to copy." : "Tryck ⌘-C för att kopiera.", + "Press Ctrl-C to copy." : "Tryck Ctrl-C för att kopiera.", + "threads" : "trådar", + "Memory:" : "Minne:", + "Files:" : "Filer:", + "Storages:" : "Lagringsutrymmen:", + "Free Space:" : "Ledigt utrymme:", + "Hostname:" : "Värdnamn:", + "Gateway:" : "Gateway:", + "%s%% of all users" : "%s%% av alla användare", + "Memory limit:" : "Minnesgräns:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "Frekvens för återvalidering av OPcache:", "External monitoring tool" : "Externt övervakningsverktyg", "Use this end point to connect an external monitoring tool:" : "Använd denna slutpunkt för att ansluta ett externt övervakningsverktyg:", "Copy" : "Kopiera", - "Output in JSON" : "Utdata i JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Hoppa över appsektionen (inkludera appsektionen skickar en extern begäran till appbutiken)", - "Skip server update" : "Hoppa över serveruppdatering", - "To use an access token, please generate one then set it using the following command:" : "För att använda en access-token, generera en och ställ in den med följande kommando:", - "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Skicka sedan token med \"NC-Token\"-header när du frågar efter ovanstående URL.", - "Unknown Processor" : "Okänd processor" + "To use an access token, please generate one then set it using the following command:" : "Generera en åtkomsttoken och ange den sedan med följande kommando:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Skicka sedan token i HTTP-rubriken \"NC-Token\" när URL:en ovan anropas.", + "%1$s (%2$d threads)" : "%1$s (%2$d trådar)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/sw.js b/l10n/sw.js index 8aabb48b..9d65102a 100644 --- a/l10n/sw.js +++ b/l10n/sw.js @@ -1,11 +1,125 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Copied!", "System" : "Mfumo", - "Network" : "Network", - "Shares" : "Shiriki", + "Unknown" : "Haijulikani", + "Monitoring" : "Ufuatiliaji", + "Monitoring app with useful server information" : "Programu ya ufuatiliaji na habari muhimu ya seva", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hutoa maelezo muhimu ya seva, kama vile upakiaji wa CPU, matumizi ya RAM, matumizi ya diski, idadi ya watumiaji, n.k.", + "Active users" : "Watumiaji wanaofanya kazi", + "Last hour" : "Saa iliyopita", + "Last 24 Hours" : "Masaa 24 yaliyopita", + "Last 7 Days" : "Siku 7 zilizopita", + "Last 30 Days" : "Siku 30 zilizopita ", + "Background jobs" : "Kazi za asili", + "Mode" : "Hali", + "Never" : "Kamwe", + "Load" : "Pakia", + "CPU info not available" : "Maelezo ya CPU hayapatikani", + "Threads" : "Mijadala", "Database" : "Kanzidata", - "Copy" : "Nakili" + "Type:" : "Aina:", + "Version:" : "Toleo:", + "Size:" : "Ukubwa:", + "Available" : "Inayopatikana", + "Disk" : "Diski", + "Files" : "Faili", + "Mount:" : "Mlima", + "Filesystem:" : "Mfumo wa faili:", + "Available:" : "Inayopatikana:", + "Used:" : "Iliyotumika:", + "Status" : "Wadhifa/hadhi/hali", + "Duration" : "Muda", + "When" : "Lini", + "Details" : "Maelezo ya kina", + "Succeeded" : "Imefanikiwa", + "Failed" : "Imeshindwa", + "Running" : "Inafanya kazi", + "Memory" : "Kumbukumbu", + "RAM info not available" : "Maelezo ya RAM hayapatikani", + "Total" : "Jumla", + "Configuration" : "Usanidi", + "Output in JSON" : "Tolezi katika JSON", + "Skip server update" : "Ruka sasisho la seva", + "Authentication" : "Uthibitisho", + "Network" : "Mtandao", + "Hostname" : "Jina la mwenyeji", + "Status:" : "Hali:", + "Speed:" : "Kasi:", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Funguo", + "Disabled" : "Ilizimwa", + "seconds" : "sekunde", + "Yes" : "Ndiyo", + "No" : "Hapana", + "PHP extensions" : "Viendelezi vya PHP", + "Extension" : "Uendelezaji", + "Unable to list extensions" : "Imeshindwa kuorodhesha viendelezi", + "PHP" : "PHP", + "Version" : "Toleo", + "Memory limit" : "Kikomo cha kumbukumbu", + "Max execution time:" : "Muda wa juu zaidi wa utekelezaji:", + "Upload max size:" : "Pakia ukubwa wa juu zaidi:", + "Extensions:" : "Viendelezi:", + "Show phpinfo" : "Onyesha phpinfo", + "FPM worker pool" : "Bwawa la wafanyakazi wa FPM", + "Pool name:" : "Jina la bwawa:", + "Pool type:" : "Aina ya bwawa:", + "Start time:" : "Start time:", + "Accepted connections:" : "Miunganisho inayokubalika:", + "Total processes:" : "Michakato ya jumla:", + "Active processes:" : "Michakato inayotumika:", + "Idle processes:" : "Michakato isiyofanya kazi:", + "Listen queue:" : "Foleni ya kusikiliza:", + "Slow requests:" : "Maombi ya polepole:", + "Max listen queue:" : "Upeo wa foleni ya kusikiliza:", + "Max active processes:" : "Upeo wa michakato inayotumika:", + "Max children reached:" : "Idadi ya juu ya watoto imefikiwa:", + "Shares" : "Shiriki", + "Users:" : "Watumiaji:", + "Groups:" : "Vikundi:", + "Links:" : "Viungo:", + "Emails:" : "Barua pepe:", + "Federated sent:" : "Shirikisho limetumwa:", + "Federated received:" : "Shirikisho lilipokewa:", + "Talk conversations:" : "Mazungumzo ya Talk", + "Average" : "Wastani", + "Warning" : "Onyo", + "Operating System:" : "Mfumo wa Uendeshaji:", + "CPU:" : "CPU:", + "Server time:" : "Muda wa seva:", + "Uptime:" : "Muda wa Kuwasha:", + "Temperature" : "Halijoto", + "CPU Usage:" : "Matumizi ya CPU:", + "Load average: {percentage} % ({load}) last minute" : "Wastani wa upakiaji: {percentage} % ({load}) dakika ya mwisho", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) Dakika ya mwisho\n{last5MinutesPercentage} % ({last5Minutes}) Dakika 5 zilizopita\n{last15MinutesPercentage} % ({last15Minutes}) Dakika 15 zilizopita", + "RAM Usage:" : "Matumizi ya RAM:", + "SWAP Usage:" : "Matumizi ya SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Jumla: {memTotalBytes}/Matumizi ya sasa: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "BADILISHA: Jumla: {swapTotalBytes}/Matumizi ya sasa: {swapUsageBytes}", + "SWAP info not available" : "Maelezo ya SWAP hayapatikani", + "Copied!" : "Imenakiliwa!", + "Not supported!" : "Haitumiki!", + "Press ⌘-C to copy." : "Bonyeza ⌘-C ili kunakili.", + "Press Ctrl-C to copy." : "Bonyeza Ctrl-C ili kunakili.", + "threads" : "nyuzi", + "Memory:" : "Kumbukumbu:", + "Files:" : "Faili:", + "Storages:" : "Hifadhi:", + "Free Space:" : "Nafasi ya Bure:", + "Hostname:" : "Jina la mwenyeji:", + "Gateway:" : "Lango:", + "%s%% of all users" : "%s%% ya watumiaji wote", + "Memory limit:" : "Kikomo cha kumbukumbu:", + "OPcache Revalidate Frequency:" : "OPcache Kurekebisha Masafa:", + "External monitoring tool" : "Chombo cha ufuatiliaji wa nje", + "Use this end point to connect an external monitoring tool:" : "Tumia sehemu hii ya mwisho kuunganisha zana ya ufuatiliaji wa nje:", + "Copy" : "Nakili", + "Skip apps section (including apps section will send an external request to the app store)" : "Ruka sehemu ya programu (pamoja na sehemu ya programu itatuma ombi la nje kwenye duka la programu)", + "To use an access token, please generate one then set it using the following command:" : "Ili kutumia tokeni ya ufikiaji, tafadhali toa moja kisha uiweke kwa kutumia amri ifuatayo:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Kisha pitisha ishara kwa kichwa cha \"NC-Token\" unapouliza URL iliyo hapo juu." }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/sw.json b/l10n/sw.json index f67095b6..5d345062 100644 --- a/l10n/sw.json +++ b/l10n/sw.json @@ -1,9 +1,123 @@ { "translations": { - "Copied!" : "Copied!", "System" : "Mfumo", - "Network" : "Network", - "Shares" : "Shiriki", + "Unknown" : "Haijulikani", + "Monitoring" : "Ufuatiliaji", + "Monitoring app with useful server information" : "Programu ya ufuatiliaji na habari muhimu ya seva", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hutoa maelezo muhimu ya seva, kama vile upakiaji wa CPU, matumizi ya RAM, matumizi ya diski, idadi ya watumiaji, n.k.", + "Active users" : "Watumiaji wanaofanya kazi", + "Last hour" : "Saa iliyopita", + "Last 24 Hours" : "Masaa 24 yaliyopita", + "Last 7 Days" : "Siku 7 zilizopita", + "Last 30 Days" : "Siku 30 zilizopita ", + "Background jobs" : "Kazi za asili", + "Mode" : "Hali", + "Never" : "Kamwe", + "Load" : "Pakia", + "CPU info not available" : "Maelezo ya CPU hayapatikani", + "Threads" : "Mijadala", "Database" : "Kanzidata", - "Copy" : "Nakili" + "Type:" : "Aina:", + "Version:" : "Toleo:", + "Size:" : "Ukubwa:", + "Available" : "Inayopatikana", + "Disk" : "Diski", + "Files" : "Faili", + "Mount:" : "Mlima", + "Filesystem:" : "Mfumo wa faili:", + "Available:" : "Inayopatikana:", + "Used:" : "Iliyotumika:", + "Status" : "Wadhifa/hadhi/hali", + "Duration" : "Muda", + "When" : "Lini", + "Details" : "Maelezo ya kina", + "Succeeded" : "Imefanikiwa", + "Failed" : "Imeshindwa", + "Running" : "Inafanya kazi", + "Memory" : "Kumbukumbu", + "RAM info not available" : "Maelezo ya RAM hayapatikani", + "Total" : "Jumla", + "Configuration" : "Usanidi", + "Output in JSON" : "Tolezi katika JSON", + "Skip server update" : "Ruka sasisho la seva", + "Authentication" : "Uthibitisho", + "Network" : "Mtandao", + "Hostname" : "Jina la mwenyeji", + "Status:" : "Hali:", + "Speed:" : "Kasi:", + "Duplex:" : "Duplex:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Funguo", + "Disabled" : "Ilizimwa", + "seconds" : "sekunde", + "Yes" : "Ndiyo", + "No" : "Hapana", + "PHP extensions" : "Viendelezi vya PHP", + "Extension" : "Uendelezaji", + "Unable to list extensions" : "Imeshindwa kuorodhesha viendelezi", + "PHP" : "PHP", + "Version" : "Toleo", + "Memory limit" : "Kikomo cha kumbukumbu", + "Max execution time:" : "Muda wa juu zaidi wa utekelezaji:", + "Upload max size:" : "Pakia ukubwa wa juu zaidi:", + "Extensions:" : "Viendelezi:", + "Show phpinfo" : "Onyesha phpinfo", + "FPM worker pool" : "Bwawa la wafanyakazi wa FPM", + "Pool name:" : "Jina la bwawa:", + "Pool type:" : "Aina ya bwawa:", + "Start time:" : "Start time:", + "Accepted connections:" : "Miunganisho inayokubalika:", + "Total processes:" : "Michakato ya jumla:", + "Active processes:" : "Michakato inayotumika:", + "Idle processes:" : "Michakato isiyofanya kazi:", + "Listen queue:" : "Foleni ya kusikiliza:", + "Slow requests:" : "Maombi ya polepole:", + "Max listen queue:" : "Upeo wa foleni ya kusikiliza:", + "Max active processes:" : "Upeo wa michakato inayotumika:", + "Max children reached:" : "Idadi ya juu ya watoto imefikiwa:", + "Shares" : "Shiriki", + "Users:" : "Watumiaji:", + "Groups:" : "Vikundi:", + "Links:" : "Viungo:", + "Emails:" : "Barua pepe:", + "Federated sent:" : "Shirikisho limetumwa:", + "Federated received:" : "Shirikisho lilipokewa:", + "Talk conversations:" : "Mazungumzo ya Talk", + "Average" : "Wastani", + "Warning" : "Onyo", + "Operating System:" : "Mfumo wa Uendeshaji:", + "CPU:" : "CPU:", + "Server time:" : "Muda wa seva:", + "Uptime:" : "Muda wa Kuwasha:", + "Temperature" : "Halijoto", + "CPU Usage:" : "Matumizi ya CPU:", + "Load average: {percentage} % ({load}) last minute" : "Wastani wa upakiaji: {percentage} % ({load}) dakika ya mwisho", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) Dakika ya mwisho\n{last5MinutesPercentage} % ({last5Minutes}) Dakika 5 zilizopita\n{last15MinutesPercentage} % ({last15Minutes}) Dakika 15 zilizopita", + "RAM Usage:" : "Matumizi ya RAM:", + "SWAP Usage:" : "Matumizi ya SWAP:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Jumla: {memTotalBytes}/Matumizi ya sasa: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "BADILISHA: Jumla: {swapTotalBytes}/Matumizi ya sasa: {swapUsageBytes}", + "SWAP info not available" : "Maelezo ya SWAP hayapatikani", + "Copied!" : "Imenakiliwa!", + "Not supported!" : "Haitumiki!", + "Press ⌘-C to copy." : "Bonyeza ⌘-C ili kunakili.", + "Press Ctrl-C to copy." : "Bonyeza Ctrl-C ili kunakili.", + "threads" : "nyuzi", + "Memory:" : "Kumbukumbu:", + "Files:" : "Faili:", + "Storages:" : "Hifadhi:", + "Free Space:" : "Nafasi ya Bure:", + "Hostname:" : "Jina la mwenyeji:", + "Gateway:" : "Lango:", + "%s%% of all users" : "%s%% ya watumiaji wote", + "Memory limit:" : "Kikomo cha kumbukumbu:", + "OPcache Revalidate Frequency:" : "OPcache Kurekebisha Masafa:", + "External monitoring tool" : "Chombo cha ufuatiliaji wa nje", + "Use this end point to connect an external monitoring tool:" : "Tumia sehemu hii ya mwisho kuunganisha zana ya ufuatiliaji wa nje:", + "Copy" : "Nakili", + "Skip apps section (including apps section will send an external request to the app store)" : "Ruka sehemu ya programu (pamoja na sehemu ya programu itatuma ombi la nje kwenye duka la programu)", + "To use an access token, please generate one then set it using the following command:" : "Ili kutumia tokeni ya ufikiaji, tafadhali toa moja kisha uiweke kwa kutumia amri ifuatayo:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Kisha pitisha ishara kwa kichwa cha \"NC-Token\" unapouliza URL iliyo hapo juu." },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/th.js b/l10n/th.js index 07e8f575..51e91ecf 100644 --- a/l10n/th.js +++ b/l10n/th.js @@ -1,15 +1,28 @@ OC.L10N.register( "serverinfo", { + "System" : "ระบบ", + "Unknown" : "ไม่ทราบ", + "Active users" : "ผู้ใช้ที่ใช้งานอยู่", + "Mode" : "โหมด", + "Never" : "ไม่เคย", + "Type:" : "ชนิด:", + "Size:" : "ขนาด:", + "Status" : "สถานะ", + "Details" : "รายละเอียด", + "Authentication" : "การตรวจสอบสิทธิ์", + "Hostname" : "ชื่อโฮสต์", + "Disabled" : "ปิดใช้งาน", + "seconds" : "วินาที", + "Yes" : "ใช่", + "No" : "ไม่ตกลง", + "Version" : "รุ่น", + "Shares" : "การแชร์", + "Warning" : "คำเตือน", "Copied!" : "คัดลอกแล้ว!", "Not supported!" : "ไม่สนับสนุน", "Press ⌘-C to copy." : "กด ⌘-C เพื่อคัดลอก", "Press Ctrl-C to copy." : "กด Ctrl-C เพื่อคัดลอก", - "System" : "ระบบ", - "Size:" : "ขนาด:", - "Active users" : "ผู้ใช้ที่ใช้งานอยู่", - "Shares" : "การแชร์", - "Type:" : "ชนิด:", "Copy" : "คัดลอก" }, "nplurals=1; plural=0;"); diff --git a/l10n/th.json b/l10n/th.json index 8934dc5c..b840e4f4 100644 --- a/l10n/th.json +++ b/l10n/th.json @@ -1,13 +1,26 @@ { "translations": { + "System" : "ระบบ", + "Unknown" : "ไม่ทราบ", + "Active users" : "ผู้ใช้ที่ใช้งานอยู่", + "Mode" : "โหมด", + "Never" : "ไม่เคย", + "Type:" : "ชนิด:", + "Size:" : "ขนาด:", + "Status" : "สถานะ", + "Details" : "รายละเอียด", + "Authentication" : "การตรวจสอบสิทธิ์", + "Hostname" : "ชื่อโฮสต์", + "Disabled" : "ปิดใช้งาน", + "seconds" : "วินาที", + "Yes" : "ใช่", + "No" : "ไม่ตกลง", + "Version" : "รุ่น", + "Shares" : "การแชร์", + "Warning" : "คำเตือน", "Copied!" : "คัดลอกแล้ว!", "Not supported!" : "ไม่สนับสนุน", "Press ⌘-C to copy." : "กด ⌘-C เพื่อคัดลอก", "Press Ctrl-C to copy." : "กด Ctrl-C เพื่อคัดลอก", - "System" : "ระบบ", - "Size:" : "ขนาด:", - "Active users" : "ผู้ใช้ที่ใช้งานอยู่", - "Shares" : "การแชร์", - "Type:" : "ชนิด:", "Copy" : "คัดลอก" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/tr.js b/l10n/tr.js index a3986b55..4c789991 100644 --- a/l10n/tr.js +++ b/l10n/tr.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "İşlemci bilgileri alınamadı", - "CPU Usage:" : "İşlemci kullanımı:", - "Load average: {percentage} % ({load}) last minute" : "Ortalama yük: % {percentage} ({load}) son 1 dakika", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "% {lastMinutePercentage} ({lastMinute}) son 1 dakika\n% {last5MinutesPercentage} ({last5Minutes}) son 5 dakika\n% {last15MinutesPercentage} ({last15Minutes}) son 15 dakika", - "RAM Usage:" : "Bellek kullanımı:", - "SWAP Usage:" : "Takas dosyası kullanımı:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Toplam: {memTotalBytes}/Güncel kullanım: {memUsageBytes}", - "RAM info not available" : "RAM bilgileri alınamadı", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Toplam: {swapTotalBytes}/Güncel kullanım: {swapUsageBytes}", - "SWAP info not available" : "SWAP bilgileri alınamadı", - "Copied!" : "Kopyalandı!", - "Not supported!" : "Desteklenmiyor!", - "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", - "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "System" : "Sistem", + "Unknown" : "Bilinmiyor", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d gün, %2$d saat, %3$d dakika, %4$d saniye", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d saat, %2$d dakika, %3$d saniye", "Monitoring" : "İzleniyor", "Monitoring app with useful server information" : "Yararlı sunucu bilgileri sunan izleme uygulaması", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", - "Operating System:" : "İşletim sistemi:", - "CPU:" : "İşlemci", - "threads" : "işlem", - "Memory:" : "Bellek:", - "Server time:" : "Sunucu zamanı:", - "Uptime:" : "Çalışma süresi:", - "Temperature" : "Sıcaklık", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu ile ilgili çeşitli bilgiler sağlar. ", + "{0}% of all users" : "Tüm kullanıcılarda %{0} ", + "Active users" : "Etkin kullanıcılar", + "Last hour" : "Son 1 saat", + "Last 24 Hours" : "Son 24 saat", + "Last 7 Days" : "Son 7 gün", + "Last 30 Days" : "Son 30 gün", + "System cron" : "Sistem zamanlanmış görevi", + "Webcron" : "İnternet zamanlanmış görevi", + "AJAX (not recommended)" : "AJAX (önerilmez)", + "Background jobs" : "Arka plan işleri", + "Mode" : "Kip", + "Last run" : "Son yürütülme", + "Never" : "Yok", + "Latest runs" : "Son yürütülmeler", + "No background job has run yet." : "Henüz bir arka plan işi yürütülmemiş.", + "Slowest jobs" : "En yavaş işler", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Yavaş işlerin istatistikleri henüz kaydedilmemiş. Bunlar bir arka plan işi tarafından toplanır ve bir sonraki yürütülmeden sonra görülebilir.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Son başarısız işlemler (son %n gün)","Son başarısız işlemler (son %n gün)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Son %n günde başarısız olmuş bir arka plan işi yok.","Son %n günde başarısız olmuş bir arka plan işi yok."], "Load" : "Yük", - "Memory" : "Bellek", + "CPU info not available" : "İşlemci bilgileri alınamadı", + "Current usage" : "Güncel kullanım", + "Threads" : "İşlemler", + "Load average" : "Yük ortalaması", + "Database" : "Veri tabanı", + "Type:" : "Tür:", + "Version:" : "Sürüm:", + "Size:" : "Boyut:", + "{used} of {total} used" : "{used} / {total} kullanılmış", + "Used" : "Kullanılan", + "Available" : "Kullanılabilecek", "Disk" : "Disk", + "Files" : "Dosyalar", + "Storages" : "Depolama birimleri", + "Free space" : "Boş alan", "Mount:" : "Takılı:", "Filesystem:" : "Dosya sistemi:", - "Size:" : "Boyut:", "Available:" : "Kullanılabilir:", "Used:" : "Kullanılan:", - "Files:" : "Dosyalar:", - "Storages:" : "Depolama birimleri:", - "Free Space:" : "Boş alan:", + "Class" : "Sınıf", + "Status" : "Durum", + "Started" : "Başlatıldı", + "Duration" : "Süre", + "Peak memory" : "En fazla bellek kullanımı", + "Run ID" : "Yürütülme kimliği", + "Server ID" : "Sunucu kimliği", + "Process ID" : "İşlem kimliği", + "Details about {job} from {time}" : "{time} zamanındaki {job} işinin ayrıntıları ", + "Job" : "İş", + "When" : "Şu zamanda", + "Details" : "Ayrıntılar", + "Succeeded" : "Tamamlandı", + "Failed" : "Tamamlanamadı", + "Crashed" : "Çöktü", + "Running" : "Yürütülüyor", + "RAM usage" : "Bellek kullanımı", + "Swap usage" : "Takas belleği kullanımı", + "Memory" : "Bellek", + "RAM info not available" : "RAM bilgileri alınamadı", + "Total" : "Toplam", + "Swap used" : "Kullanılan takas belleği", + "External monitoring API" : "Dış izleme API uygulaması", + "Endpoint URL" : "Uç nokta adresi", + "Configuration" : "Yapılandırma", + "Output in JSON" : "JSON çıktısı", + "Skip apps section" : "Uygulamalar bölümü atlansın", + "Including the apps section sends an external request to the app store" : "Uygulamalar bölümü eklendiğinde, uygulama mağazasına bir dış istek gönderilir", + "Skip server update" : "Sunucu güncellemesi atlansın", + "Authentication" : "Kimlik doğrulama", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Bu kod tarayıcınızda oluşturuldu ve siz aşağıdaki komutu yürütene kadar kaydedilmeyecek. Her istekle birlikte {header} üst bilgisinde gönderin.", + "Command to store the token" : "Kodun kaydedileceği komut", + "Request header" : "İstek üst bilgisi", "Network" : "Ağ", - "Hostname:" : "Sunucu adı:", - "Gateway:" : "Ağ geçidi:", + "Hostname" : "Sunucu adı", + "Gateway" : "Ağ geçidi", + "DNS" : "DNS", "Status:" : "Durum:", "Speed:" : "Hız:", "Duplex:" : "Çift taraflı:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Etkin kullanıcılar", - "Last hour" : "Son 1 saat", - "%s%% of all users" : "Tüm kullanıcıların %%%s", - "Last 24 Hours" : "Son 24 saat", - "Last 7 Days" : "Son 7 gün", - "Last 30 Days" : "Son 30 gün", - "Shares" : "Paylaşımlar", - "Users:" : "Kullanıcılar:", - "Groups:" : "Gruplar:", - "Links:" : "Bağlantılar:", - "Emails:" : "E-postalar:", - "Federated sent:" : "Birleşik gönderilen:", - "Federated received:" : "Birleşik alınan:", - "Talk conversations:" : "Konuş görüşmeleri:", + "OPcache is not loaded." : "OPcache yüklenmemiş.", + "OPcache is disabled." : "OPcache kapalı.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud tarafından OPcache durumunun (\"opcache.restrict_api\") okunmasına izin verilmiyor.", + "OPcache status is unavailable." : "OPcache durumu kullanılamıyor.", + "{used} of {total}" : "{used} / {total}", + "Interned strings" : "İç dizgeler", + "Keys" : "Anahtarlar", + "{used} of {max}" : "{used} / {max}", + "Disabled" : "Kullanılmıyor", + "Enabled, {used} of {total} buffer used" : "Açık, {used} / {total} ara bellek kullanılıyor", + "OPcache" : "OPcache", + "Hit rate" : "Erişilme oranı", + "Cached scripts" : "Ön bellekteki betikler", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Bu rakamlar, bu isteği işleyen PHP işlemini tanımlar. Diğer FPM havuzları veya CLI kendi OPcache ön belleklerini korur.", + "Revalidate frequency:" : "Sıklığı yeniden doğrula:", + "seconds" : "saniye", + "Validate timestamps:" : "Zaman damgalarını doğrula:", + "Yes" : "Evet", + "No" : "Hayır", + "OOM restarts:" : "Bellek tükenmesi ile yeniden başlatma:", + "Last restart:" : "Son yeniden başlatma:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP eklentileri", + "Extension" : "Eklenti", + "Unable to list extensions" : "Eklentiler listelenemedi", + "{count} loaded" : "{count} yüklenmiş", "PHP" : "PHP", - "Version:" : "Sürüm:", - "Memory limit:" : "Bellek sınırı:", + "Version" : "Sürüm", + "Memory limit" : "Bellek sınırı", "Max execution time:" : "En uzun çalışma süresi:", "Upload max size:" : "En büyük yükleme boyutu:", - "OPcache Revalidate Frequency:" : "OPcache yeniden doğrulama sıklığı:", + "Post max size:" : "En büyük ileti boyutu:", + "SAPI:" : "SAPI:", "Extensions:" : "Eklentiler:", - "Unable to list extensions" : "Eklentiler listelenemedi", + "PHP Info:" : "PHP Bilgileri:", "Show phpinfo" : "PHP bilgilerini görüntüle", "FPM worker pool" : "FPM işleyici havuzu", "Pool name:" : "Havuz adı:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "En fazla kuyruk dinleme:", "Max active processes:" : "En fazla etkin işlem sayısı:", "Max children reached:" : "Ulaşılan en fazla alt işlem:", - "Database" : "Veri tabanı", - "Type:" : "Tür:", + "CPU" : "İşlemci", + "Swap" : "Takas belleği", + "Resource usage" : "Kaynak kullanımı", + "Shares" : "Paylaşımlar", + "Users:" : "Kullanıcılar:", + "Groups:" : "Gruplar:", + "Links:" : "Bağlantılar:", + "Emails:" : "E-postalar:", + "Federated sent:" : "Birleşik gönderilen:", + "Federated received:" : "Birleşik alınan:", + "Talk conversations:" : "Konuş görüşmeleri:", + "Runs" : "Yürütülmeler", + "Average" : "Ortalama", + "Longest" : "En uzun", + "Warning" : "Uyarı", + "Critical" : "Kritik", + "Operating System:" : "İşletim sistemi:", + "CPU:" : "İşlemci", + "{name} ({threads} threads)" : "{name} ({threads} işlem)", + "Server time:" : "Sunucu zamanı:", + "Uptime:" : "Çalışma süresi:", + "Temperature" : "Sıcaklık", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "İşlemci kullanımı:", + "Load average: {percentage} % ({load}) last minute" : "Ortalama yük: % {percentage} ({load}) son 1 dakika", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "% {lastMinutePercentage} ({lastMinute}) son 1 dakika\n% {last5MinutesPercentage} ({last5Minutes}) son 5 dakika\n% {last15MinutesPercentage} ({last15Minutes}) son 15 dakika", + "RAM Usage:" : "Bellek kullanımı:", + "SWAP Usage:" : "Takas dosyası kullanımı:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Toplam: {memTotalBytes}/Güncel kullanım: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Toplam: {swapTotalBytes}/Güncel kullanım: {swapUsageBytes}", + "SWAP info not available" : "SWAP bilgileri alınamadı", + "Copied!" : "Kopyalandı!", + "Not supported!" : "Desteklenmiyor!", + "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", + "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", + "threads" : "işlem", + "Memory:" : "Bellek:", + "Files:" : "Dosyalar:", + "Storages:" : "Depolama birimleri:", + "Free Space:" : "Boş alan:", + "Hostname:" : "Sunucu adı:", + "Gateway:" : "Ağ geçidi:", + "%s%% of all users" : "Tüm kullanıcıların %%%s", + "Memory limit:" : "Bellek sınırı:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache yeniden doğrulama sıklığı:", "External monitoring tool" : "Dış izleme aracı", "Use this end point to connect an external monitoring tool:" : "Bir dış izleme aracına bağlanmak için bu uç noktayı kullanın:", "Copy" : "Kopyala", - "Output in JSON" : "JSON çıktısı", "Skip apps section (including apps section will send an external request to the app store)" : "Uygulamalar bölümü atlansın (uygulamalar bölümünün katılması, uygulama mağazasına bir dış istek gönderir)", - "Skip server update" : "Sunucu güncellemesini atla", "To use an access token, please generate one then set it using the following command:" : "Erişim kodunu kullanmak için yeni bir kod oluşturup şu komutu yürüterek ayarlayın:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ardından yukarıdaki adresi sorgularken kodu \"NC-Token\" üst bilgisi ile gönderin.", - "Unknown Processor" : "İşlemci bilinmiyor" + "%1$s (%2$d threads)" : "%1$s (%2$d işlem)", + "DNS:" : "DNS:" }, "nplurals=2; plural=(n > 1);"); diff --git a/l10n/tr.json b/l10n/tr.json index 1a13fab7..c4add146 100644 --- a/l10n/tr.json +++ b/l10n/tr.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "İşlemci bilgileri alınamadı", - "CPU Usage:" : "İşlemci kullanımı:", - "Load average: {percentage} % ({load}) last minute" : "Ortalama yük: % {percentage} ({load}) son 1 dakika", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "% {lastMinutePercentage} ({lastMinute}) son 1 dakika\n% {last5MinutesPercentage} ({last5Minutes}) son 5 dakika\n% {last15MinutesPercentage} ({last15Minutes}) son 15 dakika", - "RAM Usage:" : "Bellek kullanımı:", - "SWAP Usage:" : "Takas dosyası kullanımı:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Toplam: {memTotalBytes}/Güncel kullanım: {memUsageBytes}", - "RAM info not available" : "RAM bilgileri alınamadı", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Toplam: {swapTotalBytes}/Güncel kullanım: {swapUsageBytes}", - "SWAP info not available" : "SWAP bilgileri alınamadı", - "Copied!" : "Kopyalandı!", - "Not supported!" : "Desteklenmiyor!", - "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", - "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", "System" : "Sistem", + "Unknown" : "Bilinmiyor", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d gün, %2$d saat, %3$d dakika, %4$d saniye", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d saat, %2$d dakika, %3$d saniye", "Monitoring" : "İzleniyor", "Monitoring app with useful server information" : "Yararlı sunucu bilgileri sunan izleme uygulaması", - "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu hakkında çeşitli bilgiler sağlar. ", - "Operating System:" : "İşletim sistemi:", - "CPU:" : "İşlemci", - "threads" : "işlem", - "Memory:" : "Bellek:", - "Server time:" : "Sunucu zamanı:", - "Uptime:" : "Çalışma süresi:", - "Temperature" : "Sıcaklık", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "İşlemci yükü, bellek ve disk kullanımı, kullanıcı sayısı gibi sunucu ile ilgili çeşitli bilgiler sağlar. ", + "{0}% of all users" : "Tüm kullanıcılarda %{0} ", + "Active users" : "Etkin kullanıcılar", + "Last hour" : "Son 1 saat", + "Last 24 Hours" : "Son 24 saat", + "Last 7 Days" : "Son 7 gün", + "Last 30 Days" : "Son 30 gün", + "System cron" : "Sistem zamanlanmış görevi", + "Webcron" : "İnternet zamanlanmış görevi", + "AJAX (not recommended)" : "AJAX (önerilmez)", + "Background jobs" : "Arka plan işleri", + "Mode" : "Kip", + "Last run" : "Son yürütülme", + "Never" : "Yok", + "Latest runs" : "Son yürütülmeler", + "No background job has run yet." : "Henüz bir arka plan işi yürütülmemiş.", + "Slowest jobs" : "En yavaş işler", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Yavaş işlerin istatistikleri henüz kaydedilmemiş. Bunlar bir arka plan işi tarafından toplanır ve bir sonraki yürütülmeden sonra görülebilir.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Son başarısız işlemler (son %n gün)","Son başarısız işlemler (son %n gün)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["Son %n günde başarısız olmuş bir arka plan işi yok.","Son %n günde başarısız olmuş bir arka plan işi yok."], "Load" : "Yük", - "Memory" : "Bellek", + "CPU info not available" : "İşlemci bilgileri alınamadı", + "Current usage" : "Güncel kullanım", + "Threads" : "İşlemler", + "Load average" : "Yük ortalaması", + "Database" : "Veri tabanı", + "Type:" : "Tür:", + "Version:" : "Sürüm:", + "Size:" : "Boyut:", + "{used} of {total} used" : "{used} / {total} kullanılmış", + "Used" : "Kullanılan", + "Available" : "Kullanılabilecek", "Disk" : "Disk", + "Files" : "Dosyalar", + "Storages" : "Depolama birimleri", + "Free space" : "Boş alan", "Mount:" : "Takılı:", "Filesystem:" : "Dosya sistemi:", - "Size:" : "Boyut:", "Available:" : "Kullanılabilir:", "Used:" : "Kullanılan:", - "Files:" : "Dosyalar:", - "Storages:" : "Depolama birimleri:", - "Free Space:" : "Boş alan:", + "Class" : "Sınıf", + "Status" : "Durum", + "Started" : "Başlatıldı", + "Duration" : "Süre", + "Peak memory" : "En fazla bellek kullanımı", + "Run ID" : "Yürütülme kimliği", + "Server ID" : "Sunucu kimliği", + "Process ID" : "İşlem kimliği", + "Details about {job} from {time}" : "{time} zamanındaki {job} işinin ayrıntıları ", + "Job" : "İş", + "When" : "Şu zamanda", + "Details" : "Ayrıntılar", + "Succeeded" : "Tamamlandı", + "Failed" : "Tamamlanamadı", + "Crashed" : "Çöktü", + "Running" : "Yürütülüyor", + "RAM usage" : "Bellek kullanımı", + "Swap usage" : "Takas belleği kullanımı", + "Memory" : "Bellek", + "RAM info not available" : "RAM bilgileri alınamadı", + "Total" : "Toplam", + "Swap used" : "Kullanılan takas belleği", + "External monitoring API" : "Dış izleme API uygulaması", + "Endpoint URL" : "Uç nokta adresi", + "Configuration" : "Yapılandırma", + "Output in JSON" : "JSON çıktısı", + "Skip apps section" : "Uygulamalar bölümü atlansın", + "Including the apps section sends an external request to the app store" : "Uygulamalar bölümü eklendiğinde, uygulama mağazasına bir dış istek gönderilir", + "Skip server update" : "Sunucu güncellemesi atlansın", + "Authentication" : "Kimlik doğrulama", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Bu kod tarayıcınızda oluşturuldu ve siz aşağıdaki komutu yürütene kadar kaydedilmeyecek. Her istekle birlikte {header} üst bilgisinde gönderin.", + "Command to store the token" : "Kodun kaydedileceği komut", + "Request header" : "İstek üst bilgisi", "Network" : "Ağ", - "Hostname:" : "Sunucu adı:", - "Gateway:" : "Ağ geçidi:", + "Hostname" : "Sunucu adı", + "Gateway" : "Ağ geçidi", + "DNS" : "DNS", "Status:" : "Durum:", "Speed:" : "Hız:", "Duplex:" : "Çift taraflı:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Etkin kullanıcılar", - "Last hour" : "Son 1 saat", - "%s%% of all users" : "Tüm kullanıcıların %%%s", - "Last 24 Hours" : "Son 24 saat", - "Last 7 Days" : "Son 7 gün", - "Last 30 Days" : "Son 30 gün", - "Shares" : "Paylaşımlar", - "Users:" : "Kullanıcılar:", - "Groups:" : "Gruplar:", - "Links:" : "Bağlantılar:", - "Emails:" : "E-postalar:", - "Federated sent:" : "Birleşik gönderilen:", - "Federated received:" : "Birleşik alınan:", - "Talk conversations:" : "Konuş görüşmeleri:", + "OPcache is not loaded." : "OPcache yüklenmemiş.", + "OPcache is disabled." : "OPcache kapalı.", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud tarafından OPcache durumunun (\"opcache.restrict_api\") okunmasına izin verilmiyor.", + "OPcache status is unavailable." : "OPcache durumu kullanılamıyor.", + "{used} of {total}" : "{used} / {total}", + "Interned strings" : "İç dizgeler", + "Keys" : "Anahtarlar", + "{used} of {max}" : "{used} / {max}", + "Disabled" : "Kullanılmıyor", + "Enabled, {used} of {total} buffer used" : "Açık, {used} / {total} ara bellek kullanılıyor", + "OPcache" : "OPcache", + "Hit rate" : "Erişilme oranı", + "Cached scripts" : "Ön bellekteki betikler", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "Bu rakamlar, bu isteği işleyen PHP işlemini tanımlar. Diğer FPM havuzları veya CLI kendi OPcache ön belleklerini korur.", + "Revalidate frequency:" : "Sıklığı yeniden doğrula:", + "seconds" : "saniye", + "Validate timestamps:" : "Zaman damgalarını doğrula:", + "Yes" : "Evet", + "No" : "Hayır", + "OOM restarts:" : "Bellek tükenmesi ile yeniden başlatma:", + "Last restart:" : "Son yeniden başlatma:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP eklentileri", + "Extension" : "Eklenti", + "Unable to list extensions" : "Eklentiler listelenemedi", + "{count} loaded" : "{count} yüklenmiş", "PHP" : "PHP", - "Version:" : "Sürüm:", - "Memory limit:" : "Bellek sınırı:", + "Version" : "Sürüm", + "Memory limit" : "Bellek sınırı", "Max execution time:" : "En uzun çalışma süresi:", "Upload max size:" : "En büyük yükleme boyutu:", - "OPcache Revalidate Frequency:" : "OPcache yeniden doğrulama sıklığı:", + "Post max size:" : "En büyük ileti boyutu:", + "SAPI:" : "SAPI:", "Extensions:" : "Eklentiler:", - "Unable to list extensions" : "Eklentiler listelenemedi", + "PHP Info:" : "PHP Bilgileri:", "Show phpinfo" : "PHP bilgilerini görüntüle", "FPM worker pool" : "FPM işleyici havuzu", "Pool name:" : "Havuz adı:", @@ -80,16 +137,60 @@ "Max listen queue:" : "En fazla kuyruk dinleme:", "Max active processes:" : "En fazla etkin işlem sayısı:", "Max children reached:" : "Ulaşılan en fazla alt işlem:", - "Database" : "Veri tabanı", - "Type:" : "Tür:", + "CPU" : "İşlemci", + "Swap" : "Takas belleği", + "Resource usage" : "Kaynak kullanımı", + "Shares" : "Paylaşımlar", + "Users:" : "Kullanıcılar:", + "Groups:" : "Gruplar:", + "Links:" : "Bağlantılar:", + "Emails:" : "E-postalar:", + "Federated sent:" : "Birleşik gönderilen:", + "Federated received:" : "Birleşik alınan:", + "Talk conversations:" : "Konuş görüşmeleri:", + "Runs" : "Yürütülmeler", + "Average" : "Ortalama", + "Longest" : "En uzun", + "Warning" : "Uyarı", + "Critical" : "Kritik", + "Operating System:" : "İşletim sistemi:", + "CPU:" : "İşlemci", + "{name} ({threads} threads)" : "{name} ({threads} işlem)", + "Server time:" : "Sunucu zamanı:", + "Uptime:" : "Çalışma süresi:", + "Temperature" : "Sıcaklık", + "{duration} ms" : "{duration} ms", + "{duration} s" : "{duration} s", + "CPU Usage:" : "İşlemci kullanımı:", + "Load average: {percentage} % ({load}) last minute" : "Ortalama yük: % {percentage} ({load}) son 1 dakika", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "% {lastMinutePercentage} ({lastMinute}) son 1 dakika\n% {last5MinutesPercentage} ({last5Minutes}) son 5 dakika\n% {last15MinutesPercentage} ({last15Minutes}) son 15 dakika", + "RAM Usage:" : "Bellek kullanımı:", + "SWAP Usage:" : "Takas dosyası kullanımı:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Toplam: {memTotalBytes}/Güncel kullanım: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Toplam: {swapTotalBytes}/Güncel kullanım: {swapUsageBytes}", + "SWAP info not available" : "SWAP bilgileri alınamadı", + "Copied!" : "Kopyalandı!", + "Not supported!" : "Desteklenmiyor!", + "Press ⌘-C to copy." : "Kopyalamak için ⌘-C tuşlarına basın.", + "Press Ctrl-C to copy." : "Kopyalamak için Ctrl-C tuşlarına basın.", + "threads" : "işlem", + "Memory:" : "Bellek:", + "Files:" : "Dosyalar:", + "Storages:" : "Depolama birimleri:", + "Free Space:" : "Boş alan:", + "Hostname:" : "Sunucu adı:", + "Gateway:" : "Ağ geçidi:", + "%s%% of all users" : "Tüm kullanıcıların %%%s", + "Memory limit:" : "Bellek sınırı:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache yeniden doğrulama sıklığı:", "External monitoring tool" : "Dış izleme aracı", "Use this end point to connect an external monitoring tool:" : "Bir dış izleme aracına bağlanmak için bu uç noktayı kullanın:", "Copy" : "Kopyala", - "Output in JSON" : "JSON çıktısı", "Skip apps section (including apps section will send an external request to the app store)" : "Uygulamalar bölümü atlansın (uygulamalar bölümünün katılması, uygulama mağazasına bir dış istek gönderir)", - "Skip server update" : "Sunucu güncellemesini atla", "To use an access token, please generate one then set it using the following command:" : "Erişim kodunu kullanmak için yeni bir kod oluşturup şu komutu yürüterek ayarlayın:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ardından yukarıdaki adresi sorgularken kodu \"NC-Token\" üst bilgisi ile gönderin.", - "Unknown Processor" : "İşlemci bilinmiyor" + "%1$s (%2$d threads)" : "%1$s (%2$d işlem)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n > 1);" } \ No newline at end of file diff --git a/l10n/ug.js b/l10n/ug.js index 1bd70bc2..f93fb789 100644 --- a/l10n/ug.js +++ b/l10n/ug.js @@ -1,52 +1,87 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU ئۇچۇرى يوق", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: ئومۇمىي: {memTotalBytes} / ھازىرقى ئىشلىتىلىشى: {memUsageBytes}", - "RAM info not available" : "RAM ئۇچۇرى يوق", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: ئومۇمىي: {swapTotalBytes} / ھازىرقى ئىشلىتىلىشى: {swapUsageBytes}", - "SWAP info not available" : "SWAP ئۇچۇرى يوق", - "Copied!" : "كۆچۈرۈلدى!", - "Not supported!" : "قوللىمايدۇ!", - "Press ⌘-C to copy." : "كۆچۈرۈش ئۈچۈن ⌘-C نى بېسىڭ.", - "Press Ctrl-C to copy." : "كۆچۈرۈش ئۈچۈن Ctrl-C نى بېسىڭ.", "System" : "سىستېما", + "Unknown" : "نامەلۇم", "Monitoring" : "نازارەت قىلىش", "Monitoring app with useful server information" : "پايدىلىق مۇلازىمېتىر ئۇچۇرلىرى بىلەن نازارەت قىلىش دېتالى", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU يۈكى ، RAM ئىشلىتىش ، دىسكا ئىشلىتىش ، ئىشلەتكۈچى سانى قاتارلىق پايدىلىق مۇلازىمېتىر ئۇچۇرلىرى بىلەن تەمىنلەيدۇ.", - "Operating System:" : "مەشغۇلات سىستېمىسى:", - "CPU:" : "CPU:", - "Memory:" : "ئەستە ساقلاش:", - "Server time:" : "مۇلازىمېتىر ۋاقتى:", - "Uptime:" : "Uptime:", - "Temperature" : "تېمپېراتۇرا", - "Load" : "Load", - "Memory" : "ئەستە ساقلاش", + "Active users" : "ئاكتىپ ئىشلەتكۈچىلەر", + "Last hour" : "ئالدىنقى سائەت", + "Last 24 Hours" : "ئاخىرقى 24 سائەت", + "Last 7 Days" : "ئاخىرقى 7 كۈن", + "Last 30 Days" : "ئاخىرقى 30 كۈن", + "Webcron" : "Webcron", + "Background jobs" : "ئارقا سۇپىدىكى خىزمەت", + "Mode" : "ھالەت", + "Never" : "ھەرگىز", + "Load" : "يۈك", + "CPU info not available" : "CPU ئۇچۇرى يوق", + "Threads" : "يىپلار", + "Database" : "ساندان", + "Type:" : "تىپى:", + "Version:" : "نەشرى:", + "Size:" : "چوڭلۇقى:", + "Available" : "ئىشلەتكىلى بولىدۇ", "Disk" : "دىسكا", + "Files" : "ھۆججەتلەر", "Mount:" : "تاغ:", "Filesystem:" : "ھۆججەت سىستېمىسى:", - "Size:" : "چوڭلۇقى:", "Available:" : "ئىشلەتكىلى بولىدۇ:", "Used:" : "ئىشلىتىلگەن:", - "Files:" : "ھۆججەتلەر:", - "Storages:" : "دۇكانلار:", - "Free Space:" : "ھەقسىز بوشلۇق:", + "Status" : "ھالەت", + "Duration" : "ئۇزۇنلىقى", + "Job" : "Job", + "When" : "قاچان", + "Details" : "تەپسىلاتى", + "Succeeded" : "مۇۋەپپەقىيەت قازاندى", + "Failed" : "مەغلۇب بولدى", + "Running" : "ئىجرا بولۇۋاتىدۇ", + "Memory" : "ئەستە ساقلاش", + "RAM info not available" : "RAM ئۇچۇرى يوق", + "Total" : "ئومۇمىي", + "Configuration" : "سەپلىمىسى", + "Output in JSON" : "JSON دىكى چىقىرىش", + "Skip server update" : "مۇلازىمېتىر يېڭىلاشتىن ئاتلاڭ", + "Authentication" : "دەلىللەش", "Network" : "تور", - "Hostname:" : "ساھىبجامال:", - "Gateway:" : "دەرۋازا:", + "Hostname" : "ساھىبجامال", "Status:" : "ھالىتى:", "Speed:" : "سۈرئەت:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "ئاكتىپ ئىشلەتكۈچىلەر", - "Last hour" : "ئالدىنقى سائەت", - "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ% s %%", - "Last 24 Hours" : "ئاخىرقى 24 سائەت", - "Last 7 Days" : "ئاخىرقى 7 كۈن", - "Last 30 Days" : "ئاخىرقى 30 كۈن", - "Shares" : "Shares", + "Keys" : "ئاچقۇچ", + "Disabled" : "چەكلەنگەن", + "seconds" : "سېكۇنت", + "Yes" : "ماقۇل", + "No" : "ياق", + "PHP extensions" : "PHP كېڭەيتىلمىسى", + "Extension" : "كېڭەيتىش", + "Unable to list extensions" : "كېڭەيتىلمىنى تىزىشقا ئامالسىز", + "PHP" : "PHP", + "Version" : "نەشرى", + "Memory limit" : "خاتىرە چېكى", + "Max execution time:" : "ئىجرا قىلىنىش ۋاقتى:", + "Upload max size:" : "ئەڭ چوڭ چوڭلۇقى:", + "Extensions:" : "كېڭەيتىلمىسى:", + "Show phpinfo" : "Phpinfo نى كۆرسەت", + "FPM worker pool" : "FPM ئىشچى يىغىندىسى", + "Pool name:" : "يىغىندا نامى:", + "Pool type:" : "يىغىندا تىپى:", + "Start time:" : "باشلىنىش ۋاقتى:", + "Accepted connections:" : "قۇبۇللانغان ئۇلىنىشلار:", + "Total processes:" : "جەمئىي جەريانلار:", + "Active processes:" : "ئاكتىپ جەريانلار:", + "Idle processes:" : "بىكار جەريانلار:", + "Listen queue:" : "ئاڭلاش ئۆچرېتى:", + "Slow requests:" : "ئاستا تەلەپلەر:", + "Max listen queue:" : "ئەڭ چوڭ ئاڭلاش ئۆچرېتى:", + "Max active processes:" : "ئەڭ چوڭ ئاكتىپ جەريانلار:", + "Max children reached:" : "ئەڭ چوڭ تارماقلارغا يەتكىنى:", + "Resource usage" : "بايلىق ئىشلىتىش", + "Shares" : "ھەمبەھىرلەر", "Users:" : "ئىشلەتكۈچىلەر:", "Groups:" : "گۇرۇپپىلار:", "Links:" : "ئۇلىنىشلار:", @@ -54,25 +89,41 @@ OC.L10N.register( "Federated sent:" : "فېدېراتسىيە ئەۋەتىلگەن:", "Federated received:" : "فېدېراتسىيە قوبۇل قىلدى:", "Talk conversations:" : "سۆھبەت پاراڭلىرى:", - "PHP" : "PHP", - "Version:" : "نەشرى:", + "Average" : "ئوتتۇرىچە", + "Warning" : "ئاگاھلاندۇرۇش", + "Operating System:" : "مەشغۇلات سىستېمىسى:", + "CPU:" : "CPU:", + "Server time:" : "مۇلازىمېتىر ۋاقتى:", + "Uptime:" : "ئىشلەش ۋاقتى:", + "Temperature" : "تېمپېراتۇرا", + "CPU Usage:" : "CPU ئىشلىتىشچانلىقى:", + "Load average: {percentage} % ({load}) last minute" : "ئوتتۇرىچە يۈك: ئاخىرقى مىنۇتتا %{percentage}({load}) ", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) ئاخىرقى مىنۇتتا\n{last5MinutesPercentage} % ({last5Minutes}) ئاخىرقى 5 مىنۇتتا\n{last15MinutesPercentage} % ({last15Minutes}) ئاخىرقى 15 مىنۇتتا", + "RAM Usage:" : "RAM ئىشلىتىشچانلىقى:", + "SWAP Usage:" : "SWAP ئىشلىتىشچانلىقى:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: ئومۇمىي: {memTotalBytes} / ھازىرقى ئىشلىتىلىشى: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: ئومۇمىي: {swapTotalBytes} / ھازىرقى ئىشلىتىلىشى: {swapUsageBytes}", + "SWAP info not available" : "SWAP ئۇچۇرى يوق", + "Copied!" : "كۆچۈرۈلدى!", + "Not supported!" : "قوللىمايدۇ!", + "Press ⌘-C to copy." : "كۆچۈرۈش ئۈچۈن ⌘-C نى بېسىڭ.", + "Press Ctrl-C to copy." : "كۆچۈرۈش ئۈچۈن Ctrl-C نى بېسىڭ.", + "threads" : "يىپلار", + "Memory:" : "ئەستە ساقلاش:", + "Files:" : "ھۆججەتلەر:", + "Storages:" : "دۇكانلار:", + "Free Space:" : "ھەقسىز بوشلۇق:", + "Hostname:" : "ساھىبجامال:", + "Gateway:" : "دەرۋازا:", + "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ %%%s ", "Memory limit:" : "ئەستە ساقلاش چېكى:", - "Max execution time:" : "ئىجرا قىلىنىش ۋاقتى:", - "Upload max size:" : "ئەڭ چوڭ چوڭلۇقى:", "OPcache Revalidate Frequency:" : "OPcache چاستوتىنى ئىناۋەتسىز قىلىدۇ:", - "Extensions:" : "كېڭەيتىلمىسى:", - "Unable to list extensions" : "كېڭەيتىلمىنى تىزىشقا ئامالسىز", - "Show phpinfo" : "Phpinfo نى كۆرسەت", - "Database" : "ساندان", - "Type:" : "تىپى:", "External monitoring tool" : "تاشقى كۆزىتىش قورالى", "Use this end point to connect an external monitoring tool:" : "بۇ ئاخىرقى نۇقتىنى ئىشلىتىپ سىرتقى نازارەت قىلىش قورالىنى ئۇلاڭ:", "Copy" : "كۆچۈرۈڭ", - "Output in JSON" : "JSON دىكى چىقىرىش", - "Skip apps section (including apps section will send an external request to the app store)" : "ئەپ بۆلەكلىرىدىن ئاتلاش (ئەپ بۆلىكىنى ئۆز ئىچىگە ئالىدۇ) ئەپ دۇكىنىغا تاشقى تەلەپ ئەۋەتىدۇ)", - "Skip server update" : "مۇلازىمېتىر يېڭىلاشتىن ئاتلاڭ", + "Skip apps section (including apps section will send an external request to the app store)" : "ئەپ بۆلەكلىرىدىن ئاتلاش (ئەپ بۆلىكىنى ئۆز ئىچىگە ئالىدۇ ھەمدە ئەپ دۇكىنىغا تاشقى تەلەپ ئەۋەتىدۇ)", "To use an access token, please generate one then set it using the following command:" : "زىيارەت بەلگىسىنى ئىشلىتىش ئۈچۈن بىرنى ھاسىل قىلىڭ ، ئاندىن تۆۋەندىكى بۇيرۇقنى ئىشلىتىپ تەڭشەڭ:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "ئاندىن يۇقارقى URL نى سورىغاندا «NC-Token» ماۋزۇسى ئارقىلىق بەلگە يوللاڭ.", - "Unknown Processor" : "نامەلۇم بىر تەرەپ قىلغۇچ" + "DNS:" : "DNS:" }, "nplurals=2; plural=(n != 1);"); diff --git a/l10n/ug.json b/l10n/ug.json index f0590ae1..7734dea1 100644 --- a/l10n/ug.json +++ b/l10n/ug.json @@ -1,50 +1,85 @@ { "translations": { - "CPU info not available" : "CPU ئۇچۇرى يوق", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: ئومۇمىي: {memTotalBytes} / ھازىرقى ئىشلىتىلىشى: {memUsageBytes}", - "RAM info not available" : "RAM ئۇچۇرى يوق", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: ئومۇمىي: {swapTotalBytes} / ھازىرقى ئىشلىتىلىشى: {swapUsageBytes}", - "SWAP info not available" : "SWAP ئۇچۇرى يوق", - "Copied!" : "كۆچۈرۈلدى!", - "Not supported!" : "قوللىمايدۇ!", - "Press ⌘-C to copy." : "كۆچۈرۈش ئۈچۈن ⌘-C نى بېسىڭ.", - "Press Ctrl-C to copy." : "كۆچۈرۈش ئۈچۈن Ctrl-C نى بېسىڭ.", "System" : "سىستېما", + "Unknown" : "نامەلۇم", "Monitoring" : "نازارەت قىلىش", "Monitoring app with useful server information" : "پايدىلىق مۇلازىمېتىر ئۇچۇرلىرى بىلەن نازارەت قىلىش دېتالى", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU يۈكى ، RAM ئىشلىتىش ، دىسكا ئىشلىتىش ، ئىشلەتكۈچى سانى قاتارلىق پايدىلىق مۇلازىمېتىر ئۇچۇرلىرى بىلەن تەمىنلەيدۇ.", - "Operating System:" : "مەشغۇلات سىستېمىسى:", - "CPU:" : "CPU:", - "Memory:" : "ئەستە ساقلاش:", - "Server time:" : "مۇلازىمېتىر ۋاقتى:", - "Uptime:" : "Uptime:", - "Temperature" : "تېمپېراتۇرا", - "Load" : "Load", - "Memory" : "ئەستە ساقلاش", + "Active users" : "ئاكتىپ ئىشلەتكۈچىلەر", + "Last hour" : "ئالدىنقى سائەت", + "Last 24 Hours" : "ئاخىرقى 24 سائەت", + "Last 7 Days" : "ئاخىرقى 7 كۈن", + "Last 30 Days" : "ئاخىرقى 30 كۈن", + "Webcron" : "Webcron", + "Background jobs" : "ئارقا سۇپىدىكى خىزمەت", + "Mode" : "ھالەت", + "Never" : "ھەرگىز", + "Load" : "يۈك", + "CPU info not available" : "CPU ئۇچۇرى يوق", + "Threads" : "يىپلار", + "Database" : "ساندان", + "Type:" : "تىپى:", + "Version:" : "نەشرى:", + "Size:" : "چوڭلۇقى:", + "Available" : "ئىشلەتكىلى بولىدۇ", "Disk" : "دىسكا", + "Files" : "ھۆججەتلەر", "Mount:" : "تاغ:", "Filesystem:" : "ھۆججەت سىستېمىسى:", - "Size:" : "چوڭلۇقى:", "Available:" : "ئىشلەتكىلى بولىدۇ:", "Used:" : "ئىشلىتىلگەن:", - "Files:" : "ھۆججەتلەر:", - "Storages:" : "دۇكانلار:", - "Free Space:" : "ھەقسىز بوشلۇق:", + "Status" : "ھالەت", + "Duration" : "ئۇزۇنلىقى", + "Job" : "Job", + "When" : "قاچان", + "Details" : "تەپسىلاتى", + "Succeeded" : "مۇۋەپپەقىيەت قازاندى", + "Failed" : "مەغلۇب بولدى", + "Running" : "ئىجرا بولۇۋاتىدۇ", + "Memory" : "ئەستە ساقلاش", + "RAM info not available" : "RAM ئۇچۇرى يوق", + "Total" : "ئومۇمىي", + "Configuration" : "سەپلىمىسى", + "Output in JSON" : "JSON دىكى چىقىرىش", + "Skip server update" : "مۇلازىمېتىر يېڭىلاشتىن ئاتلاڭ", + "Authentication" : "دەلىللەش", "Network" : "تور", - "Hostname:" : "ساھىبجامال:", - "Gateway:" : "دەرۋازا:", + "Hostname" : "ساھىبجامال", "Status:" : "ھالىتى:", "Speed:" : "سۈرئەت:", "Duplex:" : "Duplex:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "ئاكتىپ ئىشلەتكۈچىلەر", - "Last hour" : "ئالدىنقى سائەت", - "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ% s %%", - "Last 24 Hours" : "ئاخىرقى 24 سائەت", - "Last 7 Days" : "ئاخىرقى 7 كۈن", - "Last 30 Days" : "ئاخىرقى 30 كۈن", - "Shares" : "Shares", + "Keys" : "ئاچقۇچ", + "Disabled" : "چەكلەنگەن", + "seconds" : "سېكۇنت", + "Yes" : "ماقۇل", + "No" : "ياق", + "PHP extensions" : "PHP كېڭەيتىلمىسى", + "Extension" : "كېڭەيتىش", + "Unable to list extensions" : "كېڭەيتىلمىنى تىزىشقا ئامالسىز", + "PHP" : "PHP", + "Version" : "نەشرى", + "Memory limit" : "خاتىرە چېكى", + "Max execution time:" : "ئىجرا قىلىنىش ۋاقتى:", + "Upload max size:" : "ئەڭ چوڭ چوڭلۇقى:", + "Extensions:" : "كېڭەيتىلمىسى:", + "Show phpinfo" : "Phpinfo نى كۆرسەت", + "FPM worker pool" : "FPM ئىشچى يىغىندىسى", + "Pool name:" : "يىغىندا نامى:", + "Pool type:" : "يىغىندا تىپى:", + "Start time:" : "باشلىنىش ۋاقتى:", + "Accepted connections:" : "قۇبۇللانغان ئۇلىنىشلار:", + "Total processes:" : "جەمئىي جەريانلار:", + "Active processes:" : "ئاكتىپ جەريانلار:", + "Idle processes:" : "بىكار جەريانلار:", + "Listen queue:" : "ئاڭلاش ئۆچرېتى:", + "Slow requests:" : "ئاستا تەلەپلەر:", + "Max listen queue:" : "ئەڭ چوڭ ئاڭلاش ئۆچرېتى:", + "Max active processes:" : "ئەڭ چوڭ ئاكتىپ جەريانلار:", + "Max children reached:" : "ئەڭ چوڭ تارماقلارغا يەتكىنى:", + "Resource usage" : "بايلىق ئىشلىتىش", + "Shares" : "ھەمبەھىرلەر", "Users:" : "ئىشلەتكۈچىلەر:", "Groups:" : "گۇرۇپپىلار:", "Links:" : "ئۇلىنىشلار:", @@ -52,25 +87,41 @@ "Federated sent:" : "فېدېراتسىيە ئەۋەتىلگەن:", "Federated received:" : "فېدېراتسىيە قوبۇل قىلدى:", "Talk conversations:" : "سۆھبەت پاراڭلىرى:", - "PHP" : "PHP", - "Version:" : "نەشرى:", + "Average" : "ئوتتۇرىچە", + "Warning" : "ئاگاھلاندۇرۇش", + "Operating System:" : "مەشغۇلات سىستېمىسى:", + "CPU:" : "CPU:", + "Server time:" : "مۇلازىمېتىر ۋاقتى:", + "Uptime:" : "ئىشلەش ۋاقتى:", + "Temperature" : "تېمپېراتۇرا", + "CPU Usage:" : "CPU ئىشلىتىشچانلىقى:", + "Load average: {percentage} % ({load}) last minute" : "ئوتتۇرىچە يۈك: ئاخىرقى مىنۇتتا %{percentage}({load}) ", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) ئاخىرقى مىنۇتتا\n{last5MinutesPercentage} % ({last5Minutes}) ئاخىرقى 5 مىنۇتتا\n{last15MinutesPercentage} % ({last15Minutes}) ئاخىرقى 15 مىنۇتتا", + "RAM Usage:" : "RAM ئىشلىتىشچانلىقى:", + "SWAP Usage:" : "SWAP ئىشلىتىشچانلىقى:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: ئومۇمىي: {memTotalBytes} / ھازىرقى ئىشلىتىلىشى: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: ئومۇمىي: {swapTotalBytes} / ھازىرقى ئىشلىتىلىشى: {swapUsageBytes}", + "SWAP info not available" : "SWAP ئۇچۇرى يوق", + "Copied!" : "كۆچۈرۈلدى!", + "Not supported!" : "قوللىمايدۇ!", + "Press ⌘-C to copy." : "كۆچۈرۈش ئۈچۈن ⌘-C نى بېسىڭ.", + "Press Ctrl-C to copy." : "كۆچۈرۈش ئۈچۈن Ctrl-C نى بېسىڭ.", + "threads" : "يىپلار", + "Memory:" : "ئەستە ساقلاش:", + "Files:" : "ھۆججەتلەر:", + "Storages:" : "دۇكانلار:", + "Free Space:" : "ھەقسىز بوشلۇق:", + "Hostname:" : "ساھىبجامال:", + "Gateway:" : "دەرۋازا:", + "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ %%%s ", "Memory limit:" : "ئەستە ساقلاش چېكى:", - "Max execution time:" : "ئىجرا قىلىنىش ۋاقتى:", - "Upload max size:" : "ئەڭ چوڭ چوڭلۇقى:", "OPcache Revalidate Frequency:" : "OPcache چاستوتىنى ئىناۋەتسىز قىلىدۇ:", - "Extensions:" : "كېڭەيتىلمىسى:", - "Unable to list extensions" : "كېڭەيتىلمىنى تىزىشقا ئامالسىز", - "Show phpinfo" : "Phpinfo نى كۆرسەت", - "Database" : "ساندان", - "Type:" : "تىپى:", "External monitoring tool" : "تاشقى كۆزىتىش قورالى", "Use this end point to connect an external monitoring tool:" : "بۇ ئاخىرقى نۇقتىنى ئىشلىتىپ سىرتقى نازارەت قىلىش قورالىنى ئۇلاڭ:", "Copy" : "كۆچۈرۈڭ", - "Output in JSON" : "JSON دىكى چىقىرىش", - "Skip apps section (including apps section will send an external request to the app store)" : "ئەپ بۆلەكلىرىدىن ئاتلاش (ئەپ بۆلىكىنى ئۆز ئىچىگە ئالىدۇ) ئەپ دۇكىنىغا تاشقى تەلەپ ئەۋەتىدۇ)", - "Skip server update" : "مۇلازىمېتىر يېڭىلاشتىن ئاتلاڭ", + "Skip apps section (including apps section will send an external request to the app store)" : "ئەپ بۆلەكلىرىدىن ئاتلاش (ئەپ بۆلىكىنى ئۆز ئىچىگە ئالىدۇ ھەمدە ئەپ دۇكىنىغا تاشقى تەلەپ ئەۋەتىدۇ)", "To use an access token, please generate one then set it using the following command:" : "زىيارەت بەلگىسىنى ئىشلىتىش ئۈچۈن بىرنى ھاسىل قىلىڭ ، ئاندىن تۆۋەندىكى بۇيرۇقنى ئىشلىتىپ تەڭشەڭ:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "ئاندىن يۇقارقى URL نى سورىغاندا «NC-Token» ماۋزۇسى ئارقىلىق بەلگە يوللاڭ.", - "Unknown Processor" : "نامەلۇم بىر تەرەپ قىلغۇچ" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=2; plural=(n != 1);" } \ No newline at end of file diff --git a/l10n/uk.js b/l10n/uk.js index a586a052..aa2963a6 100644 --- a/l10n/uk.js +++ b/l10n/uk.js @@ -1,75 +1,113 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "Інформація про процесор недоступна", - "CPU Usage:" : "Використання CPU:", - "Load average: {percentage} % ({load}) last minute" : "Середнє навантаження: {percentage} % ({load}) за останню хв.", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за останню хв.\n{last5MinutesPercentage} % ({last5Minutes}) за останні 5 хв.\n{last15MinutesPercentage} % ({last15Minutes}) за останні 15 хв.", - "RAM Usage:" : "Використання ОЗУ:", - "SWAP Usage:" : "Використання Swap:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Оперативна пам’ять: використовується {memUsageBytes} із {memTotalBytes}", - "RAM info not available" : "Інформація про оперативну пам'ять недоступна", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Файл підкачки: використовується {swapUsageBytes} із {swapTotalBytes}", - "SWAP info not available" : "Інформація про обмін недоступна", - "Copied!" : "Скопійовано!", - "Not supported!" : "Не підтримується!", - "Press ⌘-C to copy." : "Натисніть ⌘-C, щоб скопіювати.", - "Press Ctrl-C to copy." : "Натисніть Ctrl-C, щоб скопіювати.", "System" : "Система", + "Unknown" : "Невідомо", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d днів, %2$d годин, %3$d хвилин, %4$d секунд", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d годин, %2$d хвилин, %3$d секунд", "Monitoring" : "Моніторинг", "Monitoring app with useful server information" : "Застосунок моніторингу з корисною інформацією про сервер", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Надає корисну інформацію про сервер, таку як навантаження ЦПУ, використання пам'яті, використання диску, кількість користувачів тощо.", - "Operating System:" : "Операційна система:", - "CPU:" : "ЦП:", - "threads" : "нитки", - "Memory:" : "Пам'ять:", - "Server time:" : "Час сервера:", - "Uptime:" : "Час роботи:", - "Temperature" : "Температура", + "{0}% of all users" : "{0}% від усіх користувачів", + "Active users" : "Активні користувачі", + "Last hour" : "За останню годину", + "Last 24 Hours" : "За останні 24 години", + "Last 7 Days" : "За останні 7 днів", + "Last 30 Days" : "За останні 30 днів", + "System cron" : "Системний cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (не рекомендовано)", + "Background jobs" : "Фонові завдання", + "Mode" : "Режим", + "Last run" : "Останній запуск", + "Never" : "Ніколи", + "Latest runs" : "Останні виконання", + "No background job has run yet." : "Фонові завдання поки не було виконано.", + "Slowest jobs" : "Повільні завдання", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Стаститика щодо повільне виконання завдань поки недоступна. Її збір відбувається в фоні, з'явиться після наступного запуску.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Останні невдалі запуски (протягом останнього дня)","Останні невдалі запуски (останні %n дні)","Останні невдалі запуски (останні %n днів)","Останні невдалі запуски (останні %n днів)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["За останній %n день відсутні невдалі запуски","За останні %n дні відсутні невдалі запуски","За останні %n днів відсутні невдалі запуски","За останні %n днів відсутні невдалі запуски"], "Load" : "Навантаження", - "Memory" : "Пам'ять", + "CPU info not available" : "Інформація про процесор недоступна", + "Current usage" : "Поточне використання", + "Threads" : "Гілки", + "Load average" : "Середнє навантаження", + "Database" : "База даних", + "Type:" : "Тип:", + "Version:" : "Версія:", + "Size:" : "Розмір:", + "{used} of {total} used" : "Використано {used} із {total} ", + "Used" : "Використовується", + "Available" : "Доступно", "Disk" : "Диск", + "Files" : "Файли", + "Storages" : "Сховища", + "Free space" : "Вільне місце", "Mount:" : "Точка монтування:", "Filesystem:" : "Файлова система:", - "Size:" : "Розмір:", "Available:" : "Доступно:", - "Used:" : "Використовується:", - "Files:" : "Файлів:", - "Storages:" : "Сховищ:", - "Free Space:" : "Вільно:", + "Used:" : "Використано:", + "Class" : "Клас", + "Status" : "Статус", + "Started" : "Розпочато", + "Duration" : "Тривалість", + "Peak memory" : "Пікове використання пам'яти", + "Run ID" : "ID запуску", + "Server ID" : "ID сервера", + "Process ID" : "ID процесу", + "Details about {job} from {time}" : "Докладно про {job} від {time}", + "Job" : "Робота", + "When" : "Коли", + "Details" : "Докладно", + "Succeeded" : "Успішно", + "Failed" : "Не вдалося", + "Crashed" : "Аварії", + "Running" : "Бігаю", + "RAM usage" : "Використання пам'яти", + "Swap usage" : "Використання буферу", + "Memory" : "Пам'ять", + "RAM info not available" : "Інформація про оперативну пам'ять недоступна", + "Total" : "Разом", + "Swap used" : "Використано буферу", + "External monitoring API" : "API для інструментів зовнішнього моніторингу", + "Endpoint URL" : "URL точки входу", + "Configuration" : "Конфігурація", + "Output in JSON" : "Вихідний звіт у форматі JSON", + "Skip apps section" : "Пропускати розділ застосунки", + "Including the apps section sends an external request to the app store" : "Включення розділу застосунків надсилатиме зовнішні запити до крамниці застосунків", + "Skip server update" : "Не показувати оновлення сервера", + "Authentication" : "Автентифікація", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Це токен було зґенеровано у вашому бравзері, його не буде збережено, поки ви не виконаєте команду, подану нижче. Надсилайте його у заголовку {header} під час кожного запиту.", + "Command to store the token" : "Команда для зберігання токену", + "Request header" : "Заголовок запиту", "Network" : "Мережа", - "Hostname:" : "Ім'я хосту:", - "Gateway:" : "Шлюз:", + "Hostname" : "Ім'я хоста", + "Gateway" : "Шлюз", + "DNS" : "DNS", "Status:" : "Стан:", "Speed:" : "Швидкість:", "Duplex:" : "Двосторонній обмін:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активні користувачі", - "Last hour" : "За останню годину", - "%s%% of all users" : "%s%% від усіх користувачів", - "Last 24 Hours" : "За останні 24 години", - "Last 7 Days" : "За останні 7 днів", - "Last 30 Days" : "За останні 30 днів", - "Shares" : "Ресурси спільного доступу", - "Users:" : "Користувачів:", - "Groups:" : "Груп:", - "Links:" : "Посилань:", - "Emails:" : "Ел. адрес:", - "Federated sent:" : "Надіслано на сусідні сервери:", - "Federated received:" : "Отримано від сусідніх серверів:", - "Talk conversations:" : "Розмов Talk:", + "{used} of {total}" : "{used} із {total}", + "Keys" : "Ключі", + "Disabled" : "Вимкнено", + "seconds" : "секунд", + "Yes" : "Так", + "No" : "Ні", + "PHP extensions" : "Розширення PHP", + "Extension" : "Розширення", + "Unable to list extensions" : "Не вдалося створити список розширень", "PHP" : "PHP", - "Version:" : "Версія:", - "Memory limit:" : "Обмеження пам'яті:", + "Version" : "Версія", + "Memory limit" : "Ліміт пам'яті", "Max execution time:" : "Максимальний час виконання:", "Upload max size:" : "Макс. розмір завантаження:", - "OPcache Revalidate Frequency:" : "Частота ревалідації OPcache:", "Extensions:" : "Розширення:", - "Unable to list extensions" : "Не вдалося створити список розширень", + "PHP Info:" : "Інфо PHP:", "Show phpinfo" : "Показати phpinfo", - "FPM worker pool" : "Кадровий резерв FPM", + "FPM worker pool" : "Набір обробників FPM", "Pool name:" : "Назва пулу:", "Pool type:" : "Тип пулу:", "Start time:" : "Початковий час:", @@ -82,16 +120,60 @@ OC.L10N.register( "Max listen queue:" : "Макс. черга прослуховування:", "Max active processes:" : "Макс. активних процесів:", "Max children reached:" : "Макс. досягнуто дочірніх процесів:", - "Database" : "База даних", - "Type:" : "Тип:", + "CPU" : "Процесор", + "Swap" : "Буфер", + "Resource usage" : "Використання ресурсів", + "Shares" : "Ресурси спільного доступу", + "Users:" : "Користувачів:", + "Groups:" : "Груп:", + "Links:" : "Посилань:", + "Emails:" : "Ел. адрес:", + "Federated sent:" : "Надіслано на сусідні сервери:", + "Federated received:" : "Отримано від сусідніх серверів:", + "Talk conversations:" : "Розмов Talk:", + "Runs" : "Виконання", + "Average" : "Середній показник", + "Longest" : "Найдовші", + "Warning" : "Попередження", + "Critical" : "Критичні", + "Operating System:" : "Операційна система:", + "CPU:" : "ЦП:", + "{name} ({threads} threads)" : "{name} ({threads} нитки)", + "Server time:" : "Час сервера:", + "Uptime:" : "Час роботи:", + "Temperature" : "Температура", + "{duration} ms" : "{duration} мс", + "{duration} s" : "{duration} с", + "CPU Usage:" : "Використання CPU:", + "Load average: {percentage} % ({load}) last minute" : "Середнє навантаження: {percentage} % ({load}) за останню хв.", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за останню хв.\n{last5MinutesPercentage} % ({last5Minutes}) за останні 5 хв.\n{last15MinutesPercentage} % ({last15Minutes}) за останні 15 хв.", + "RAM Usage:" : "Використання ОЗУ:", + "SWAP Usage:" : "Використання Swap:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Оперативна пам’ять: використано {memUsageBytes} із {memTotalBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Файл підкачки: використано {swapUsageBytes} із {swapTotalBytes}", + "SWAP info not available" : "Інформація про обмін недоступна", + "Copied!" : "Скопійовано!", + "Not supported!" : "Не підтримується!", + "Press ⌘-C to copy." : "Натисніть ⌘-C, щоб скопіювати.", + "Press Ctrl-C to copy." : "Натисніть Ctrl-C, щоб скопіювати.", + "threads" : "нитки", + "Memory:" : "Пам'ять:", + "Files:" : "Файлів:", + "Storages:" : "Сховищ:", + "Free Space:" : "Вільно:", + "Hostname:" : "Ім'я хосту:", + "Gateway:" : "Шлюз:", + "%s%% of all users" : "%s%% від усіх користувачів", + "Memory limit:" : "Обмеження пам'яті:", + "MB" : "МБ", + "OPcache Revalidate Frequency:" : "Частота ревалідації OPcache:", "External monitoring tool" : "Моніторинг сторонніми засобами", "Use this end point to connect an external monitoring tool:" : "Точка доступу для під'єднання зовнішніх інструментів моніторингу:", "Copy" : "Копіювати", - "Output in JSON" : "Вихідний звіт у форматі JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Не показувати інформацію про застосунки (показ даних застосунків призведе до надсилання зовнішніх запитів до крамниці застосунків)", - "Skip server update" : "Не показувати оновлення сервера", "To use an access token, please generate one then set it using the following command:" : "Щоби застосувати токен для доступу, спочатку зґенеруйте його, а потім встановіть за допомогою команди:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Потім передайте токен з додаванням заголовку \"NC-Token\" під час надсилання запиту за вказаною вище адресою URL.", - "Unknown Processor" : "Невідомий процесор" + "%1$s (%2$d threads)" : "%1$s (%2$d ниток)", + "DNS:" : "DNS:" }, "nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"); diff --git a/l10n/uk.json b/l10n/uk.json index 17d0a12e..e82269eb 100644 --- a/l10n/uk.json +++ b/l10n/uk.json @@ -1,73 +1,111 @@ { "translations": { - "CPU info not available" : "Інформація про процесор недоступна", - "CPU Usage:" : "Використання CPU:", - "Load average: {percentage} % ({load}) last minute" : "Середнє навантаження: {percentage} % ({load}) за останню хв.", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за останню хв.\n{last5MinutesPercentage} % ({last5Minutes}) за останні 5 хв.\n{last15MinutesPercentage} % ({last15Minutes}) за останні 15 хв.", - "RAM Usage:" : "Використання ОЗУ:", - "SWAP Usage:" : "Використання Swap:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Оперативна пам’ять: використовується {memUsageBytes} із {memTotalBytes}", - "RAM info not available" : "Інформація про оперативну пам'ять недоступна", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Файл підкачки: використовується {swapUsageBytes} із {swapTotalBytes}", - "SWAP info not available" : "Інформація про обмін недоступна", - "Copied!" : "Скопійовано!", - "Not supported!" : "Не підтримується!", - "Press ⌘-C to copy." : "Натисніть ⌘-C, щоб скопіювати.", - "Press Ctrl-C to copy." : "Натисніть Ctrl-C, щоб скопіювати.", "System" : "Система", + "Unknown" : "Невідомо", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d днів, %2$d годин, %3$d хвилин, %4$d секунд", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d годин, %2$d хвилин, %3$d секунд", "Monitoring" : "Моніторинг", "Monitoring app with useful server information" : "Застосунок моніторингу з корисною інформацією про сервер", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Надає корисну інформацію про сервер, таку як навантаження ЦПУ, використання пам'яті, використання диску, кількість користувачів тощо.", - "Operating System:" : "Операційна система:", - "CPU:" : "ЦП:", - "threads" : "нитки", - "Memory:" : "Пам'ять:", - "Server time:" : "Час сервера:", - "Uptime:" : "Час роботи:", - "Temperature" : "Температура", + "{0}% of all users" : "{0}% від усіх користувачів", + "Active users" : "Активні користувачі", + "Last hour" : "За останню годину", + "Last 24 Hours" : "За останні 24 години", + "Last 7 Days" : "За останні 7 днів", + "Last 30 Days" : "За останні 30 днів", + "System cron" : "Системний cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX (не рекомендовано)", + "Background jobs" : "Фонові завдання", + "Mode" : "Режим", + "Last run" : "Останній запуск", + "Never" : "Ніколи", + "Latest runs" : "Останні виконання", + "No background job has run yet." : "Фонові завдання поки не було виконано.", + "Slowest jobs" : "Повільні завдання", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "Стаститика щодо повільне виконання завдань поки недоступна. Її збір відбувається в фоні, з'явиться після наступного запуску.", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["Останні невдалі запуски (протягом останнього дня)","Останні невдалі запуски (останні %n дні)","Останні невдалі запуски (останні %n днів)","Останні невдалі запуски (останні %n днів)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["За останній %n день відсутні невдалі запуски","За останні %n дні відсутні невдалі запуски","За останні %n днів відсутні невдалі запуски","За останні %n днів відсутні невдалі запуски"], "Load" : "Навантаження", - "Memory" : "Пам'ять", + "CPU info not available" : "Інформація про процесор недоступна", + "Current usage" : "Поточне використання", + "Threads" : "Гілки", + "Load average" : "Середнє навантаження", + "Database" : "База даних", + "Type:" : "Тип:", + "Version:" : "Версія:", + "Size:" : "Розмір:", + "{used} of {total} used" : "Використано {used} із {total} ", + "Used" : "Використовується", + "Available" : "Доступно", "Disk" : "Диск", + "Files" : "Файли", + "Storages" : "Сховища", + "Free space" : "Вільне місце", "Mount:" : "Точка монтування:", "Filesystem:" : "Файлова система:", - "Size:" : "Розмір:", "Available:" : "Доступно:", - "Used:" : "Використовується:", - "Files:" : "Файлів:", - "Storages:" : "Сховищ:", - "Free Space:" : "Вільно:", + "Used:" : "Використано:", + "Class" : "Клас", + "Status" : "Статус", + "Started" : "Розпочато", + "Duration" : "Тривалість", + "Peak memory" : "Пікове використання пам'яти", + "Run ID" : "ID запуску", + "Server ID" : "ID сервера", + "Process ID" : "ID процесу", + "Details about {job} from {time}" : "Докладно про {job} від {time}", + "Job" : "Робота", + "When" : "Коли", + "Details" : "Докладно", + "Succeeded" : "Успішно", + "Failed" : "Не вдалося", + "Crashed" : "Аварії", + "Running" : "Бігаю", + "RAM usage" : "Використання пам'яти", + "Swap usage" : "Використання буферу", + "Memory" : "Пам'ять", + "RAM info not available" : "Інформація про оперативну пам'ять недоступна", + "Total" : "Разом", + "Swap used" : "Використано буферу", + "External monitoring API" : "API для інструментів зовнішнього моніторингу", + "Endpoint URL" : "URL точки входу", + "Configuration" : "Конфігурація", + "Output in JSON" : "Вихідний звіт у форматі JSON", + "Skip apps section" : "Пропускати розділ застосунки", + "Including the apps section sends an external request to the app store" : "Включення розділу застосунків надсилатиме зовнішні запити до крамниці застосунків", + "Skip server update" : "Не показувати оновлення сервера", + "Authentication" : "Автентифікація", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "Це токен було зґенеровано у вашому бравзері, його не буде збережено, поки ви не виконаєте команду, подану нижче. Надсилайте його у заголовку {header} під час кожного запиту.", + "Command to store the token" : "Команда для зберігання токену", + "Request header" : "Заголовок запиту", "Network" : "Мережа", - "Hostname:" : "Ім'я хосту:", - "Gateway:" : "Шлюз:", + "Hostname" : "Ім'я хоста", + "Gateway" : "Шлюз", + "DNS" : "DNS", "Status:" : "Стан:", "Speed:" : "Швидкість:", "Duplex:" : "Двосторонній обмін:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "Активні користувачі", - "Last hour" : "За останню годину", - "%s%% of all users" : "%s%% від усіх користувачів", - "Last 24 Hours" : "За останні 24 години", - "Last 7 Days" : "За останні 7 днів", - "Last 30 Days" : "За останні 30 днів", - "Shares" : "Ресурси спільного доступу", - "Users:" : "Користувачів:", - "Groups:" : "Груп:", - "Links:" : "Посилань:", - "Emails:" : "Ел. адрес:", - "Federated sent:" : "Надіслано на сусідні сервери:", - "Federated received:" : "Отримано від сусідніх серверів:", - "Talk conversations:" : "Розмов Talk:", + "{used} of {total}" : "{used} із {total}", + "Keys" : "Ключі", + "Disabled" : "Вимкнено", + "seconds" : "секунд", + "Yes" : "Так", + "No" : "Ні", + "PHP extensions" : "Розширення PHP", + "Extension" : "Розширення", + "Unable to list extensions" : "Не вдалося створити список розширень", "PHP" : "PHP", - "Version:" : "Версія:", - "Memory limit:" : "Обмеження пам'яті:", + "Version" : "Версія", + "Memory limit" : "Ліміт пам'яті", "Max execution time:" : "Максимальний час виконання:", "Upload max size:" : "Макс. розмір завантаження:", - "OPcache Revalidate Frequency:" : "Частота ревалідації OPcache:", "Extensions:" : "Розширення:", - "Unable to list extensions" : "Не вдалося створити список розширень", + "PHP Info:" : "Інфо PHP:", "Show phpinfo" : "Показати phpinfo", - "FPM worker pool" : "Кадровий резерв FPM", + "FPM worker pool" : "Набір обробників FPM", "Pool name:" : "Назва пулу:", "Pool type:" : "Тип пулу:", "Start time:" : "Початковий час:", @@ -80,16 +118,60 @@ "Max listen queue:" : "Макс. черга прослуховування:", "Max active processes:" : "Макс. активних процесів:", "Max children reached:" : "Макс. досягнуто дочірніх процесів:", - "Database" : "База даних", - "Type:" : "Тип:", + "CPU" : "Процесор", + "Swap" : "Буфер", + "Resource usage" : "Використання ресурсів", + "Shares" : "Ресурси спільного доступу", + "Users:" : "Користувачів:", + "Groups:" : "Груп:", + "Links:" : "Посилань:", + "Emails:" : "Ел. адрес:", + "Federated sent:" : "Надіслано на сусідні сервери:", + "Federated received:" : "Отримано від сусідніх серверів:", + "Talk conversations:" : "Розмов Talk:", + "Runs" : "Виконання", + "Average" : "Середній показник", + "Longest" : "Найдовші", + "Warning" : "Попередження", + "Critical" : "Критичні", + "Operating System:" : "Операційна система:", + "CPU:" : "ЦП:", + "{name} ({threads} threads)" : "{name} ({threads} нитки)", + "Server time:" : "Час сервера:", + "Uptime:" : "Час роботи:", + "Temperature" : "Температура", + "{duration} ms" : "{duration} мс", + "{duration} s" : "{duration} с", + "CPU Usage:" : "Використання CPU:", + "Load average: {percentage} % ({load}) last minute" : "Середнє навантаження: {percentage} % ({load}) за останню хв.", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) за останню хв.\n{last5MinutesPercentage} % ({last5Minutes}) за останні 5 хв.\n{last15MinutesPercentage} % ({last15Minutes}) за останні 15 хв.", + "RAM Usage:" : "Використання ОЗУ:", + "SWAP Usage:" : "Використання Swap:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Оперативна пам’ять: використано {memUsageBytes} із {memTotalBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Файл підкачки: використано {swapUsageBytes} із {swapTotalBytes}", + "SWAP info not available" : "Інформація про обмін недоступна", + "Copied!" : "Скопійовано!", + "Not supported!" : "Не підтримується!", + "Press ⌘-C to copy." : "Натисніть ⌘-C, щоб скопіювати.", + "Press Ctrl-C to copy." : "Натисніть Ctrl-C, щоб скопіювати.", + "threads" : "нитки", + "Memory:" : "Пам'ять:", + "Files:" : "Файлів:", + "Storages:" : "Сховищ:", + "Free Space:" : "Вільно:", + "Hostname:" : "Ім'я хосту:", + "Gateway:" : "Шлюз:", + "%s%% of all users" : "%s%% від усіх користувачів", + "Memory limit:" : "Обмеження пам'яті:", + "MB" : "МБ", + "OPcache Revalidate Frequency:" : "Частота ревалідації OPcache:", "External monitoring tool" : "Моніторинг сторонніми засобами", "Use this end point to connect an external monitoring tool:" : "Точка доступу для під'єднання зовнішніх інструментів моніторингу:", "Copy" : "Копіювати", - "Output in JSON" : "Вихідний звіт у форматі JSON", "Skip apps section (including apps section will send an external request to the app store)" : "Не показувати інформацію про застосунки (показ даних застосунків призведе до надсилання зовнішніх запитів до крамниці застосунків)", - "Skip server update" : "Не показувати оновлення сервера", "To use an access token, please generate one then set it using the following command:" : "Щоби застосувати токен для доступу, спочатку зґенеруйте його, а потім встановіть за допомогою команди:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Потім передайте токен з додаванням заголовку \"NC-Token\" під час надсилання запиту за вказаною вище адресою URL.", - "Unknown Processor" : "Невідомий процесор" + "%1$s (%2$d threads)" : "%1$s (%2$d ниток)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);" } \ No newline at end of file diff --git a/l10n/uz.js b/l10n/uz.js index a98a7750..857f0fed 100644 --- a/l10n/uz.js +++ b/l10n/uz.js @@ -1,11 +1,117 @@ OC.L10N.register( "serverinfo", { - "Copied!" : "Copied!", - "Not supported!" : "Not supported!", - "Press ⌘-C to copy." : "Press ⌘-C to copy.", - "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", - "System" : "System", - "Copy" : "Copy" + "System" : "Tizim", + "Unknown" : "Noma'lum", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d kun, %2$d soat, %3$d daqiqa, %4$d soniya", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d soat, %2$d daqiqa, %3$d soniya", + "Monitoring" : "Monitoring", + "Monitoring app with useful server information" : "Foydali server ma'lumotlari bilan monitoring ilovasi", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU yuklanishi, operativ xotiradan foydalanish, diskdan foydalanish, foydalanuvchilar soni va boshqalar kabi foydali server ma'lumotlarini taqdim etadi.", + "Active users" : "Faol foydalanuvchilar", + "Last hour" : "So'nggi soat", + "Last 24 Hours" : "So'nggi 24 soat", + "Last 7 Days" : "So'nggi 7 kun", + "Last 30 Days" : "Oxirgi 30 kun", + "Mode" : "Rejim", + "Never" : "Hech qachon", + "Load" : "Yuklamoq", + "CPU info not available" : "CPU haqida ma'lumot mavjud emas", + "Load average" : "Load average", + "Database" : "Ma'lumotlar bazasi", + "Type:" : "Turi:", + "Version:" : "Versiya:", + "Size:" : "Hajmi:", + "Available" : "Mavjud", + "Disk" : "Disk", + "Files" : "Fayllar", + "Mount:" : "O'rnatish:", + "Filesystem:" : "Fayl tizimi:", + "Available:" : "Mavjud:", + "Used:" : "Ishlatilgan:", + "Status" : "Holat", + "Duration" : "Davomiyligi", + "Details" : "Tafsilotlar", + "Memory" : "Xotira", + "RAM info not available" : "Operativ xotira haqida ma'lumot mavjud emas", + "Total" : "Jami", + "Output in JSON" : "JSON formatida chiqish", + "Skip server update" : "Server yangilanishini o'tkazib yuborish", + "Authentication" : "Autentifikatsiya", + "Network" : "Tarmoq", + "Status:" : "Holati:", + "Speed:" : "Tezlik:", + "Duplex:" : "Dupleks:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Kalitlar", + "seconds" : "sekundlar", + "Yes" : "Ha", + "No" : "Yo`q", + "Unable to list extensions" : "Kengaytmalarni ro'yxatga kiritish imkoni yo'q", + "PHP" : "PHP", + "Version" : "Versiya", + "Max execution time:" : "Maksimal bajarish vaqti:", + "Upload max size:" : "Maksimal hajmni yuklash:", + "Extensions:" : "Kengaytmalar:", + "PHP Info:" : "PHP haqida ma'lumot:", + "Show phpinfo" : "phpinfo-ni ko'rsatish", + "FPM worker pool" : "FPM ishchilari guruhi", + "Pool name:" : "Pul nomi:", + "Pool type:" : "Pul turi:", + "Start time:" : "Boshlanish vaqti:", + "Accepted connections:" : "Qabul qilingan ulanishlar:", + "Total processes:" : "Jami jarayonlar:", + "Active processes:" : "Faol jarayonlar:", + "Idle processes:" : "Bo'sh jarayonlar:", + "Listen queue:" : "Tinglash navbati:", + "Slow requests:" : "Sekin so'rovlar:", + "Max listen queue:" : "Maksimal tinglash navbati:", + "Max active processes:" : "Maksimal faol jarayonlar:", + "Max children reached:" : "Maksimal bolalar yetib kelishdi:", + "Shares" : "Ulashishlar", + "Users:" : "Foydalanuvchilar:", + "Groups:" : "Guruhlar:", + "Links:" : "Havolalar:", + "Emails:" : "Elektron pochta xabarlari:", + "Federated sent:" : "Markaz tomonidan yuborildi:", + "Federated received:" : "Markaz tomonidan qabul qilindi:", + "Talk conversations:" : "Suhbat sharxi:", + "Warning" : "Ogohlantirish", + "Operating System:" : "Operatsion tizim:", + "CPU:" : "CPU:", + "Server time:" : "Server vaqti:", + "Uptime:" : "Ish vaqti:", + "Temperature" : "Harorat", + "CPU Usage:" : "CPU foydalanishi:", + "Load average: {percentage} % ({load}) last minute" : "Yuklanish o'rtachasi: oxirgi daqiqada {percentage} % ({load})", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) oxirgi daqiqa\n{last5MinutesPercentage} % ({last5Minutes}) oxirgi 5 daqiqa\n{last15MinutesPercentage} % ({last15Minutes}) oxirgi 15 daqiqa", + "RAM Usage:" : "Operativ xotiradan foydalanish:", + "SWAP Usage:" : "SWAPdan foydalanish:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Operativ xotira: Jami: {memTotalBytes}/Joriy foydalanish: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Jami: {swapTotalBytes}/Joriy foydalanish: {swapUsageBytes}", + "SWAP info not available" : "SWAP ma'lumotlari mavjud emas", + "Copied!" : "Nusxalandi!", + "Not supported!" : "Qo'llab-quvvatlanmaydi!", + "Press ⌘-C to copy." : "Nusxalash uchun ⌘-C ni bosing.", + "Press Ctrl-C to copy." : "Nusxalash uchun Ctrl-C ni bosing.", + "threads" : "yo'nalishlar", + "Memory:" : "Xotira:", + "Files:" : "Fayllar:", + "Storages:" : "Omborlar:", + "Free Space:" : "Bo'sh joy:", + "Hostname:" : "Xost nomi:", + "Gateway:" : "Darvoza:", + "%s%% of all users" : "Barcha foydalanuvchilarning %s%%", + "Memory limit:" : "Xotira chegarasi:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache qayta tasdiqlash chastotasi:", + "External monitoring tool" : "Tashqi monitoring vositasi", + "Use this end point to connect an external monitoring tool:" : "Tashqi monitoring vositasini ulash uchun ushbu so'nggi nuqtadan foydalaning:", + "Copy" : "Nusxa", + "Skip apps section (including apps section will send an external request to the app store)" : "Ilovalarni o'tkazib yuborish bo'limi (ilovalar bo'limi ham ilova do'koniga tashqi so'rov yuboradi)", + "To use an access token, please generate one then set it using the following command:" : "Kirish tokenidan foydalanish uchun, iltimos, uni yarating va keyin uni quyidagi buyruq yordamida o'rnating:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Keyin yuqoridagi URL manziliga so'rov yuborayotganda tokenni \"NC-Token\" sarlavhasi bilan uzating." }, "nplurals=1; plural=0;"); diff --git a/l10n/uz.json b/l10n/uz.json index bd1a4959..0885b272 100644 --- a/l10n/uz.json +++ b/l10n/uz.json @@ -1,9 +1,115 @@ { "translations": { - "Copied!" : "Copied!", - "Not supported!" : "Not supported!", - "Press ⌘-C to copy." : "Press ⌘-C to copy.", - "Press Ctrl-C to copy." : "Press Ctrl-C to copy.", - "System" : "System", - "Copy" : "Copy" + "System" : "Tizim", + "Unknown" : "Noma'lum", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d kun, %2$d soat, %3$d daqiqa, %4$d soniya", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d soat, %2$d daqiqa, %3$d soniya", + "Monitoring" : "Monitoring", + "Monitoring app with useful server information" : "Foydali server ma'lumotlari bilan monitoring ilovasi", + "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "CPU yuklanishi, operativ xotiradan foydalanish, diskdan foydalanish, foydalanuvchilar soni va boshqalar kabi foydali server ma'lumotlarini taqdim etadi.", + "Active users" : "Faol foydalanuvchilar", + "Last hour" : "So'nggi soat", + "Last 24 Hours" : "So'nggi 24 soat", + "Last 7 Days" : "So'nggi 7 kun", + "Last 30 Days" : "Oxirgi 30 kun", + "Mode" : "Rejim", + "Never" : "Hech qachon", + "Load" : "Yuklamoq", + "CPU info not available" : "CPU haqida ma'lumot mavjud emas", + "Load average" : "Load average", + "Database" : "Ma'lumotlar bazasi", + "Type:" : "Turi:", + "Version:" : "Versiya:", + "Size:" : "Hajmi:", + "Available" : "Mavjud", + "Disk" : "Disk", + "Files" : "Fayllar", + "Mount:" : "O'rnatish:", + "Filesystem:" : "Fayl tizimi:", + "Available:" : "Mavjud:", + "Used:" : "Ishlatilgan:", + "Status" : "Holat", + "Duration" : "Davomiyligi", + "Details" : "Tafsilotlar", + "Memory" : "Xotira", + "RAM info not available" : "Operativ xotira haqida ma'lumot mavjud emas", + "Total" : "Jami", + "Output in JSON" : "JSON formatida chiqish", + "Skip server update" : "Server yangilanishini o'tkazib yuborish", + "Authentication" : "Autentifikatsiya", + "Network" : "Tarmoq", + "Status:" : "Holati:", + "Speed:" : "Tezlik:", + "Duplex:" : "Dupleks:", + "MAC:" : "MAC:", + "IPv4:" : "IPv4:", + "IPv6:" : "IPv6:", + "Keys" : "Kalitlar", + "seconds" : "sekundlar", + "Yes" : "Ha", + "No" : "Yo`q", + "Unable to list extensions" : "Kengaytmalarni ro'yxatga kiritish imkoni yo'q", + "PHP" : "PHP", + "Version" : "Versiya", + "Max execution time:" : "Maksimal bajarish vaqti:", + "Upload max size:" : "Maksimal hajmni yuklash:", + "Extensions:" : "Kengaytmalar:", + "PHP Info:" : "PHP haqida ma'lumot:", + "Show phpinfo" : "phpinfo-ni ko'rsatish", + "FPM worker pool" : "FPM ishchilari guruhi", + "Pool name:" : "Pul nomi:", + "Pool type:" : "Pul turi:", + "Start time:" : "Boshlanish vaqti:", + "Accepted connections:" : "Qabul qilingan ulanishlar:", + "Total processes:" : "Jami jarayonlar:", + "Active processes:" : "Faol jarayonlar:", + "Idle processes:" : "Bo'sh jarayonlar:", + "Listen queue:" : "Tinglash navbati:", + "Slow requests:" : "Sekin so'rovlar:", + "Max listen queue:" : "Maksimal tinglash navbati:", + "Max active processes:" : "Maksimal faol jarayonlar:", + "Max children reached:" : "Maksimal bolalar yetib kelishdi:", + "Shares" : "Ulashishlar", + "Users:" : "Foydalanuvchilar:", + "Groups:" : "Guruhlar:", + "Links:" : "Havolalar:", + "Emails:" : "Elektron pochta xabarlari:", + "Federated sent:" : "Markaz tomonidan yuborildi:", + "Federated received:" : "Markaz tomonidan qabul qilindi:", + "Talk conversations:" : "Suhbat sharxi:", + "Warning" : "Ogohlantirish", + "Operating System:" : "Operatsion tizim:", + "CPU:" : "CPU:", + "Server time:" : "Server vaqti:", + "Uptime:" : "Ish vaqti:", + "Temperature" : "Harorat", + "CPU Usage:" : "CPU foydalanishi:", + "Load average: {percentage} % ({load}) last minute" : "Yuklanish o'rtachasi: oxirgi daqiqada {percentage} % ({load})", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) oxirgi daqiqa\n{last5MinutesPercentage} % ({last5Minutes}) oxirgi 5 daqiqa\n{last15MinutesPercentage} % ({last15Minutes}) oxirgi 15 daqiqa", + "RAM Usage:" : "Operativ xotiradan foydalanish:", + "SWAP Usage:" : "SWAPdan foydalanish:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Operativ xotira: Jami: {memTotalBytes}/Joriy foydalanish: {memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Jami: {swapTotalBytes}/Joriy foydalanish: {swapUsageBytes}", + "SWAP info not available" : "SWAP ma'lumotlari mavjud emas", + "Copied!" : "Nusxalandi!", + "Not supported!" : "Qo'llab-quvvatlanmaydi!", + "Press ⌘-C to copy." : "Nusxalash uchun ⌘-C ni bosing.", + "Press Ctrl-C to copy." : "Nusxalash uchun Ctrl-C ni bosing.", + "threads" : "yo'nalishlar", + "Memory:" : "Xotira:", + "Files:" : "Fayllar:", + "Storages:" : "Omborlar:", + "Free Space:" : "Bo'sh joy:", + "Hostname:" : "Xost nomi:", + "Gateway:" : "Darvoza:", + "%s%% of all users" : "Barcha foydalanuvchilarning %s%%", + "Memory limit:" : "Xotira chegarasi:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache qayta tasdiqlash chastotasi:", + "External monitoring tool" : "Tashqi monitoring vositasi", + "Use this end point to connect an external monitoring tool:" : "Tashqi monitoring vositasini ulash uchun ushbu so'nggi nuqtadan foydalaning:", + "Copy" : "Nusxa", + "Skip apps section (including apps section will send an external request to the app store)" : "Ilovalarni o'tkazib yuborish bo'limi (ilovalar bo'limi ham ilova do'koniga tashqi so'rov yuboradi)", + "To use an access token, please generate one then set it using the following command:" : "Kirish tokenidan foydalanish uchun, iltimos, uni yarating va keyin uni quyidagi buyruq yordamida o'rnating:", + "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Keyin yuqoridagi URL manziliga so'rov yuborayotganda tokenni \"NC-Token\" sarlavhasi bilan uzating." },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/vi.js b/l10n/vi.js index bbe47df6..ae39d9e5 100644 --- a/l10n/vi.js +++ b/l10n/vi.js @@ -1,27 +1,49 @@ OC.L10N.register( "serverinfo", { + "System" : "Hệ thống", + "Unknown" : "Không xác định", + "Monitoring" : "Giám sát", + "Active users" : "Người dùng hoạt động", + "Background jobs" : "Các công việc trong nền", + "Mode" : "Chế độ", + "Never" : "Không bao giờ", "CPU info not available" : "Không lấy được thông tin CPU", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Tổng: {memTotalBytes}/Đang sử dụng: {memUsageBytes}", + "Current usage" : "Sử dụng hiện tại", + "Load average" : "Tải trung bình", + "Database" : "Cơ sở dữ liệu", + "Type:" : "Loại:", + "Version:" : "Phiên bản:", + "Size:" : "Kích thước:", + "Available" : "Khả dụng", + "Files" : "Tệp Tin", + "Started" : "Đã bắt đầu", + "Duration" : "Khoảng thời gian", + "Details" : "Chi tiết", + "Running" : "Chạy bộ", "RAM info not available" : "Không lấy được thông tin RAM", + "Total" : "Tổng cộng", + "Authentication" : "Xác thực", + "Disabled" : "Đã vô hiệu", + "seconds" : "giây", + "Yes" : "Có", + "No" : "Không", + "PHP extensions" : "các PHP mở rộng", + "Extension" : "Tiện ích", + "PHP" : "PHP", + "Version" : "Phiên bản", + "Upload max size:" : "Kích thước Upload tối đa:", + "Shares" : "Chia sẻ", + "Users:" : "Người dùng:", + "Warning" : "Cảnh báo", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Tổng: {memTotalBytes}/Đang sử dụng: {memUsageBytes}", "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Tổng: {swapTotalBytes}/Đang sử dụng: {swapUsageBytes}", "SWAP info not available" : "Không lấy được thông tin SWAP", "Copied!" : "Đã sao chép!", "Not supported!" : "Không hỗ trợ!", "Press ⌘-C to copy." : "Bấm ⌘-C để sao chép.", "Press Ctrl-C to copy." : "Bấm Ctrl-C để sao chép.", - "System" : "Hệ thống", - "Monitoring" : "Giám sát", - "Size:" : "Kích thước:", "Files:" : "Tệp tin:", - "Active users" : "Người dùng hoạt động", - "Shares" : "Chia sẻ", - "Users:" : "Người dùng:", - "PHP" : "PHP", - "Version:" : "Phiên bản:", - "Upload max size:" : "Kích thước Upload tối đa:", - "Database" : "Cơ sở dữ liệu", - "Type:" : "Loại:", "External monitoring tool" : "Công cụ giám sát ngoài", "Copy" : "Sao chép" }, diff --git a/l10n/vi.json b/l10n/vi.json index 60d93781..3bfecb86 100644 --- a/l10n/vi.json +++ b/l10n/vi.json @@ -1,25 +1,47 @@ { "translations": { + "System" : "Hệ thống", + "Unknown" : "Không xác định", + "Monitoring" : "Giám sát", + "Active users" : "Người dùng hoạt động", + "Background jobs" : "Các công việc trong nền", + "Mode" : "Chế độ", + "Never" : "Không bao giờ", "CPU info not available" : "Không lấy được thông tin CPU", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Tổng: {memTotalBytes}/Đang sử dụng: {memUsageBytes}", + "Current usage" : "Sử dụng hiện tại", + "Load average" : "Tải trung bình", + "Database" : "Cơ sở dữ liệu", + "Type:" : "Loại:", + "Version:" : "Phiên bản:", + "Size:" : "Kích thước:", + "Available" : "Khả dụng", + "Files" : "Tệp Tin", + "Started" : "Đã bắt đầu", + "Duration" : "Khoảng thời gian", + "Details" : "Chi tiết", + "Running" : "Chạy bộ", "RAM info not available" : "Không lấy được thông tin RAM", + "Total" : "Tổng cộng", + "Authentication" : "Xác thực", + "Disabled" : "Đã vô hiệu", + "seconds" : "giây", + "Yes" : "Có", + "No" : "Không", + "PHP extensions" : "các PHP mở rộng", + "Extension" : "Tiện ích", + "PHP" : "PHP", + "Version" : "Phiên bản", + "Upload max size:" : "Kích thước Upload tối đa:", + "Shares" : "Chia sẻ", + "Users:" : "Người dùng:", + "Warning" : "Cảnh báo", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Tổng: {memTotalBytes}/Đang sử dụng: {memUsageBytes}", "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Tổng: {swapTotalBytes}/Đang sử dụng: {swapUsageBytes}", "SWAP info not available" : "Không lấy được thông tin SWAP", "Copied!" : "Đã sao chép!", "Not supported!" : "Không hỗ trợ!", "Press ⌘-C to copy." : "Bấm ⌘-C để sao chép.", "Press Ctrl-C to copy." : "Bấm Ctrl-C để sao chép.", - "System" : "Hệ thống", - "Monitoring" : "Giám sát", - "Size:" : "Kích thước:", "Files:" : "Tệp tin:", - "Active users" : "Người dùng hoạt động", - "Shares" : "Chia sẻ", - "Users:" : "Người dùng:", - "PHP" : "PHP", - "Version:" : "Phiên bản:", - "Upload max size:" : "Kích thước Upload tối đa:", - "Database" : "Cơ sở dữ liệu", - "Type:" : "Loại:", "External monitoring tool" : "Công cụ giám sát ngoài", "Copy" : "Sao chép" },"pluralForm" :"nplurals=1; plural=0;" diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js index fe71c51c..1d360aaa 100644 --- a/l10n/zh_CN.js +++ b/l10n/zh_CN.js @@ -1,54 +1,82 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU 信息不可用", - "CPU Usage:" : "CPU 使用量:", - "RAM Usage:" : "内存使用量:", - "SWAP Usage:" : "交换内存使用量:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 总共:{memTotalBytes}/当前用量:{memUsageBytes}", - "RAM info not available" : "RAM 信息不可用", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: 总共:{swapTotalBytes}/当前用量:{swapUsageBytes}", - "SWAP info not available" : "SWAP 信息不可用", - "Copied!" : "已复制!", - "Not supported!" : "不支持!", - "Press ⌘-C to copy." : "使用 ⌘-C 复制。", - "Press Ctrl-C to copy." : "使用 Ctrl-C 复制。", "System" : "系统", + "Unknown" : "未知", "Monitoring" : "监视器", "Monitoring app with useful server information" : "使用使用的服务器信息监视应用程序", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的服务器信息,例如 CPU 负载、内存占用、硬盘占用、在线用户数等。", - "Operating System:" : "操作系统:", - "CPU:" : "CPU:", - "Memory:" : "内存:", - "Server time:" : "服务器时间:", - "Uptime:" : "运行时长:", - "Temperature" : "温度", + "Active users" : "活跃用户", + "Last hour" : "上个小时", + "Last 24 Hours" : "最近24小时", + "Last 7 Days" : "过去7天", + "Last 30 Days" : "过去30天", + "Webcron" : "Webcron", + "Background jobs" : "后台任务", + "Mode" : "模式", + "Never" : "永不", "Load" : "负载", - "Memory" : "内存", + "CPU info not available" : "CPU 信息不可用", + "Current usage" : "当前用量", + "Threads" : "帖子‌", + "Load average" : "平均负载", + "Database" : "数据库", + "Type:" : "类型:", + "Version:" : "版本:", + "Size:" : "大小:", + "Used" : "已用", + "Available" : "可用", "Disk" : "磁盘", + "Files" : "文件", + "Storages" : "存储", "Mount:" : "挂载:", "Filesystem:" : "文件系统:", - "Size:" : "大小:", "Available:" : "可用:", "Used:" : "已使用:", - "Files:" : "文件:", - "Storages:" : "存储设备:", - "Free Space:" : "剩余空间:", + "Status" : "状态", + "Started" : "已开始", + "Duration" : "时长", + "Job" : "任务", + "When" : "时间", + "Details" : "详情", + "Succeeded" : "成功", + "Failed" : "失败", + "Running" : "运行中", + "Memory" : "内存", + "RAM info not available" : "RAM 信息不可用", + "Total" : "总量", + "Configuration" : "配置", + "Output in JSON" : "JSON 格式输出", + "Skip server update" : "跳过服务器更新", + "Authentication" : "身份验证", "Network" : "网络", - "Hostname:" : "主机名:", - "Gateway:" : "网关:", + "Hostname" : "主机名", + "Gateway" : "网关", + "DNS" : "DNS", "Status:" : "状态:", "Speed:" : "速度:", "Duplex:" : "复式:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "活跃用户", - "Last hour" : "上个小时", - "%s%% of all users" : "%s%% 所有用户", - "Last 24 Hours" : "最近24小时", - "Last 7 Days" : "过去7天", - "Last 30 Days" : "过去30天", + "Keys" : "密钥", + "Disabled" : "已禁用", + "seconds" : "秒", + "Yes" : "是", + "No" : "否", + "PHP extensions" : "PHP 扩展", + "Extension" : "扩展", + "Unable to list extensions" : "无法获取扩展列表", + "PHP" : "PHP", + "Version" : "版本", + "Memory limit" : "内存限制", + "Max execution time:" : "最大执行时间:", + "Upload max size:" : "最大上传大小:", + "Extensions:" : "扩展:", + "Show phpinfo" : "显示phpinfo", + "Active processes:" : "活跃进程:", + "Idle processes:" : "空闲进程:", + "CPU" : "CPU", "Shares" : "共享", "Users:" : "用户:", "Groups:" : "组别:", @@ -57,27 +85,38 @@ OC.L10N.register( "Federated sent:" : "联合云发送:", "Federated received:" : "联合云接收:", "Talk conversations:" : "通话应用对话:", - "PHP" : "PHP", - "Version:" : "版本:", + "Average" : "平均测光", + "Warning" : "警告", + "Operating System:" : "操作系统:", + "CPU:" : "CPU:", + "Server time:" : "服务器时间:", + "Uptime:" : "运行时长:", + "Temperature" : "温度", + "CPU Usage:" : "CPU 使用量:", + "RAM Usage:" : "内存使用量:", + "SWAP Usage:" : "交换内存使用量:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 总共:{memTotalBytes}/当前用量:{memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: 总共:{swapTotalBytes}/当前用量:{swapUsageBytes}", + "SWAP info not available" : "SWAP 信息不可用", + "Copied!" : "已复制!", + "Not supported!" : "不支持!", + "Press ⌘-C to copy." : "使用 ⌘-C 复制。", + "Press Ctrl-C to copy." : "使用 Ctrl-C 复制。", + "Memory:" : "内存:", + "Files:" : "文件:", + "Storages:" : "存储设备:", + "Free Space:" : "剩余空间:", + "Hostname:" : "主机名:", + "Gateway:" : "网关:", + "%s%% of all users" : "%s%% 所有用户", "Memory limit:" : "内存限制:", - "Max execution time:" : "最大执行时间:", - "Upload max size:" : "最大上传大小:", "OPcache Revalidate Frequency:" : "OPcache重验证频率:", - "Extensions:" : "扩展:", - "Unable to list extensions" : "无法获取扩展列表", - "Show phpinfo" : "显示phpinfo", - "Active processes:" : "活跃进程:", - "Idle processes:" : "空闲进程:", - "Database" : "数据库", - "Type:" : "类型:", "External monitoring tool" : "外部监视工具", "Use this end point to connect an external monitoring tool:" : "使用此接口连接外部监视工具:", "Copy" : "复制", - "Output in JSON" : "JSON 格式输出", "Skip apps section (including apps section will send an external request to the app store)" : "跳过应用程序部分(包括应用程序部分向应用商店发送外部请求)", - "Skip server update" : "跳过服务器更新", "To use an access token, please generate one then set it using the following command:" : "要使用一个访问令牌,请生成一个,然后使用以下命令设置它:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "然后在查询上述 URL 时传递带有 “NC-Token” 头的令牌。", - "Unknown Processor" : "未知处理器" + "DNS:" : "DNS:" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json index 3ee47ae3..05092f70 100644 --- a/l10n/zh_CN.json +++ b/l10n/zh_CN.json @@ -1,52 +1,80 @@ { "translations": { - "CPU info not available" : "CPU 信息不可用", - "CPU Usage:" : "CPU 使用量:", - "RAM Usage:" : "内存使用量:", - "SWAP Usage:" : "交换内存使用量:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 总共:{memTotalBytes}/当前用量:{memUsageBytes}", - "RAM info not available" : "RAM 信息不可用", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: 总共:{swapTotalBytes}/当前用量:{swapUsageBytes}", - "SWAP info not available" : "SWAP 信息不可用", - "Copied!" : "已复制!", - "Not supported!" : "不支持!", - "Press ⌘-C to copy." : "使用 ⌘-C 复制。", - "Press Ctrl-C to copy." : "使用 Ctrl-C 复制。", "System" : "系统", + "Unknown" : "未知", "Monitoring" : "监视器", "Monitoring app with useful server information" : "使用使用的服务器信息监视应用程序", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的服务器信息,例如 CPU 负载、内存占用、硬盘占用、在线用户数等。", - "Operating System:" : "操作系统:", - "CPU:" : "CPU:", - "Memory:" : "内存:", - "Server time:" : "服务器时间:", - "Uptime:" : "运行时长:", - "Temperature" : "温度", + "Active users" : "活跃用户", + "Last hour" : "上个小时", + "Last 24 Hours" : "最近24小时", + "Last 7 Days" : "过去7天", + "Last 30 Days" : "过去30天", + "Webcron" : "Webcron", + "Background jobs" : "后台任务", + "Mode" : "模式", + "Never" : "永不", "Load" : "负载", - "Memory" : "内存", + "CPU info not available" : "CPU 信息不可用", + "Current usage" : "当前用量", + "Threads" : "帖子‌", + "Load average" : "平均负载", + "Database" : "数据库", + "Type:" : "类型:", + "Version:" : "版本:", + "Size:" : "大小:", + "Used" : "已用", + "Available" : "可用", "Disk" : "磁盘", + "Files" : "文件", + "Storages" : "存储", "Mount:" : "挂载:", "Filesystem:" : "文件系统:", - "Size:" : "大小:", "Available:" : "可用:", "Used:" : "已使用:", - "Files:" : "文件:", - "Storages:" : "存储设备:", - "Free Space:" : "剩余空间:", + "Status" : "状态", + "Started" : "已开始", + "Duration" : "时长", + "Job" : "任务", + "When" : "时间", + "Details" : "详情", + "Succeeded" : "成功", + "Failed" : "失败", + "Running" : "运行中", + "Memory" : "内存", + "RAM info not available" : "RAM 信息不可用", + "Total" : "总量", + "Configuration" : "配置", + "Output in JSON" : "JSON 格式输出", + "Skip server update" : "跳过服务器更新", + "Authentication" : "身份验证", "Network" : "网络", - "Hostname:" : "主机名:", - "Gateway:" : "网关:", + "Hostname" : "主机名", + "Gateway" : "网关", + "DNS" : "DNS", "Status:" : "状态:", "Speed:" : "速度:", "Duplex:" : "复式:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "活跃用户", - "Last hour" : "上个小时", - "%s%% of all users" : "%s%% 所有用户", - "Last 24 Hours" : "最近24小时", - "Last 7 Days" : "过去7天", - "Last 30 Days" : "过去30天", + "Keys" : "密钥", + "Disabled" : "已禁用", + "seconds" : "秒", + "Yes" : "是", + "No" : "否", + "PHP extensions" : "PHP 扩展", + "Extension" : "扩展", + "Unable to list extensions" : "无法获取扩展列表", + "PHP" : "PHP", + "Version" : "版本", + "Memory limit" : "内存限制", + "Max execution time:" : "最大执行时间:", + "Upload max size:" : "最大上传大小:", + "Extensions:" : "扩展:", + "Show phpinfo" : "显示phpinfo", + "Active processes:" : "活跃进程:", + "Idle processes:" : "空闲进程:", + "CPU" : "CPU", "Shares" : "共享", "Users:" : "用户:", "Groups:" : "组别:", @@ -55,27 +83,38 @@ "Federated sent:" : "联合云发送:", "Federated received:" : "联合云接收:", "Talk conversations:" : "通话应用对话:", - "PHP" : "PHP", - "Version:" : "版本:", + "Average" : "平均测光", + "Warning" : "警告", + "Operating System:" : "操作系统:", + "CPU:" : "CPU:", + "Server time:" : "服务器时间:", + "Uptime:" : "运行时长:", + "Temperature" : "温度", + "CPU Usage:" : "CPU 使用量:", + "RAM Usage:" : "内存使用量:", + "SWAP Usage:" : "交换内存使用量:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: 总共:{memTotalBytes}/当前用量:{memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: 总共:{swapTotalBytes}/当前用量:{swapUsageBytes}", + "SWAP info not available" : "SWAP 信息不可用", + "Copied!" : "已复制!", + "Not supported!" : "不支持!", + "Press ⌘-C to copy." : "使用 ⌘-C 复制。", + "Press Ctrl-C to copy." : "使用 Ctrl-C 复制。", + "Memory:" : "内存:", + "Files:" : "文件:", + "Storages:" : "存储设备:", + "Free Space:" : "剩余空间:", + "Hostname:" : "主机名:", + "Gateway:" : "网关:", + "%s%% of all users" : "%s%% 所有用户", "Memory limit:" : "内存限制:", - "Max execution time:" : "最大执行时间:", - "Upload max size:" : "最大上传大小:", "OPcache Revalidate Frequency:" : "OPcache重验证频率:", - "Extensions:" : "扩展:", - "Unable to list extensions" : "无法获取扩展列表", - "Show phpinfo" : "显示phpinfo", - "Active processes:" : "活跃进程:", - "Idle processes:" : "空闲进程:", - "Database" : "数据库", - "Type:" : "类型:", "External monitoring tool" : "外部监视工具", "Use this end point to connect an external monitoring tool:" : "使用此接口连接外部监视工具:", "Copy" : "复制", - "Output in JSON" : "JSON 格式输出", "Skip apps section (including apps section will send an external request to the app store)" : "跳过应用程序部分(包括应用程序部分向应用商店发送外部请求)", - "Skip server update" : "跳过服务器更新", "To use an access token, please generate one then set it using the following command:" : "要使用一个访问令牌,请生成一个,然后使用以下命令设置它:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "然后在查询上述 URL 时传递带有 “NC-Token” 头的令牌。", - "Unknown Processor" : "未知处理器" + "DNS:" : "DNS:" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js index 97a01d2a..e191cae9 100644 --- a/l10n/zh_HK.js +++ b/l10n/zh_HK.js @@ -1,73 +1,111 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU 資訊暫時無法使用", - "CPU Usage:" : "CPU 使用量﹕", - "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage}%({load})上一分鐘", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最後時刻 \n{last5MinutesPercentage} % ({last5Minutes}) 最後 5 分鐘 \n{last15MinutesPercentage} % ({last15Minutes}) 最後 15 分鐘", - "RAM Usage:" : "RAM 使用量﹕", - "SWAP Usage:" : "SWAP 使用量﹕", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計:{memTotalBytes}/目前使用情況:{memUsageBytes}", - "RAM info not available" : "沒有可用的 RAM 資訊", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計:{swapTotalBytes}/目前使用量:{swapUsageBytes}", - "SWAP info not available" : "沒有可用的 SWAP 資訊", - "Copied!" : "已複製!", - "Not supported!" : "不支援!", - "Press ⌘-C to copy." : "請按【⌘-C】以複製。", - "Press Ctrl-C to copy." : "請按【Ctrl-C】以複製。", "System" : "系統", + "Unknown" : "不詳", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d天 %2$d小時%3$d分鐘%4$d秒", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d小時%2$d分鐘%3$d秒", "Monitoring" : "監控", "Monitoring app with useful server information" : "使用有用的伺服器訊息以監控應用程式", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的伺服器訊息,例如CPU負載、記憶體使用情況、磁碟使用情況、用戶數等。", - "Operating System:" : "作業系統:", - "CPU:" : "CPU:", - "threads" : "主題", - "Memory:" : "記憶體:", - "Server time:" : "伺服器時間:", - "Uptime:" : "運行時間:", - "Temperature" : "體溫", + "{0}% of all users" : "所有用戶的 {0}%", + "Active users" : "活躍用戶", + "Last hour" : "過去 1 小時", + "Last 24 Hours" : "過去24小時", + "Last 7 Days" : "過去7日", + "Last 30 Days" : "過去30日", + "System cron" : "系統 cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX(不建議)", + "Background jobs" : "後台作業", + "Mode" : "模式", + "Last run" : "上次執行", + "Never" : "從不", + "Latest runs" : "最近執行", + "No background job has run yet." : "尚未有背景工作執行。", + "Slowest jobs" : "最慢的工作", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "尚未有慢速工作統計資料。這些資料由背景工作收集,並會在下次執行後顯示。", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["最近失敗(過去%n日)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["最近%n天內沒有任何後台作業失敗。"], "Load" : "負載", - "Memory" : "記憶體", + "CPU info not available" : "CPU 資訊暫時無法使用", + "Current usage" : "目前使用量", + "Threads" : "討論串", + "Load average" : "平均負載", + "Database" : "數據庫", + "Type:" : "類型:", + "Version:" : "版本:", + "Size:" : "大小:", + "{used} of {total} used" : "在 {total} 中使用了 {used}", + "Used" : "已使用", + "Available" : "可用", "Disk" : "硬碟", + "Files" : "檔案", + "Storages" : "儲存", + "Free space" : "可用空間", "Mount:" : "掛載:", "Filesystem:" : "檔案系統:", - "Size:" : "大小:", "Available:" : "可用:", "Used:" : "已使用:", - "Files:" : "檔案:", - "Storages:" : "儲存設備:", - "Free Space:" : "可用空間:", + "Class" : "類別", + "Status" : "狀態", + "Started" : "開始於", + "Duration" : "歷時", + "Peak memory" : "記憶體峰值", + "Run ID" : "執行 ID", + "Server ID" : "伺服器 ID", + "Process ID" : "程序 ID", + "Details about {job} from {time}" : "{time} 的 {job} 詳情", + "Job" : "工作", + "When" : "時間", + "Details" : "詳情", + "Succeeded" : "成功了", + "Failed" : "失敗了", + "Crashed" : "已當機", + "Running" : "跑步", + "RAM usage" : "RAM 使用量", + "Swap usage" : "Swap 使用量", + "Memory" : "記憶體", + "RAM info not available" : "沒有可用的 RAM 資訊", + "Total" : "總計", + "Swap used" : "已使用 Swap", + "External monitoring API" : "外部監察 API", + "Endpoint URL" : "端點網址", + "Configuration" : "配置", + "Output in JSON" : "以 JSON 輸出", + "Skip apps section" : "略過應用程式部分", + "Including the apps section sends an external request to the app store" : "包含應用程式部分會向應用程式商店傳送外部請求", + "Skip server update" : "略過伺服器更新", + "Authentication" : "驗證", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "此權杖是在你的瀏覽器中產生,在你執行下方指令前不會儲存。每次請求時,請在 {header} 標頭中傳送此權杖。", + "Command to store the token" : "儲存權杖的指令", + "Request header" : "請求標頭", "Network" : "網絡", - "Hostname:" : "主機名稱:", - "Gateway:" : "網關:", + "Hostname" : "主機名稱", + "Gateway" : "網關", + "DNS" : "DNS", "Status:" : "狀態:", "Speed:" : "速度:", "Duplex:" : "複式︰", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "活躍用戶", - "Last hour" : "過去 1 小時", - "%s%% of all users" : " %s%% 所有用戶的", - "Last 24 Hours" : "過去24小時", - "Last 7 Days" : "過去7日", - "Last 30 Days" : "過去30日", - "Shares" : "分享", - "Users:" : "用戶︰", - "Groups:" : "群組︰", - "Links:" : "連結︰", - "Emails:" : "電郵地址:", - "Federated sent:" : "聯盟發送︰", - "Federated received:" : "聯盟接收︰", - "Talk conversations:" : "Talk 對話︰", + "{used} of {total}" : "已使用 {used},共 {total}", + "Keys" : "密鑰", + "Disabled" : "停用", + "seconds" : "秒", + "Yes" : "是", + "No" : "否", + "PHP extensions" : "PHP 擴充元件", + "Extension" : "副檔名", + "Unable to list extensions" : "無法列出 PHP 擴展", "PHP" : "PHP", - "Version:" : "版本:", - "Memory limit:" : "記憶體限制:", + "Version" : "版本", + "Memory limit" : "記憶體限制", "Max execution time:" : "最長執行時間:", "Upload max size:" : "上傳至多:", - "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", "Extensions:" : "PHP 擴展:", - "Unable to list extensions" : "無法列出 PHP 擴展", + "PHP Info:" : "PHP 資訊:", "Show phpinfo" : "顯示 phpinfo", "FPM worker pool" : "FPM 共用人員", "Pool name:" : "共用資源名稱:", @@ -82,16 +120,60 @@ OC.L10N.register( "Max listen queue:" : "最大監聽隊列:", "Max active processes:" : "最大活躍的進程:", "Max children reached:" : "達到最大子進程數:", - "Database" : "數據庫", - "Type:" : "類型:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "資源運用", + "Shares" : "分享", + "Users:" : "用戶︰", + "Groups:" : "群組︰", + "Links:" : "連結︰", + "Emails:" : "電郵地址:", + "Federated sent:" : "聯邦發送︰", + "Federated received:" : "聯邦接收︰", + "Talk conversations:" : "Talk 對話︰", + "Runs" : "執行次數", + "Average" : "平均測光", + "Longest" : "最長", + "Warning" : "警告", + "Critical" : "嚴重", + "Operating System:" : "作業系統:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name}({threads} 條討論串)", + "Server time:" : "伺服器時間:", + "Uptime:" : "運行時間:", + "Temperature" : "體溫", + "{duration} ms" : "{duration} 毫秒", + "{duration} s" : "{duration} 秒", + "CPU Usage:" : "CPU 使用量﹕", + "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage}%({load})上一分鐘", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最後時刻 \n{last5MinutesPercentage} % ({last5Minutes}) 最後 5 分鐘 \n{last15MinutesPercentage} % ({last15Minutes}) 最後 15 分鐘", + "RAM Usage:" : "RAM 使用量﹕", + "SWAP Usage:" : "SWAP 使用量﹕", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計:{memTotalBytes}/目前使用情況:{memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計:{swapTotalBytes}/目前使用量:{swapUsageBytes}", + "SWAP info not available" : "沒有可用的 SWAP 資訊", + "Copied!" : "已複製!", + "Not supported!" : "不支援!", + "Press ⌘-C to copy." : "請按【⌘-C】以複製。", + "Press Ctrl-C to copy." : "請按【Ctrl-C】以複製。", + "threads" : "主題", + "Memory:" : "記憶體:", + "Files:" : "檔案:", + "Storages:" : "儲存設備:", + "Free Space:" : "可用空間:", + "Hostname:" : "主機名稱:", + "Gateway:" : "網關:", + "%s%% of all users" : " %s%% 所有用戶的", + "Memory limit:" : "記憶體限制:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", "External monitoring tool" : "外部監控工具", "Use this end point to connect an external monitoring tool:" : "使用此端點連結外部監控工具:", "Copy" : "複製", - "Output in JSON" : "以 JSON 輸出", "Skip apps section (including apps section will send an external request to the app store)" : "略過應用程式部分(包括此部分將向應用商店發送外部請求)。", - "Skip server update" : "略過伺服器更新", "To use an access token, please generate one then set it using the following command:" : "要使用存取權杖,請生成一個權杖,然後使用以下命令對其進行設置:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "然後在查詢上述 URL 時將權杖與 “ NC-Token” 標頭一起傳遞。", - "Unknown Processor" : "處理器不詳" + "%1$s (%2$d threads)" : "%1$s(%2$d 條討論串)", + "DNS:" : "DNS:" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json index 3addfe5f..977ed672 100644 --- a/l10n/zh_HK.json +++ b/l10n/zh_HK.json @@ -1,71 +1,109 @@ { "translations": { - "CPU info not available" : "CPU 資訊暫時無法使用", - "CPU Usage:" : "CPU 使用量﹕", - "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage}%({load})上一分鐘", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最後時刻 \n{last5MinutesPercentage} % ({last5Minutes}) 最後 5 分鐘 \n{last15MinutesPercentage} % ({last15Minutes}) 最後 15 分鐘", - "RAM Usage:" : "RAM 使用量﹕", - "SWAP Usage:" : "SWAP 使用量﹕", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計:{memTotalBytes}/目前使用情況:{memUsageBytes}", - "RAM info not available" : "沒有可用的 RAM 資訊", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計:{swapTotalBytes}/目前使用量:{swapUsageBytes}", - "SWAP info not available" : "沒有可用的 SWAP 資訊", - "Copied!" : "已複製!", - "Not supported!" : "不支援!", - "Press ⌘-C to copy." : "請按【⌘-C】以複製。", - "Press Ctrl-C to copy." : "請按【Ctrl-C】以複製。", "System" : "系統", + "Unknown" : "不詳", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d天 %2$d小時%3$d分鐘%4$d秒", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d小時%2$d分鐘%3$d秒", "Monitoring" : "監控", "Monitoring app with useful server information" : "使用有用的伺服器訊息以監控應用程式", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的伺服器訊息,例如CPU負載、記憶體使用情況、磁碟使用情況、用戶數等。", - "Operating System:" : "作業系統:", - "CPU:" : "CPU:", - "threads" : "主題", - "Memory:" : "記憶體:", - "Server time:" : "伺服器時間:", - "Uptime:" : "運行時間:", - "Temperature" : "體溫", + "{0}% of all users" : "所有用戶的 {0}%", + "Active users" : "活躍用戶", + "Last hour" : "過去 1 小時", + "Last 24 Hours" : "過去24小時", + "Last 7 Days" : "過去7日", + "Last 30 Days" : "過去30日", + "System cron" : "系統 cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX(不建議)", + "Background jobs" : "後台作業", + "Mode" : "模式", + "Last run" : "上次執行", + "Never" : "從不", + "Latest runs" : "最近執行", + "No background job has run yet." : "尚未有背景工作執行。", + "Slowest jobs" : "最慢的工作", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "尚未有慢速工作統計資料。這些資料由背景工作收集,並會在下次執行後顯示。", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["最近失敗(過去%n日)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["最近%n天內沒有任何後台作業失敗。"], "Load" : "負載", - "Memory" : "記憶體", + "CPU info not available" : "CPU 資訊暫時無法使用", + "Current usage" : "目前使用量", + "Threads" : "討論串", + "Load average" : "平均負載", + "Database" : "數據庫", + "Type:" : "類型:", + "Version:" : "版本:", + "Size:" : "大小:", + "{used} of {total} used" : "在 {total} 中使用了 {used}", + "Used" : "已使用", + "Available" : "可用", "Disk" : "硬碟", + "Files" : "檔案", + "Storages" : "儲存", + "Free space" : "可用空間", "Mount:" : "掛載:", "Filesystem:" : "檔案系統:", - "Size:" : "大小:", "Available:" : "可用:", "Used:" : "已使用:", - "Files:" : "檔案:", - "Storages:" : "儲存設備:", - "Free Space:" : "可用空間:", + "Class" : "類別", + "Status" : "狀態", + "Started" : "開始於", + "Duration" : "歷時", + "Peak memory" : "記憶體峰值", + "Run ID" : "執行 ID", + "Server ID" : "伺服器 ID", + "Process ID" : "程序 ID", + "Details about {job} from {time}" : "{time} 的 {job} 詳情", + "Job" : "工作", + "When" : "時間", + "Details" : "詳情", + "Succeeded" : "成功了", + "Failed" : "失敗了", + "Crashed" : "已當機", + "Running" : "跑步", + "RAM usage" : "RAM 使用量", + "Swap usage" : "Swap 使用量", + "Memory" : "記憶體", + "RAM info not available" : "沒有可用的 RAM 資訊", + "Total" : "總計", + "Swap used" : "已使用 Swap", + "External monitoring API" : "外部監察 API", + "Endpoint URL" : "端點網址", + "Configuration" : "配置", + "Output in JSON" : "以 JSON 輸出", + "Skip apps section" : "略過應用程式部分", + "Including the apps section sends an external request to the app store" : "包含應用程式部分會向應用程式商店傳送外部請求", + "Skip server update" : "略過伺服器更新", + "Authentication" : "驗證", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "此權杖是在你的瀏覽器中產生,在你執行下方指令前不會儲存。每次請求時,請在 {header} 標頭中傳送此權杖。", + "Command to store the token" : "儲存權杖的指令", + "Request header" : "請求標頭", "Network" : "網絡", - "Hostname:" : "主機名稱:", - "Gateway:" : "網關:", + "Hostname" : "主機名稱", + "Gateway" : "網關", + "DNS" : "DNS", "Status:" : "狀態:", "Speed:" : "速度:", "Duplex:" : "複式︰", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "活躍用戶", - "Last hour" : "過去 1 小時", - "%s%% of all users" : " %s%% 所有用戶的", - "Last 24 Hours" : "過去24小時", - "Last 7 Days" : "過去7日", - "Last 30 Days" : "過去30日", - "Shares" : "分享", - "Users:" : "用戶︰", - "Groups:" : "群組︰", - "Links:" : "連結︰", - "Emails:" : "電郵地址:", - "Federated sent:" : "聯盟發送︰", - "Federated received:" : "聯盟接收︰", - "Talk conversations:" : "Talk 對話︰", + "{used} of {total}" : "已使用 {used},共 {total}", + "Keys" : "密鑰", + "Disabled" : "停用", + "seconds" : "秒", + "Yes" : "是", + "No" : "否", + "PHP extensions" : "PHP 擴充元件", + "Extension" : "副檔名", + "Unable to list extensions" : "無法列出 PHP 擴展", "PHP" : "PHP", - "Version:" : "版本:", - "Memory limit:" : "記憶體限制:", + "Version" : "版本", + "Memory limit" : "記憶體限制", "Max execution time:" : "最長執行時間:", "Upload max size:" : "上傳至多:", - "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", "Extensions:" : "PHP 擴展:", - "Unable to list extensions" : "無法列出 PHP 擴展", + "PHP Info:" : "PHP 資訊:", "Show phpinfo" : "顯示 phpinfo", "FPM worker pool" : "FPM 共用人員", "Pool name:" : "共用資源名稱:", @@ -80,16 +118,60 @@ "Max listen queue:" : "最大監聽隊列:", "Max active processes:" : "最大活躍的進程:", "Max children reached:" : "達到最大子進程數:", - "Database" : "數據庫", - "Type:" : "類型:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "資源運用", + "Shares" : "分享", + "Users:" : "用戶︰", + "Groups:" : "群組︰", + "Links:" : "連結︰", + "Emails:" : "電郵地址:", + "Federated sent:" : "聯邦發送︰", + "Federated received:" : "聯邦接收︰", + "Talk conversations:" : "Talk 對話︰", + "Runs" : "執行次數", + "Average" : "平均測光", + "Longest" : "最長", + "Warning" : "警告", + "Critical" : "嚴重", + "Operating System:" : "作業系統:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name}({threads} 條討論串)", + "Server time:" : "伺服器時間:", + "Uptime:" : "運行時間:", + "Temperature" : "體溫", + "{duration} ms" : "{duration} 毫秒", + "{duration} s" : "{duration} 秒", + "CPU Usage:" : "CPU 使用量﹕", + "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage}%({load})上一分鐘", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 最後時刻 \n{last5MinutesPercentage} % ({last5Minutes}) 最後 5 分鐘 \n{last15MinutesPercentage} % ({last15Minutes}) 最後 15 分鐘", + "RAM Usage:" : "RAM 使用量﹕", + "SWAP Usage:" : "SWAP 使用量﹕", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計:{memTotalBytes}/目前使用情況:{memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計:{swapTotalBytes}/目前使用量:{swapUsageBytes}", + "SWAP info not available" : "沒有可用的 SWAP 資訊", + "Copied!" : "已複製!", + "Not supported!" : "不支援!", + "Press ⌘-C to copy." : "請按【⌘-C】以複製。", + "Press Ctrl-C to copy." : "請按【Ctrl-C】以複製。", + "threads" : "主題", + "Memory:" : "記憶體:", + "Files:" : "檔案:", + "Storages:" : "儲存設備:", + "Free Space:" : "可用空間:", + "Hostname:" : "主機名稱:", + "Gateway:" : "網關:", + "%s%% of all users" : " %s%% 所有用戶的", + "Memory limit:" : "記憶體限制:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", "External monitoring tool" : "外部監控工具", "Use this end point to connect an external monitoring tool:" : "使用此端點連結外部監控工具:", "Copy" : "複製", - "Output in JSON" : "以 JSON 輸出", "Skip apps section (including apps section will send an external request to the app store)" : "略過應用程式部分(包括此部分將向應用商店發送外部請求)。", - "Skip server update" : "略過伺服器更新", "To use an access token, please generate one then set it using the following command:" : "要使用存取權杖,請生成一個權杖,然後使用以下命令對其進行設置:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "然後在查詢上述 URL 時將權杖與 “ NC-Token” 標頭一起傳遞。", - "Unknown Processor" : "處理器不詳" + "%1$s (%2$d threads)" : "%1$s(%2$d 條討論串)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js index 5c6fd906..f35c2d65 100644 --- a/l10n/zh_TW.js +++ b/l10n/zh_TW.js @@ -1,73 +1,130 @@ OC.L10N.register( "serverinfo", { - "CPU info not available" : "CPU 資訊暫時無法使用", - "CPU Usage:" : "CPU 使用量:", - "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage} % ({load}) 前 1 分鐘", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 前 1 分鐘\n{last5MinutesPercentage} % ({last5Minutes}) 前 5 分鐘\n{last15MinutesPercentage} % ({last15Minutes}) 前 15 分鐘", - "RAM Usage:" : "RAM 使用量:", - "SWAP Usage:" : "SWAP 使用量:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計 {memTotalBytes}/目前使用量:{memUsageBytes}", - "RAM info not available" : "沒有可用的 RAM 資訊", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計 {swapTotalBytes}/目前使用量:{swapUsageBytes}", - "SWAP info not available" : "沒有可用的 SWAP 資訊", - "Copied!" : "已複製!", - "Not supported!" : "不支援!", - "Press ⌘-C to copy." : "請按⌘-C以複製。", - "Press Ctrl-C to copy." : "請按Ctrl-C以複製。", "System" : "系統", + "Unknown" : "未知", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d天%2$d小時%3$d分鐘%4$d秒", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d小時%2$d分鐘%3$d秒", "Monitoring" : "監控", "Monitoring app with useful server information" : "使用有用的伺服器訊息以監控應用程式", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的伺服器訊息,例如CPU負載、記憶體使用情況、磁碟使用情況、用戶數等。", - "Operating System:" : "作業系統:", - "CPU:" : "CPU:", - "threads" : "執行緒", - "Memory:" : "記憶體:", - "Server time:" : "伺服器時間:", - "Uptime:" : "運作時間:", - "Temperature" : "氣溫", + "{0}% of all users" : "所有使用者的 {0}%", + "Active users" : "活動中的使用者", + "Last hour" : "上個小時", + "Last 24 Hours" : "過去24小時", + "Last 7 Days" : "過去7天", + "Last 30 Days" : "過去30天", + "System cron" : "系統 cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX(不建議)", + "Background jobs" : "背景作業", + "Mode" : "模式", + "Last run" : "上次執行", + "Never" : "永不", + "Latest runs" : "最後執行", + "No background job has run yet." : "尚無在執行的背景作業。", + "Slowest jobs" : "最慢的作業", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "目前尚無緩慢工作的統計資料。這些資料是由背景工作所蒐集的,並將在該工作下次執行後顯示。", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["最近失敗(過去%n天)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["過去%n天內,沒有任何背景工作失敗。"], "Load" : "負載", - "Memory" : "記憶體", + "CPU info not available" : "CPU 資訊暫時無法使用", + "Current usage" : "目前使用量", + "Threads" : "討論串", + "Load average" : "平均負載", + "Database" : "資料庫", + "Type:" : "類型:", + "Version:" : "版本:", + "Size:" : "大小:", + "{used} of {total} used" : "已使用 {used},共 {total}", + "Used" : "已使用", + "Available" : "可用", "Disk" : "硬碟", + "Files" : "檔案", + "Storages" : "儲存空間", + "Free space" : "可用空間", "Mount:" : "掛載:", "Filesystem:" : "檔案系統:", - "Size:" : "大小:", "Available:" : "可用:", "Used:" : "已使用:", - "Files:" : "檔案:", - "Storages:" : "儲存設備:", - "Free Space:" : "可用空間:", + "Class" : "類別", + "Status" : "狀態", + "Started" : "開始於", + "Duration" : "持續時間", + "Peak memory" : "記憶體峰值", + "Run ID" : "執行 ID", + "Server ID" : "伺服器 ID", + "Process ID" : "處理程序 ID", + "Details about {job} from {time}" : "從 {time} 開始的 {job} 的詳細資訊", + "Job" : "作業", + "When" : "當", + "Details" : "詳細資訊", + "Succeeded" : "成功了", + "Failed" : "失敗", + "Crashed" : "當掉了", + "Running" : "跑步", + "RAM usage" : "記憶體使用量", + "Swap usage" : "Swap 使用量", + "Memory" : "記憶體", + "RAM info not available" : "沒有可用的 RAM 資訊", + "Total" : "總共", + "Swap used" : "已使用的 Swap", + "External monitoring API" : "外部監控 API", + "Endpoint URL" : "端點 URL", + "Configuration" : "組態設定", + "Output in JSON" : "以 JSON 輸出", + "Skip apps section" : "略過應用程式選取", + "Including the apps section sends an external request to the app store" : "加入「應用程式」區塊會向應用程式商店傳送外部請求", + "Skip server update" : "略過伺服器更新", + "Authentication" : "認證", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "此權杖是在您的瀏覽器中產生的,在您執行以下命令之前不會被儲存。請在每次請求的 {header} 標頭中傳送此權杖。", + "Command to store the token" : "儲存權杖的命令", + "Request header" : "請求標頭", "Network" : "網路", - "Hostname:" : "主機名稱:", - "Gateway:" : "網路閘道:", + "Hostname" : "主機名稱", + "Gateway" : "預設網路閘道", + "DNS" : "DNS", "Status:" : "狀態:", "Speed:" : "速度:", "Duplex:" : "雙工:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "活動中的使用者", - "Last hour" : "上個小時", - "%s%% of all users" : "所有使用者的 %s%%", - "Last 24 Hours" : "過去24小時", - "Last 7 Days" : "過去7天", - "Last 30 Days" : "過去30天", - "Shares" : "分享", - "Users:" : "使用者:", - "Groups:" : "群組:", - "Links:" : "連結:", - "Emails:" : "電子郵件:", - "Federated sent:" : "聯盟傳送:", - "Federated received:" : "聯盟接收:", - "Talk conversations:" : "Talk 對話:", + "OPcache is not loaded." : "未載入 OPcache。", + "OPcache is disabled." : "OPcache 已停用。", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud 無權讀取 OPcache 的狀態 (\"opcache.restrict_api\")。", + "OPcache status is unavailable." : "OPcache 狀態不明。", + "{used} of {total}" : "已使用 {used},共 {total}", + "Interned strings" : "內嵌字串", + "Keys" : "密鑰", + "{used} of {max}" : "已使用 {used},共 {max}", + "Disabled" : "已停用", + "Enabled, {used} of {total} buffer used" : "已啟用,已使用 {used} 緩衝空間,共 {total}", + "OPcache" : "OPcache", + "Hit rate" : "命中率", + "Cached scripts" : "已快取的命令稿", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "這些數字描述的是處理此請求的 PHP 處理程序。其他 FPM 池或 CLI 則各自維護自己的 OPcache。", + "Revalidate frequency:" : "重新驗證頻率:", + "seconds" : "秒", + "Validate timestamps:" : "驗證時間戳:", + "Yes" : "是", + "No" : "否", + "OOM restarts:" : "OOM 重新啟動:", + "Last restart:" : "上次重新啟動:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP 擴充元件", + "Extension" : "副檔名", + "Unable to list extensions" : "無法列出擴充套件", + "{count} loaded" : "已載入 {count}", "PHP" : "PHP", - "Version:" : "版本:", - "Memory limit:" : "記憶體限制:", + "Version" : "版本", + "Memory limit" : "記憶體限制", "Max execution time:" : "最大執行時間:", "Upload max size:" : "上傳至多:", - "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", + "Post max size:" : "最大 POST 大小:", + "SAPI:" : "SAPI:", "Extensions:" : "擴充套件:", - "Unable to list extensions" : "無法列出擴充套件", + "PHP Info:" : "PHP 資訊:", "Show phpinfo" : "顯示 phpinfo", "FPM worker pool" : "FPM worker pool", "Pool name:" : "Pool 名稱:", @@ -82,16 +139,60 @@ OC.L10N.register( "Max listen queue:" : "最大監聽佇列:", "Max active processes:" : "最大作用中處理程序:", "Max children reached:" : "最大子處理程序數:", - "Database" : "資料庫", - "Type:" : "類型:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "資源使用量", + "Shares" : "分享", + "Users:" : "使用者:", + "Groups:" : "群組:", + "Links:" : "連結:", + "Emails:" : "電子郵件:", + "Federated sent:" : "聯盟傳送:", + "Federated received:" : "聯盟接收:", + "Talk conversations:" : "Talk 對話:", + "Runs" : "執行", + "Average" : "平均", + "Longest" : "最長", + "Warning" : "警告", + "Critical" : "Critical", + "Operating System:" : "作業系統:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name}({threads} 條執行緒)", + "Server time:" : "伺服器時間:", + "Uptime:" : "運作時間:", + "Temperature" : "氣溫", + "{duration} ms" : "{duration}毫秒 ", + "{duration} s" : "{duration}秒", + "CPU Usage:" : "CPU 使用量:", + "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage} % ({load}) 前 1 分鐘", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 前 1 分鐘\n{last5MinutesPercentage} % ({last5Minutes}) 前 5 分鐘\n{last15MinutesPercentage} % ({last15Minutes}) 前 15 分鐘", + "RAM Usage:" : "RAM 使用量:", + "SWAP Usage:" : "SWAP 使用量:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計 {memTotalBytes}/目前使用量:{memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計 {swapTotalBytes}/目前使用量:{swapUsageBytes}", + "SWAP info not available" : "沒有可用的 SWAP 資訊", + "Copied!" : "已複製!", + "Not supported!" : "不支援!", + "Press ⌘-C to copy." : "請按⌘-C以複製。", + "Press Ctrl-C to copy." : "請按Ctrl-C以複製。", + "threads" : "執行緒", + "Memory:" : "記憶體:", + "Files:" : "檔案:", + "Storages:" : "儲存設備:", + "Free Space:" : "可用空間:", + "Hostname:" : "主機名稱:", + "Gateway:" : "網路閘道:", + "%s%% of all users" : "所有使用者的 %s%%", + "Memory limit:" : "記憶體限制:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", "External monitoring tool" : "外部監控工具", "Use this end point to connect an external monitoring tool:" : "使用此端點連結外部監控工具:", "Copy" : "複製", - "Output in JSON" : "以 JSON 輸出", "Skip apps section (including apps section will send an external request to the app store)" : "略過應用程式部份(包含應用程式部份將會向應用程式商店傳送外部請求)", - "Skip server update" : "略過伺服器更新", "To use an access token, please generate one then set it using the following command:" : "要使用存取權杖,請產生一個,然後使用下列指令設定:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "然後在查詢上面的 URL 時,將權杖與「NC-Token」標頭一起傳遞。", - "Unknown Processor" : "未知的處理器" + "%1$s (%2$d threads)" : "%1$s(%2$d 條執行緒)", + "DNS:" : "DNS:" }, "nplurals=1; plural=0;"); diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json index 8b3da6d1..2b35b224 100644 --- a/l10n/zh_TW.json +++ b/l10n/zh_TW.json @@ -1,71 +1,128 @@ { "translations": { - "CPU info not available" : "CPU 資訊暫時無法使用", - "CPU Usage:" : "CPU 使用量:", - "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage} % ({load}) 前 1 分鐘", - "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 前 1 分鐘\n{last5MinutesPercentage} % ({last5Minutes}) 前 5 分鐘\n{last15MinutesPercentage} % ({last15Minutes}) 前 15 分鐘", - "RAM Usage:" : "RAM 使用量:", - "SWAP Usage:" : "SWAP 使用量:", - "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計 {memTotalBytes}/目前使用量:{memUsageBytes}", - "RAM info not available" : "沒有可用的 RAM 資訊", - "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計 {swapTotalBytes}/目前使用量:{swapUsageBytes}", - "SWAP info not available" : "沒有可用的 SWAP 資訊", - "Copied!" : "已複製!", - "Not supported!" : "不支援!", - "Press ⌘-C to copy." : "請按⌘-C以複製。", - "Press Ctrl-C to copy." : "請按Ctrl-C以複製。", "System" : "系統", + "Unknown" : "未知", + "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d天%2$d小時%3$d分鐘%4$d秒", + "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d小時%2$d分鐘%3$d秒", "Monitoring" : "監控", "Monitoring app with useful server information" : "使用有用的伺服器訊息以監控應用程式", "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "提供有用的伺服器訊息,例如CPU負載、記憶體使用情況、磁碟使用情況、用戶數等。", - "Operating System:" : "作業系統:", - "CPU:" : "CPU:", - "threads" : "執行緒", - "Memory:" : "記憶體:", - "Server time:" : "伺服器時間:", - "Uptime:" : "運作時間:", - "Temperature" : "氣溫", + "{0}% of all users" : "所有使用者的 {0}%", + "Active users" : "活動中的使用者", + "Last hour" : "上個小時", + "Last 24 Hours" : "過去24小時", + "Last 7 Days" : "過去7天", + "Last 30 Days" : "過去30天", + "System cron" : "系統 cron", + "Webcron" : "Webcron", + "AJAX (not recommended)" : "AJAX(不建議)", + "Background jobs" : "背景作業", + "Mode" : "模式", + "Last run" : "上次執行", + "Never" : "永不", + "Latest runs" : "最後執行", + "No background job has run yet." : "尚無在執行的背景作業。", + "Slowest jobs" : "最慢的作業", + "The slow jobs statistics are not available yet. They are collected by a background job and appear after its next run." : "目前尚無緩慢工作的統計資料。這些資料是由背景工作所蒐集的,並將在該工作下次執行後顯示。", + "_Latest failures (last %n day)_::_Latest failures (last %n days)_" : ["最近失敗(過去%n天)"], + "_No background job failed in the last %n day._::_No background job failed in the last %n days._" : ["過去%n天內,沒有任何背景工作失敗。"], "Load" : "負載", - "Memory" : "記憶體", + "CPU info not available" : "CPU 資訊暫時無法使用", + "Current usage" : "目前使用量", + "Threads" : "討論串", + "Load average" : "平均負載", + "Database" : "資料庫", + "Type:" : "類型:", + "Version:" : "版本:", + "Size:" : "大小:", + "{used} of {total} used" : "已使用 {used},共 {total}", + "Used" : "已使用", + "Available" : "可用", "Disk" : "硬碟", + "Files" : "檔案", + "Storages" : "儲存空間", + "Free space" : "可用空間", "Mount:" : "掛載:", "Filesystem:" : "檔案系統:", - "Size:" : "大小:", "Available:" : "可用:", "Used:" : "已使用:", - "Files:" : "檔案:", - "Storages:" : "儲存設備:", - "Free Space:" : "可用空間:", + "Class" : "類別", + "Status" : "狀態", + "Started" : "開始於", + "Duration" : "持續時間", + "Peak memory" : "記憶體峰值", + "Run ID" : "執行 ID", + "Server ID" : "伺服器 ID", + "Process ID" : "處理程序 ID", + "Details about {job} from {time}" : "從 {time} 開始的 {job} 的詳細資訊", + "Job" : "作業", + "When" : "當", + "Details" : "詳細資訊", + "Succeeded" : "成功了", + "Failed" : "失敗", + "Crashed" : "當掉了", + "Running" : "跑步", + "RAM usage" : "記憶體使用量", + "Swap usage" : "Swap 使用量", + "Memory" : "記憶體", + "RAM info not available" : "沒有可用的 RAM 資訊", + "Total" : "總共", + "Swap used" : "已使用的 Swap", + "External monitoring API" : "外部監控 API", + "Endpoint URL" : "端點 URL", + "Configuration" : "組態設定", + "Output in JSON" : "以 JSON 輸出", + "Skip apps section" : "略過應用程式選取", + "Including the apps section sends an external request to the app store" : "加入「應用程式」區塊會向應用程式商店傳送外部請求", + "Skip server update" : "略過伺服器更新", + "Authentication" : "認證", + "This token was generated in your browser and is not stored until you run the command below. Send it in the {header} header with every request." : "此權杖是在您的瀏覽器中產生的,在您執行以下命令之前不會被儲存。請在每次請求的 {header} 標頭中傳送此權杖。", + "Command to store the token" : "儲存權杖的命令", + "Request header" : "請求標頭", "Network" : "網路", - "Hostname:" : "主機名稱:", - "Gateway:" : "網路閘道:", + "Hostname" : "主機名稱", + "Gateway" : "預設網路閘道", + "DNS" : "DNS", "Status:" : "狀態:", "Speed:" : "速度:", "Duplex:" : "雙工:", "MAC:" : "MAC:", "IPv4:" : "IPv4:", "IPv6:" : "IPv6:", - "Active users" : "活動中的使用者", - "Last hour" : "上個小時", - "%s%% of all users" : "所有使用者的 %s%%", - "Last 24 Hours" : "過去24小時", - "Last 7 Days" : "過去7天", - "Last 30 Days" : "過去30天", - "Shares" : "分享", - "Users:" : "使用者:", - "Groups:" : "群組:", - "Links:" : "連結:", - "Emails:" : "電子郵件:", - "Federated sent:" : "聯盟傳送:", - "Federated received:" : "聯盟接收:", - "Talk conversations:" : "Talk 對話:", + "OPcache is not loaded." : "未載入 OPcache。", + "OPcache is disabled." : "OPcache 已停用。", + "Nextcloud is not permitted to read the OPcache status (\"opcache.restrict_api\")." : "Nextcloud 無權讀取 OPcache 的狀態 (\"opcache.restrict_api\")。", + "OPcache status is unavailable." : "OPcache 狀態不明。", + "{used} of {total}" : "已使用 {used},共 {total}", + "Interned strings" : "內嵌字串", + "Keys" : "密鑰", + "{used} of {max}" : "已使用 {used},共 {max}", + "Disabled" : "已停用", + "Enabled, {used} of {total} buffer used" : "已啟用,已使用 {used} 緩衝空間,共 {total}", + "OPcache" : "OPcache", + "Hit rate" : "命中率", + "Cached scripts" : "已快取的命令稿", + "These numbers describe the PHP process handling this request. Other FPM pools or the CLI keep their own OPcache." : "這些數字描述的是處理此請求的 PHP 處理程序。其他 FPM 池或 CLI 則各自維護自己的 OPcache。", + "Revalidate frequency:" : "重新驗證頻率:", + "seconds" : "秒", + "Validate timestamps:" : "驗證時間戳:", + "Yes" : "是", + "No" : "否", + "OOM restarts:" : "OOM 重新啟動:", + "Last restart:" : "上次重新啟動:", + "JIT:" : "JIT:", + "PHP extensions" : "PHP 擴充元件", + "Extension" : "副檔名", + "Unable to list extensions" : "無法列出擴充套件", + "{count} loaded" : "已載入 {count}", "PHP" : "PHP", - "Version:" : "版本:", - "Memory limit:" : "記憶體限制:", + "Version" : "版本", + "Memory limit" : "記憶體限制", "Max execution time:" : "最大執行時間:", "Upload max size:" : "上傳至多:", - "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", + "Post max size:" : "最大 POST 大小:", + "SAPI:" : "SAPI:", "Extensions:" : "擴充套件:", - "Unable to list extensions" : "無法列出擴充套件", + "PHP Info:" : "PHP 資訊:", "Show phpinfo" : "顯示 phpinfo", "FPM worker pool" : "FPM worker pool", "Pool name:" : "Pool 名稱:", @@ -80,16 +137,60 @@ "Max listen queue:" : "最大監聽佇列:", "Max active processes:" : "最大作用中處理程序:", "Max children reached:" : "最大子處理程序數:", - "Database" : "資料庫", - "Type:" : "類型:", + "CPU" : "CPU", + "Swap" : "Swap", + "Resource usage" : "資源使用量", + "Shares" : "分享", + "Users:" : "使用者:", + "Groups:" : "群組:", + "Links:" : "連結:", + "Emails:" : "電子郵件:", + "Federated sent:" : "聯盟傳送:", + "Federated received:" : "聯盟接收:", + "Talk conversations:" : "Talk 對話:", + "Runs" : "執行", + "Average" : "平均", + "Longest" : "最長", + "Warning" : "警告", + "Critical" : "Critical", + "Operating System:" : "作業系統:", + "CPU:" : "CPU:", + "{name} ({threads} threads)" : "{name}({threads} 條執行緒)", + "Server time:" : "伺服器時間:", + "Uptime:" : "運作時間:", + "Temperature" : "氣溫", + "{duration} ms" : "{duration}毫秒 ", + "{duration} s" : "{duration}秒", + "CPU Usage:" : "CPU 使用量:", + "Load average: {percentage} % ({load}) last minute" : "平均負載:{percentage} % ({load}) 前 1 分鐘", + "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) 前 1 分鐘\n{last5MinutesPercentage} % ({last5Minutes}) 前 5 分鐘\n{last15MinutesPercentage} % ({last15Minutes}) 前 15 分鐘", + "RAM Usage:" : "RAM 使用量:", + "SWAP Usage:" : "SWAP 使用量:", + "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM:總計 {memTotalBytes}/目前使用量:{memUsageBytes}", + "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP:總計 {swapTotalBytes}/目前使用量:{swapUsageBytes}", + "SWAP info not available" : "沒有可用的 SWAP 資訊", + "Copied!" : "已複製!", + "Not supported!" : "不支援!", + "Press ⌘-C to copy." : "請按⌘-C以複製。", + "Press Ctrl-C to copy." : "請按Ctrl-C以複製。", + "threads" : "執行緒", + "Memory:" : "記憶體:", + "Files:" : "檔案:", + "Storages:" : "儲存設備:", + "Free Space:" : "可用空間:", + "Hostname:" : "主機名稱:", + "Gateway:" : "網路閘道:", + "%s%% of all users" : "所有使用者的 %s%%", + "Memory limit:" : "記憶體限制:", + "MB" : "MB", + "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:", "External monitoring tool" : "外部監控工具", "Use this end point to connect an external monitoring tool:" : "使用此端點連結外部監控工具:", "Copy" : "複製", - "Output in JSON" : "以 JSON 輸出", "Skip apps section (including apps section will send an external request to the app store)" : "略過應用程式部份(包含應用程式部份將會向應用程式商店傳送外部請求)", - "Skip server update" : "略過伺服器更新", "To use an access token, please generate one then set it using the following command:" : "要使用存取權杖,請產生一個,然後使用下列指令設定:", "Then pass the token with the \"NC-Token\" header when querying the above URL." : "然後在查詢上面的 URL 時,將權杖與「NC-Token」標頭一起傳遞。", - "Unknown Processor" : "未知的處理器" + "%1$s (%2$d threads)" : "%1$s(%2$d 條執行緒)", + "DNS:" : "DNS:" },"pluralForm" :"nplurals=1; plural=0;" } \ No newline at end of file diff --git a/lib/Controller/ApiController.php b/lib/Controller/ApiController.php index 7abc6653..d6393e6b 100644 --- a/lib/Controller/ApiController.php +++ b/lib/Controller/ApiController.php @@ -22,6 +22,7 @@ use OCP\AppFramework\OCSController; use OCP\IConfig; use OCP\IGroupManager; +use OCP\IL10N; use OCP\IRequest; use OCP\IUserSession; @@ -40,6 +41,7 @@ public function __construct( private DatabaseStatistics $databaseStatistics, private ShareStatistics $shareStatistics, private SessionStatistics $sessionStatistics, + private IL10N $l10n, ) { parent::__construct($appName, $request); } @@ -131,19 +133,24 @@ private function getWebserver(): string { */ private function formatUptime(int $uptime): string { if ($uptime === -1) { - return 'Unknown'; + return $this->l10n->t('Unknown'); } try { $boot = new \DateTime($uptime . ' seconds ago'); } catch (\Exception $e) { - return 'Unknown'; + return $this->l10n->t('Unknown'); } $interval = $boot->diff(new \DateTime()); - if ($interval->days > 0) { - return $interval->format('%a days, %h hours, %i minutes, %s seconds'); + $days = $interval->days; + $hours = $interval->h; + $minutes = $interval->i; + $seconds = $interval->s; + + if ($days > 0) { + return $this->l10n->t('%1$d days, %2$d hours, %3$d minutes, %4$d seconds', [$days, $hours, $minutes, $seconds]); } - return $interval->format('%h hours, %i minutes, %s seconds'); + return $this->l10n->t('%1$d hours, %2$d minutes, %3$d seconds', [$hours, $minutes, $seconds]); } } diff --git a/lib/OperatingSystems/Linux.php b/lib/OperatingSystems/Linux.php index 8ee25d71..8f81884a 100644 --- a/lib/OperatingSystems/Linux.php +++ b/lib/OperatingSystems/Linux.php @@ -204,7 +204,7 @@ public function getDiskInfo(): array { } foreach ($matches['Filesystem'] as $i => $filesystem) { - if (in_array($matches['Type'][$i], ['tmpfs', 'devtmpfs', 'squashfs', 'overlay'], false)) { + if (in_array($matches['Type'][$i], ['tmpfs', 'devtmpfs', 'squashfs', 'overlay', 'efivarfs'], false)) { continue; } elseif (in_array($matches['Mounted'][$i], ['/etc/hostname', '/etc/hosts'], false)) { continue; diff --git a/lib/PhpStatistics.php b/lib/PhpStatistics.php index 289ad64e..7672fdc9 100644 --- a/lib/PhpStatistics.php +++ b/lib/PhpStatistics.php @@ -99,11 +99,25 @@ protected function getAPCuStatus(): array { } /** - * Get all loaded php extensions + * Get all loaded php extensions (PHP + Zend), de-duplicated and sorted. * - * @return array of strings with the names of the loaded extensions + * @return array|null array of extension names, or null if PHP forbids enumeration */ protected function getLoadedPhpExtensions(): ?array { - return (function_exists('get_loaded_extensions') ? get_loaded_extensions() : null); + if (!function_exists('get_loaded_extensions')) { + return null; + } + + // `get_loaded_extensions(true)` returns Zend extensions (OPcache, Xdebug, etc.) + // which are otherwise hidden from the regular call. + $extensions = array_merge( + get_loaded_extensions(false), + get_loaded_extensions(true) + ); + + $extensions = array_unique(array_map('strtolower', $extensions)); + natcasesort($extensions); + + return $extensions; } } diff --git a/templates/settings-admin.php b/templates/settings-admin.php index cffaeede..f537eb3a 100644 --- a/templates/settings-admin.php +++ b/templates/settings-admin.php @@ -57,13 +57,34 @@ function FormatMegabytes(int $byte): string { -

t('Operating System:')); ?>

-

t('CPU:')); ?> getName()) ?> (getThreads() ?> t('threads')); ?>)

-

t('Memory:')); ?> - getMemTotal() > 0): ?> getMemTotal())) ?>

- -

t('Server time:')); ?>

-

t('Uptime:')); ?>

+
+ + + + + + + + + + + getMemTotal() > 0): ?> + + + + + + + + + + + + + + +
t('Operating System:')); ?>
t('CPU:')); ?>getName()) ?> (getThreads() ?> t('threads')); ?>)
t('Memory:')); ?>getMemTotal())) ?>
t('Server time:')); ?>
t('Uptime:')); ?>
+
0): ?> @@ -335,93 +356,110 @@ function FormatMegabytes(int $byte): string { t('PHP')); ?> -
-
-

- t('Version:')); ?> - -

-

- t('Memory limit:')); ?> - -

-

- t('Max execution time:')); ?> - -

-

- t('Upload max size:')); ?> - -

-

- t('OPcache Revalidate Frequency:')); ?> - -

-

- t('Extensions:')); ?> - t('Unable to list extensions')); ?> -

- -

- t('Show phpinfo')) ?> -

- -
-
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
t('Version:')); ?>
t('Memory limit:')); ?> t('MB')); ?>
t('Max execution time:')); ?> t('seconds')); ?>
t('Upload max size:')); ?> t('MB')); ?>
t('OPcache Revalidate Frequency:')); ?> t('seconds')); ?>
t('Extensions:')); ?>
+ + t('Unable to list extensions'); + endif; +?> +
t('PHP Info:')); ?> + t('Show phpinfo')) ?> +
+

t('FPM worker pool')); ?>

-
-
-

- t('Pool name:')); ?> - -

-

- t('Pool type:')); ?> - -

-

- t('Start time:')); ?> - -

-

- t('Accepted connections:')); ?> - -

-

- t('Total processes:')); ?> - -

-

- t('Active processes:')); ?> - -

-

- t('Idle processes:')); ?> - -

-

- t('Listen queue:')); ?> - -

-

- t('Slow requests:')); ?> - -

-

- t('Max listen queue:')); ?> - -

-

- t('Max active processes:')); ?> - -

-

- t('Max children reached:')); ?> - -

-
-
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
t('Pool name:')); ?>
t('Pool type:')); ?>
t('Start time:')); ?>
t('Accepted connections:')); ?>
t('Total processes:')); ?>
t('Active processes:')); ?>
t('Idle processes:')); ?>
t('Listen queue:')); ?>
t('Slow requests:')); ?>
t('Max listen queue:')); ?>
t('Max active processes:')); ?>
t('Max children reached:')); ?>
+
@@ -431,22 +469,24 @@ function FormatMegabytes(int $byte): string { t('Database')); ?> -
-
-

- t('Type:')); ?> - -

-

- t('Version:')); ?> - -

-

- t('Size:')); ?> - -

-
-
+
+ + + + + + + + + + + + + + + +
t('Type:')); ?>
t('Version:')); ?>
t('Size:')); ?> t('MB')); ?>
+
diff --git a/tests/lib/ApiControllerTest.php b/tests/lib/ApiControllerTest.php index 9a559da1..2af79b3f 100644 --- a/tests/lib/ApiControllerTest.php +++ b/tests/lib/ApiControllerTest.php @@ -21,6 +21,7 @@ use OCP\AppFramework\Http; use OCP\IConfig; use OCP\IGroupManager; +use OCP\IL10N; use OCP\IRequest; use OCP\IUser; use OCP\IUserSession; @@ -38,6 +39,7 @@ class ApiControllerTest extends \Test\TestCase { private DatabaseStatistics&MockObject $databaseStatistics; private ShareStatistics&MockObject $shareStatistics; private SessionStatistics&MockObject $sessionStatistics; + private IL10N&MockObject $l10n; protected function setUp(): void { parent::setUp(); @@ -53,6 +55,7 @@ protected function setUp(): void { $this->databaseStatistics = $this->createMock(DatabaseStatistics::class); $this->shareStatistics = $this->createMock(ShareStatistics::class); $this->sessionStatistics = $this->createMock(SessionStatistics::class); + $this->l10n = $this->createMock(IL10N::class); } private function getController($userSession) { @@ -69,7 +72,8 @@ private function getController($userSession) { $this->fpmStatistics, $this->databaseStatistics, $this->shareStatistics, - $this->sessionStatistics + $this->sessionStatistics, + $this->l10n ); } diff --git a/vendor-bin/phpunit/composer.lock b/vendor-bin/phpunit/composer.lock index 08a07a7f..35c5b7c8 100644 --- a/vendor-bin/phpunit/composer.lock +++ b/vendor-bin/phpunit/composer.lock @@ -9,16 +9,16 @@ "packages-dev": [ { "name": "myclabs/deep-copy", - "version": "1.13.3", + "version": "1.13.4", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "faed855a7b5f4d4637717c2b3863e277116beb36" + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/faed855a7b5f4d4637717c2b3863e277116beb36", - "reference": "faed855a7b5f4d4637717c2b3863e277116beb36", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a", + "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a", "shasum": "" }, "require": { @@ -57,7 +57,7 @@ ], "support": { "issues": "https://github.com/myclabs/DeepCopy/issues", - "source": "https://github.com/myclabs/DeepCopy/tree/1.13.3" + "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4" }, "funding": [ { @@ -65,24 +65,23 @@ "type": "tidelift" } ], - "time": "2025-07-05T12:25:42+00:00" + "time": "2025-08-01T08:46:24+00:00" }, { "name": "nikic/php-parser", - "version": "v5.5.0", + "version": "v5.8.0", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "ae59794362fe85e051a58ad36b289443f57be7a9" + "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9", - "reference": "ae59794362fe85e051a58ad36b289443f57be7a9", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/044a6a392ff8ad0d61f14370a5fbbd0a0107152f", + "reference": "044a6a392ff8ad0d61f14370a5fbbd0a0107152f", "shasum": "" }, "require": { - "ext-ctype": "*", "ext-json": "*", "ext-tokenizer": "*", "php": ">=7.4" @@ -97,7 +96,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.0-dev" + "dev-master": "5.x-dev" } }, "autoload": { @@ -121,9 +120,9 @@ ], "support": { "issues": "https://github.com/nikic/PHP-Parser/issues", - "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0" + "source": "https://github.com/nikic/PHP-Parser/tree/v5.8.0" }, - "time": "2025-05-31T08:24:38+00:00" + "time": "2026-07-04T14:30:18+00:00" }, { "name": "phar-io/manifest", @@ -566,26 +565,26 @@ }, { "name": "phpunit/phpunit", - "version": "10.5.48", + "version": "10.5.64", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "6e0a2bc39f6fae7617989d690d76c48e6d2eb541" + "reference": "0e8c1d19cea35ad97d4887f363d07c78e30fbf06" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6e0a2bc39f6fae7617989d690d76c48e6d2eb541", - "reference": "6e0a2bc39f6fae7617989d690d76c48e6d2eb541", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/0e8c1d19cea35ad97d4887f363d07c78e30fbf06", + "reference": "0e8c1d19cea35ad97d4887f363d07c78e30fbf06", "shasum": "" }, "require": { "ext-dom": "*", + "ext-filter": "*", "ext-json": "*", "ext-libxml": "*", "ext-mbstring": "*", - "ext-xml": "*", "ext-xmlwriter": "*", - "myclabs/deep-copy": "^1.13.3", + "myclabs/deep-copy": "^1.13.4", "phar-io/manifest": "^2.0.4", "phar-io/version": "^3.2.1", "php": ">=8.1", @@ -596,13 +595,13 @@ "phpunit/php-timer": "^6.0.0", "sebastian/cli-parser": "^2.0.1", "sebastian/code-unit": "^2.0.0", - "sebastian/comparator": "^5.0.3", + "sebastian/comparator": "^5.0.5", "sebastian/diff": "^5.1.1", "sebastian/environment": "^6.1.0", - "sebastian/exporter": "^5.1.2", + "sebastian/exporter": "^5.1.4", "sebastian/global-state": "^6.0.2", "sebastian/object-enumerator": "^5.0.0", - "sebastian/recursion-context": "^5.0.0", + "sebastian/recursion-context": "^5.0.1", "sebastian/type": "^4.0.0", "sebastian/version": "^4.0.1" }, @@ -647,31 +646,15 @@ "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.48" + "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.64" }, "funding": [ { - "url": "https://phpunit.de/sponsors.html", - "type": "custom" - }, - { - "url": "https://github.com/sebastianbergmann", - "type": "github" - }, - { - "url": "https://liberapay.com/sebastianbergmann", - "type": "liberapay" - }, - { - "url": "https://thanks.dev/u/gh/sebastianbergmann", - "type": "thanks_dev" - }, - { - "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit", - "type": "tidelift" + "url": "https://phpunit.de/sponsoring.html", + "type": "other" } ], - "time": "2025-07-11T04:07:17+00:00" + "time": "2026-07-06T14:50:35+00:00" }, { "name": "sebastian/cli-parser", @@ -843,16 +826,16 @@ }, { "name": "sebastian/comparator", - "version": "5.0.3", + "version": "5.0.5", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e" + "reference": "55dfef806eb7dfeb6e7a6935601fef866f8ca48d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", - "reference": "a18251eb0b7a2dcd2f7aa3d6078b18545ef0558e", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/55dfef806eb7dfeb6e7a6935601fef866f8ca48d", + "reference": "55dfef806eb7dfeb6e7a6935601fef866f8ca48d", "shasum": "" }, "require": { @@ -908,15 +891,27 @@ "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.3" + "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.5" }, "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": "2024-10-18T14:56:07+00:00" + "time": "2026-01-24T09:25:16+00:00" }, { "name": "sebastian/complexity", @@ -1109,16 +1104,16 @@ }, { "name": "sebastian/exporter", - "version": "5.1.2", + "version": "5.1.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "955288482d97c19a372d3f31006ab3f37da47adf" + "reference": "0735b90f4da94969541dac1da743446e276defa6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf", - "reference": "955288482d97c19a372d3f31006ab3f37da47adf", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/0735b90f4da94969541dac1da743446e276defa6", + "reference": "0735b90f4da94969541dac1da743446e276defa6", "shasum": "" }, "require": { @@ -1127,7 +1122,7 @@ "sebastian/recursion-context": "^5.0" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.5" }, "type": "library", "extra": { @@ -1175,15 +1170,27 @@ "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.2" + "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.4" }, "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": "2024-03-02T07:17:12+00:00" + "time": "2025-09-24T06:09:11+00:00" }, { "name": "sebastian/global-state", @@ -1419,23 +1426,23 @@ }, { "name": "sebastian/recursion-context", - "version": "5.0.0", + "version": "5.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "05909fb5bc7df4c52992396d0116aed689f93712" + "reference": "47e34210757a2f37a97dcd207d032e1b01e64c7a" }, "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/47e34210757a2f37a97dcd207d032e1b01e64c7a", + "reference": "47e34210757a2f37a97dcd207d032e1b01e64c7a", "shasum": "" }, "require": { "php": ">=8.1" }, "require-dev": { - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.5" }, "type": "library", "extra": { @@ -1470,15 +1477,28 @@ "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/5.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-10T07:50:56+00:00" }, { "name": "sebastian/type", @@ -1591,16 +1611,16 @@ }, { "name": "theseer/tokenizer", - "version": "1.2.3", + "version": "1.3.1", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2" + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", - "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c", + "reference": "b7489ce515e168639d17feec34b8847c326b0b3c", "shasum": "" }, "require": { @@ -1629,7 +1649,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.3" + "source": "https://github.com/theseer/tokenizer/tree/1.3.1" }, "funding": [ { @@ -1637,7 +1657,7 @@ "type": "github" } ], - "time": "2024-03-03T12:36:25+00:00" + "time": "2025-11-17T20:03:58+00:00" } ], "aliases": [], @@ -1650,5 +1670,5 @@ "platform-overrides": { "php": "8.1.33" }, - "plugin-api-version": "2.6.0" + "plugin-api-version": "2.9.0" }