diff --git a/.gitattributes b/.gitattributes
deleted file mode 100644
index 8962e549..00000000
--- a/.gitattributes
+++ /dev/null
@@ -1,3 +0,0 @@
-# SPDX-FileCopyrightText: 2025 Nextcloud GmbH and Nextcloud contributors
-# SPDX-License-Identifier: AGPL-3.0-or-later
-/vendor-bin/**/composer.lock binary
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 61660808..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@ed597411d8f924073f98dfc5c65a23a2325f34cd # v8.0.0
+ 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 914ddd15..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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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 c0411c05..76340acb 100644
--- a/.github/workflows/dependabot-approve-merge.yml
+++ b/.github/workflows/dependabot-approve-merge.yml
@@ -24,10 +24,17 @@ 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
@@ -44,15 +51,51 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- # GitHub actions bot approve
- - uses: hmarr/auto-approve-action@f0939ea97e9205ef24d872e76833fa908a770363 # v4.0.0
+ - 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 }}
+ - 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@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # v2.0.0
- if: startsWith(steps.branchname.outputs.branch, 'dependabot/')
+ 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:
github-token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/.github/workflows/lint-php-cs.yml b/.github/workflows/lint-php-cs.yml
index 92e12149..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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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 990babbc..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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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 e1d4beb1..89c5ca0e 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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,17 +125,21 @@ 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
- - name: Set up dependencies
+ - name: Remove nextcloud/ocp
# Only run if phpunit config file exists
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
composer remove nextcloud/ocp --dev --no-scripts
- composer i
+
+ - name: Install composer dependencies
+ uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
+ with:
+ working-directory: apps/${{ env.APP_NAME }}
- name: Set up Nextcloud
env:
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml
index dcd19e78..40f41ae5 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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,17 +123,21 @@ 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
- - name: Set up dependencies
+ - name: Remove nextcloud/ocp
# Only run if phpunit config file exists
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
composer remove nextcloud/ocp --dev --no-scripts
- composer i
+
+ - name: Install composer dependencies
+ uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
+ with:
+ working-directory: apps/${{ env.APP_NAME }}
- name: Set up Nextcloud
env:
diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml
index e673ef31..3363620c 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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) }}
@@ -101,7 +102,7 @@ jobs:
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
- name: Checkout server
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
submodules: true
@@ -109,13 +110,13 @@ jobs:
ref: ${{ matrix.server-versions }}
- name: Checkout app
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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
@@ -129,17 +130,21 @@ 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
- - name: Set up dependencies
+ - name: Remove nextcloud/ocp
# Only run if phpunit config file exists
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
composer remove nextcloud/ocp --dev --no-scripts
- composer i
+
+ - name: Install composer dependencies
+ uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
+ with:
+ working-directory: apps/${{ env.APP_NAME }}
- name: Set up Nextcloud
env:
diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml
index 49788460..6f1ba6c9 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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,17 +121,21 @@ 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
- - name: Set up dependencies
+ - name: Remove nextcloud/ocp
# Only run if phpunit config file exists
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
composer remove nextcloud/ocp --dev --no-scripts
- composer i
+
+ - name: Install composer dependencies
+ uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
+ with:
+ working-directory: apps/${{ env.APP_NAME }}
- name: Set up Nextcloud
env:
diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml
index 1dfa9848..cb994fc9 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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,17 +110,21 @@ 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
- - name: Set up dependencies
+ - name: Remove nextcloud/ocp
# Only run if phpunit config file exists
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
composer remove nextcloud/ocp --dev --no-scripts
- composer i
+
+ - name: Install composer dependencies
+ uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
+ with:
+ working-directory: apps/${{ env.APP_NAME }}
- name: Set up Nextcloud
env:
diff --git a/.github/workflows/pr-feedback.yml b/.github/workflows/pr-feedback.yml
index f4c0477c..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@f0cab224dea8e1f282f9451de322f323c78fc7a5 # main
+ - uses: nextcloud/pr-feedback-action@5227c55be184087d0aef6338bee210d8620b6297 # v1.0.1
with:
feedback-message: |
Hello there,
diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml
index 9fa1b664..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@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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,15 +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: Check for vulnerable PHP dependencies
- run: composer require --dev roave/security-advisories:dev-latest
+ - name: Install composer dependencies
+ uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
- - name: Install nextcloud/ocp
+ - 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 00fb5e2e..67fdafc4 100644
--- a/.github/workflows/reuse.yml
+++ b/.github/workflows/reuse.yml
@@ -19,7 +19,7 @@ jobs:
runs-on: ubuntu-latest-low
steps:
- name: Checkout
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
with:
persist-credentials: false
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 124e3070..f09ae8f9 100644
--- a/.github/workflows/update-nextcloud-ocp.yml
+++ b/.github/workflows/update-nextcloud-ocp.yml
@@ -21,30 +21,34 @@ 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:
- ${{ github.event.repository.default_branch }}
+ - 'stable34'
+ - 'stable33'
- 'stable32'
- - 'stable31'
name: update-nextcloud-ocp-${{ matrix.branches }}
steps:
- id: checkout
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
+ 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@44454db4f0199b8b9685a5d763dc37cbf79108e1 # v2.36.0
+ 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
@@ -58,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
-
- - name: Composer update nextcloud/ocp # zizmor: ignore[template-injection]
- id: update_branch
- if: ${{ steps.checkout.outcome == 'success' && matrix.branches != 'main' }}
- run: composer require --dev 'nextcloud/ocp:dev-${{ matrix.branches }}'
+ uses: ramsey/composer-install@65e4f84970763564f46a70b8a54b90d033b3bdda # 4.0.0
- - 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' }}
+ - name: Check composer bin for nextcloud/ocp exists
+ id: check_composer_bin
+ uses: andstor/file-existence-action@558493d6c74bf472d87c84eab196434afc2fa029 # v3.1.0
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 }}'
+ files: vendor-bin/nextcloud-ocp/composer.json
- name: Composer update nextcloud/ocp
- id: update_main
- if: ${{ steps.checkout.outcome == 'success' && matrix.branches == 'main' }}
- run: composer require --dev nextcloud/ocp:dev-master
+ id: update_branch
+ 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
+
+ PACKAGE_VERSION="nextcloud/ocp:dev-$BRANCH_NAME"
+ if [[ "$BRANCH_NAME" == 'main' ]]; then
+ PACKAGE_VERSION='nextcloud/ocp:dev-master'
+ fi
+
+ 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@98357b18bf14b5342f975ff684046ec3b2a07725 # v8.0.0
+ 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'
@@ -120,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 6bfc0540..c74d10c4 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.
- 5.0.0-dev.0
+ 5.0.0
agpl
Bjoern Schiessle
Ivan Sein Santiago
diff --git a/composer.json b/composer.json
index aadf7885..8fc15a4d 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-stable33"
},
"config": {
"allow-plugins": {
@@ -10,7 +10,7 @@
"composer/package-versions-deprecated": true
},
"platform": {
- "php": "8.1"
+ "php": "8.2"
},
"sort-packages": true
},
diff --git a/composer.lock b/composer.lock
index 1306852e..078805ab 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,21 +4,21 @@
"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": "df6de1e3e7000fd8236340454c025b53",
"packages": [],
"packages-dev": [
{
"name": "bamarni/composer-bin-plugin",
- "version": "1.8.3",
+ "version": "1.9.1",
"source": {
"type": "git",
"url": "https://github.com/bamarni/composer-bin-plugin.git",
- "reference": "e7ef9e012667327516c24e5fad9903a3bc91389d"
+ "reference": "641d0663f5ac270b1aeec4337b7856f76204df47"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/bamarni/composer-bin-plugin/zipball/e7ef9e012667327516c24e5fad9903a3bc91389d",
- "reference": "e7ef9e012667327516c24e5fad9903a3bc91389d",
+ "url": "https://api.github.com/repos/bamarni/composer-bin-plugin/zipball/641d0663f5ac270b1aeec4337b7856f76204df47",
+ "reference": "641d0663f5ac270b1aeec4337b7856f76204df47",
"shasum": ""
},
"require": {
@@ -26,11 +26,11 @@
"php": "^7.2.5 || ^8.0"
},
"require-dev": {
- "composer/composer": "^2.0",
+ "composer/composer": "^2.2.26",
"ext-json": "*",
"phpstan/extension-installer": "^1.1",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-phpunit": "^1.1",
+ "phpstan/phpstan": "^1.8 || ^2.0",
+ "phpstan/phpstan-phpunit": "^1.1 || ^2.0",
"phpunit/phpunit": "^8.5 || ^9.6 || ^10.0",
"symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
"symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0 || ^6.0",
@@ -60,9 +60,9 @@
],
"support": {
"issues": "https://github.com/bamarni/composer-bin-plugin/issues",
- "source": "https://github.com/bamarni/composer-bin-plugin/tree/1.8.3"
+ "source": "https://github.com/bamarni/composer-bin-plugin/tree/1.9.1"
},
- "time": "2025-11-24T19:20:55+00:00"
+ "time": "2026-02-04T10:18:12+00:00"
},
{
"name": "bantu/ini-get-wrapper",
@@ -100,30 +100,29 @@
},
{
"name": "nextcloud/ocp",
- "version": "dev-master",
+ "version": "dev-stable33",
"source": {
"type": "git",
"url": "https://github.com/nextcloud-deps/ocp.git",
- "reference": "01ad50a61f835a4a7511d305e7e21cddce84e804"
+ "reference": "31f32099bd25b3484f42b0ccdd16abd4560d705a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/01ad50a61f835a4a7511d305e7e21cddce84e804",
- "reference": "01ad50a61f835a4a7511d305e7e21cddce84e804",
+ "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/31f32099bd25b3484f42b0ccdd16abd4560d705a",
+ "reference": "31f32099bd25b3484f42b0ccdd16abd4560d705a",
"shasum": ""
},
"require": {
- "php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
+ "php": "~8.2 || ~8.3 || ~8.4 || ~8.5",
"psr/clock": "^1.0",
"psr/container": "^2.0.2",
"psr/event-dispatcher": "^1.0",
"psr/log": "^3.0.2"
},
- "default-branch": true,
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "33.0.0-dev"
+ "dev-stable33": "33.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/stable33"
},
- "time": "2026-01-16T00:57:34+00:00"
+ "time": "2026-08-30T02:15:58+00:00"
},
{
"name": "psr/clock",
@@ -359,7 +358,7 @@
"platform": {},
"platform-dev": {},
"platform-overrides": {
- "php": "8.1"
+ "php": "8.2"
},
"plugin-api-version": "2.9.0"
}
diff --git a/l10n/af.js b/l10n/af.js
index ddce859c..51caa61e 100644
--- a/l10n/af.js
+++ b/l10n/af.js
@@ -1,21 +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:",
- "seconds" : "sekondes",
- "Database" : "Databasis",
- "Type:" : "Tipe:",
"Copy" : "Kopieer"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/af.json b/l10n/af.json
index f8d55c90..38bca29b 100644
--- a/l10n/af.json
+++ b/l10n/af.json
@@ -1,19 +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:",
- "seconds" : "sekondes",
- "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 5a9fa02d..749e338f 100644
--- a/l10n/ar.js
+++ b/l10n/ar.js
@@ -1,74 +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 للنسخ.",
- "Unknown" : "غير معروف",
"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:" : "أقصى زمن تنفيذ:",
- "seconds" : "ثوانٍ",
"Upload max size:" : "الحجم الأقصى للرفع:",
- "OPcache Revalidate Frequency:" : "تواتر إعادة مصادقة ذاكرة التخزين المؤقت OPcache:",
"Extensions:" : "الامتدادات extensions:",
- "Unable to list extensions" : "تعذّر عرض قائمة بالامتدادات extensions:",
"Show phpinfo" : "عرض ملف phpinfo",
"FPM worker pool" : "حشد عمليات PHP-FPM",
"Pool name:" : "اسم الحشد:",
@@ -83,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 fe2e0f8e..6a1a55f0 100644
--- a/l10n/ar.json
+++ b/l10n/ar.json
@@ -1,72 +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 للنسخ.",
- "Unknown" : "غير معروف",
"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:" : "أقصى زمن تنفيذ:",
- "seconds" : "ثوانٍ",
"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 +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 280855a2..71209673 100644
--- a/l10n/ast.js
+++ b/l10n/ast.js
@@ -1,54 +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.",
- "Unknown" : "Desconocíu",
"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:",
- "seconds" : "segundos",
- "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 d58e225a..eec85f89 100644
--- a/l10n/ast.json
+++ b/l10n/ast.json
@@ -1,52 +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.",
- "Unknown" : "Desconocíu",
"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:",
- "seconds" : "segundos",
- "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 b283fa5a..6710d4af 100644
--- a/l10n/az.js
+++ b/l10n/az.js
@@ -1,17 +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",
- "seconds" : "saniyələr",
- "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 ec9b96dd..1d13e4a9 100644
--- a/l10n/az.json
+++ b/l10n/az.json
@@ -1,15 +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",
- "seconds" : "saniyələr",
- "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 a70bc637..eed657a7 100644
--- a/l10n/be.js
+++ b/l10n/be.js
@@ -1,20 +1,40 @@
OC.L10N.register(
"serverinfo",
{
- "Copied!" : "Скапіявана!",
- "Not supported!" : "Не падтрымліваецца!",
- "Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.",
- "Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.",
- "Unknown" : "Невядомы",
"System" : "Сістэма",
- "Operating System:" : "Аперацыйная сістэма:",
- "Size:" : "Памер:",
+ "Unknown" : "Невядомы",
"Last hour" : "Апошняя гадзіна",
"Last 24 Hours" : "Апошнія 24 гадзіны",
"Last 7 Days" : "Апошнія 7 дзён",
"Last 30 Days" : "Апошнія 30 дзён",
+ "Webcron" : "Webcron",
+ "Never" : "Ніколі",
+ "Threads" : "Гутаркі",
"Database" : "База даных",
"Type:" : "Тып:",
+ "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-адраса."
diff --git a/l10n/be.json b/l10n/be.json
index ccc104f3..a5614396 100644
--- a/l10n/be.json
+++ b/l10n/be.json
@@ -1,18 +1,38 @@
{ "translations": {
- "Copied!" : "Скапіявана!",
- "Not supported!" : "Не падтрымліваецца!",
- "Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.",
- "Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.",
- "Unknown" : "Невядомы",
"System" : "Сістэма",
- "Operating System:" : "Аперацыйная сістэма:",
- "Size:" : "Памер:",
+ "Unknown" : "Невядомы",
"Last hour" : "Апошняя гадзіна",
"Last 24 Hours" : "Апошнія 24 гадзіны",
"Last 7 Days" : "Апошнія 7 дзён",
"Last 30 Days" : "Апошнія 30 дзён",
+ "Webcron" : "Webcron",
+ "Never" : "Ніколі",
+ "Threads" : "Гутаркі",
"Database" : "База даных",
"Type:" : "Тып:",
+ "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-адраса."
diff --git a/l10n/bg.js b/l10n/bg.js
index 6934259f..77ff9e1b 100644
--- a/l10n/bg.js
+++ b/l10n/bg.js
@@ -1,50 +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.",
- "Unknown" : "Неизвестен",
"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:" : "Групи:",
@@ -53,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 560fe884..18420197 100644
--- a/l10n/bg.json
+++ b/l10n/bg.json
@@ -1,48 +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.",
- "Unknown" : "Неизвестен",
"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:" : "Групи:",
@@ -51,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 9878768f..9c84db22 100644
--- a/l10n/bn_BD.js
+++ b/l10n/bn_BD.js
@@ -1,14 +1,22 @@
OC.L10N.register(
"serverinfo",
{
- "Copied!" : "অনুলিপি!",
- "Not supported!" : "সমর্থিত নয়! ",
- "Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।",
- "Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।",
"Unknown" : "অজানা",
- "Temperature" : "তাপমাত্রা",
+ "Type:" : "ধরণঃ",
"Size:" : "আয়তনঃ",
+ "Details" : "বিসতারিত",
+ "Hostname" : "হোস্টনেম",
+ "Disabled" : "অকার্যকর",
+ "seconds" : "সেকেন্ড",
+ "Yes" : "হ্যাঁ",
+ "No" : "না",
+ "Version" : "ভার্সন",
"Shares" : "ভাগাভাগি",
- "Type:" : "ধরণঃ"
+ "Warning" : "সতর্কবাণী",
+ "Temperature" : "তাপমাত্রা",
+ "Copied!" : "অনুলিপি!",
+ "Not supported!" : "সমর্থিত নয়! ",
+ "Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।",
+ "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 e9327809..a6d65f37 100644
--- a/l10n/bn_BD.json
+++ b/l10n/bn_BD.json
@@ -1,12 +1,20 @@
{ "translations": {
- "Copied!" : "অনুলিপি!",
- "Not supported!" : "সমর্থিত নয়! ",
- "Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।",
- "Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।",
"Unknown" : "অজানা",
- "Temperature" : "তাপমাত্রা",
+ "Type:" : "ধরণঃ",
"Size:" : "আয়তনঃ",
+ "Details" : "বিসতারিত",
+ "Hostname" : "হোস্টনেম",
+ "Disabled" : "অকার্যকর",
+ "seconds" : "সেকেন্ড",
+ "Yes" : "হ্যাঁ",
+ "No" : "না",
+ "Version" : "ভার্সন",
"Shares" : "ভাগাভাগি",
- "Type:" : "ধরণঃ"
+ "Warning" : "সতর্কবাণী",
+ "Temperature" : "তাপমাত্রা",
+ "Copied!" : "অনুলিপি!",
+ "Not supported!" : "সমর্থিত নয়! ",
+ "Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।",
+ "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 8f3f1660..bd07f024 100644
--- a/l10n/br.js
+++ b/l10n/br.js
@@ -1,16 +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ñ. ",
- "Unknown" : "Dianv",
- "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 d4bbe9ec..36956f94 100644
--- a/l10n/br.json
+++ b/l10n/br.json
@@ -1,14 +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ñ. ",
- "Unknown" : "Dianv",
- "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 636b7557..5cbb440f 100644
--- a/l10n/ca.js
+++ b/l10n/ca.js
@@ -1,48 +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.",
- "Unknown" : "Desconegut",
"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:",
@@ -51,20 +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ó:",
- "seconds" : "segons",
- "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 a7a8e2d2..350add92 100644
--- a/l10n/ca.json
+++ b/l10n/ca.json
@@ -1,46 +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.",
- "Unknown" : "Desconegut",
"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:",
@@ -49,20 +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ó:",
- "seconds" : "segons",
- "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 09117b29..61372b8a 100644
--- a/l10n/cs.js
+++ b/l10n/cs.js
@@ -1,77 +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",
- "System" : "Systém",
"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í:",
- "seconds" : "sekund",
"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:",
@@ -86,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 1e847b1c..3c6e88b8 100644
--- a/l10n/cs.json
+++ b/l10n/cs.json
@@ -1,75 +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",
- "System" : "Systém",
"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í:",
- "seconds" : "sekund",
"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:",
@@ -84,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 ab9602f0..0aa92cc0 100644
--- a/l10n/cy_GB.js
+++ b/l10n/cy_GB.js
@@ -1,18 +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.",
- "Unknown" : "Anhysbys",
"System" : "System",
+ "Unknown" : "Anhysbys",
"Monitoring" : "Monitro",
- "Size:" : "Maint:",
- "PHP" : "PHP",
- "seconds" : "eiliad",
"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 89cb7ca0..ada2f1e4 100644
--- a/l10n/cy_GB.json
+++ b/l10n/cy_GB.json
@@ -1,16 +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.",
- "Unknown" : "Anhysbys",
"System" : "System",
+ "Unknown" : "Anhysbys",
"Monitoring" : "Monitro",
- "Size:" : "Maint:",
- "PHP" : "PHP",
- "seconds" : "eiliad",
"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 f1972728..2964a855 100644
--- a/l10n/da.js
+++ b/l10n/da.js
@@ -1,75 +1,74 @@
OC.L10N.register(
"serverinfo",
{
- "CPU info not available" : "CPU information er ikke tilgængeli",
- "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}",
- "RAM info not available" : "RAM info ikke tilgængelig",
- "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.",
- "Unknown" : "Ukendt",
"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.",
- "Operating System:" : "Operativsystem:",
- "CPU:" : "CPU:",
- "threads" : "tråde",
- "Memory:" : "Hukommelse:",
- "Server time:" : "Server tid:",
- "Uptime:" : "Oppetid:",
- "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",
+ "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:",
+ "Used" : "Forbrugt",
+ "Available" : "Tilgængelig",
"Disk" : "Disk",
+ "Files" : "Filer",
"Mount:" : "Montering:",
"Filesystem:" : "Filsystem:",
- "Size:" : "Størrelse:",
"Available:" : "Tilgængelig:",
"Used:" : "Anvendt:",
- "Files:" : "Filer:",
- "Storages:" : "Lagre:",
- "Free Space:" : "Ledig plads:",
+ "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",
- "Hostname:" : "Hostnavn:",
- "Gateway:" : "Gateway:",
+ "Hostname" : "Værtsnavn",
+ "Gateway" : "Gateway",
+ "DNS" : "DNS",
"Status:" : "Status:",
"Speed:" : "Hastighed:",
"Duplex:" : "Dupleks:",
"MAC:" : "MAC:",
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
- "Active users" : "Aktive brugere",
- "Last hour" : "Seneste time",
- "%s%% of all users" : "%s%% af alle brugere",
- "Last 24 Hours" : "Seneste 24 timer",
- "Last 7 Days" : "Seneste 7 dage",
- "Last 30 Days" : "Seneste 30 dage",
- "Shares" : "Delinger",
- "Users:" : "Brugere:",
- "Groups:" : "Grupper:",
- "Links:" : "Links:",
- "Emails:" : "E-mails:",
- "Federated sent:" : "Fødereret sendt:",
- "Federated received:" : "Fødereret modtaget:",
- "Talk conversations:" : "Snak samtaler:",
+ "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:",
- "Memory limit:" : "Hukommelsesgrænse:",
+ "Version" : "Version",
"Max execution time:" : "Maks udførselstid:",
- "seconds" : "sekunder ",
"Upload max size:" : "Max upload størrelse:",
- "OPcache Revalidate Frequency:" : "OPcache revalideringsfrekvens:",
"Extensions:" : "Udvidelser:",
- "Unable to list extensions" : "Kan ikke liste udvidelser",
"Show phpinfo" : "Vis phpinfo",
"FPM worker pool" : "FPM worker pool",
"Pool name:" : "Pool navn:",
@@ -84,16 +83,50 @@ 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:" : "Snak 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",
- "Output in JSON" : "Output i JSON",
"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)",
- "Skip server update" : "Spring server-opdatering over",
"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.",
- "Unknown Processor" : "Ukendt processor"
+ "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."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/da.json b/l10n/da.json
index bf37dc77..7d1f132a 100644
--- a/l10n/da.json
+++ b/l10n/da.json
@@ -1,73 +1,72 @@
{ "translations": {
- "CPU info not available" : "CPU information er ikke tilgængeli",
- "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}",
- "RAM info not available" : "RAM info ikke tilgængelig",
- "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.",
- "Unknown" : "Ukendt",
"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.",
- "Operating System:" : "Operativsystem:",
- "CPU:" : "CPU:",
- "threads" : "tråde",
- "Memory:" : "Hukommelse:",
- "Server time:" : "Server tid:",
- "Uptime:" : "Oppetid:",
- "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",
+ "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:",
+ "Used" : "Forbrugt",
+ "Available" : "Tilgængelig",
"Disk" : "Disk",
+ "Files" : "Filer",
"Mount:" : "Montering:",
"Filesystem:" : "Filsystem:",
- "Size:" : "Størrelse:",
"Available:" : "Tilgængelig:",
"Used:" : "Anvendt:",
- "Files:" : "Filer:",
- "Storages:" : "Lagre:",
- "Free Space:" : "Ledig plads:",
+ "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",
- "Hostname:" : "Hostnavn:",
- "Gateway:" : "Gateway:",
+ "Hostname" : "Værtsnavn",
+ "Gateway" : "Gateway",
+ "DNS" : "DNS",
"Status:" : "Status:",
"Speed:" : "Hastighed:",
"Duplex:" : "Dupleks:",
"MAC:" : "MAC:",
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
- "Active users" : "Aktive brugere",
- "Last hour" : "Seneste time",
- "%s%% of all users" : "%s%% af alle brugere",
- "Last 24 Hours" : "Seneste 24 timer",
- "Last 7 Days" : "Seneste 7 dage",
- "Last 30 Days" : "Seneste 30 dage",
- "Shares" : "Delinger",
- "Users:" : "Brugere:",
- "Groups:" : "Grupper:",
- "Links:" : "Links:",
- "Emails:" : "E-mails:",
- "Federated sent:" : "Fødereret sendt:",
- "Federated received:" : "Fødereret modtaget:",
- "Talk conversations:" : "Snak samtaler:",
+ "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:",
- "Memory limit:" : "Hukommelsesgrænse:",
+ "Version" : "Version",
"Max execution time:" : "Maks udførselstid:",
- "seconds" : "sekunder ",
"Upload max size:" : "Max upload størrelse:",
- "OPcache Revalidate Frequency:" : "OPcache revalideringsfrekvens:",
"Extensions:" : "Udvidelser:",
- "Unable to list extensions" : "Kan ikke liste udvidelser",
"Show phpinfo" : "Vis phpinfo",
"FPM worker pool" : "FPM worker pool",
"Pool name:" : "Pool navn:",
@@ -82,16 +81,50 @@
"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:" : "Snak 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",
- "Output in JSON" : "Output i JSON",
"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)",
- "Skip server update" : "Spring server-opdatering over",
"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.",
- "Unknown Processor" : "Ukendt processor"
+ "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);"
}
\ No newline at end of file
diff --git a/l10n/de.js b/l10n/de.js
index ebd6f6ed..bb2c6f8e 100644
--- a/l10n/de.js
+++ b/l10n/de.js
@@ -1,78 +1,129 @@
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}) 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}",
- "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",
- "System" : "System",
"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:",
- "MB" : "MB",
+ "Version" : "Version",
+ "Memory limit" : "Speicherlimit",
"Max execution time:" : "Maximale Ausführungszeit:",
- "seconds" : "Sekunden",
"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",
@@ -88,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 82e7a004..483d4b90 100644
--- a/l10n/de.json
+++ b/l10n/de.json
@@ -1,76 +1,127 @@
{ "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}) 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}",
- "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",
- "System" : "System",
"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:",
- "MB" : "MB",
+ "Version" : "Version",
+ "Memory limit" : "Speicherlimit",
"Max execution time:" : "Maximale Ausführungszeit:",
- "seconds" : "Sekunden",
"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",
@@ -86,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 98de1b58..e6b646d6 100644
--- a/l10n/de_DE.js
+++ b/l10n/de_DE.js
@@ -1,78 +1,129 @@
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",
- "System" : "System",
"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:",
- "MB" : "MB",
+ "Version" : "Version",
+ "Memory limit" : "Speicherlimit",
"Max execution time:" : "Maximale Ausführungszeit:",
- "seconds" : "Sekunden",
"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",
@@ -88,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 3ce238dd..a222365b 100644
--- a/l10n/de_DE.json
+++ b/l10n/de_DE.json
@@ -1,76 +1,127 @@
{ "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",
- "System" : "System",
"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:",
- "MB" : "MB",
+ "Version" : "Version",
+ "Memory limit" : "Speicherlimit",
"Max execution time:" : "Maximale Ausführungszeit:",
- "seconds" : "Sekunden",
"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",
@@ -86,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 4c4f28d1..914a08df 100644
--- a/l10n/el.js
+++ b/l10n/el.js
@@ -1,75 +1,77 @@
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.",
- "Unknown" : "Άγνωστο",
"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:",
- "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" : "Οι πληροφορίες επεξεργαστή 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:" : "Ταχύτητα:",
"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:" : "Email:",
- "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:" : "Μέγιστος χρόνος εκτέλεσης:",
- "seconds" : "δευτερόλεπτα",
"Upload max size:" : "Μέγιστο μέγεθος μεταφόρτωσης:",
- "OPcache Revalidate Frequency:" : "Συχνότητα Επανεπικύρωσης OPcache:",
"Extensions:" : "Επεκτάσεις:",
- "Unable to list extensions" : "Αδυναμία λίστας επεκτάσεων",
"Show phpinfo" : "Εμφάνιση phpinfo",
"FPM worker pool" : "Συλλογή εργατών FPM",
"Pool name:" : "Όνομα συλλογής:",
@@ -84,16 +86,50 @@ OC.L10N.register(
"Max listen queue:" : "Μέγιστη ουρά ακρόασης:",
"Max active processes:" : "Μέγιστες ενεργές διεργασίες:",
"Max children reached:" : "Φτάστηκε μέγιστος αριθμός παιδιών:",
- "Database" : "Βάση δεδομένων",
- "Type:" : "Τύπος:",
+ "CPU" : "CPU",
+ "Resource usage" : "Χρήση πόρων",
+ "Shares" : "Κοινόχρηστοι φάκελοι",
+ "Users:" : "Χρήστες:",
+ "Groups:" : "Ομάδες:",
+ "Links:" : "Σύνδεσμοι:",
+ "Emails:" : "Email:",
+ "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:" : "Όριο μνήμης:",
+ "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)" : "Παράλειψη τμήματος εφαρμογών (η συμπερίληψη του τμήματος εφαρμογών θα στείλει εξωτερικό αίτημα στο app store)",
- "Skip server update" : "Παράλειψη ενημέρωσης διακομιστή",
"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.",
- "Unknown Processor" : "Άγνωστος Επεξεργαστής"
+ "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Στη συνέχεια, περάστε το αναγνωριστικό με την κεφαλίδα \"NC-Token\" όταν υποβάλετε ερώτημα στην παραπάνω διεύθυνση URL."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/el.json b/l10n/el.json
index 8fc53524..4a09fc05 100644
--- a/l10n/el.json
+++ b/l10n/el.json
@@ -1,73 +1,75 @@
{ "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.",
- "Unknown" : "Άγνωστο",
"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:",
- "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" : "Οι πληροφορίες επεξεργαστή 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:" : "Ταχύτητα:",
"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:" : "Email:",
- "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:" : "Μέγιστος χρόνος εκτέλεσης:",
- "seconds" : "δευτερόλεπτα",
"Upload max size:" : "Μέγιστο μέγεθος μεταφόρτωσης:",
- "OPcache Revalidate Frequency:" : "Συχνότητα Επανεπικύρωσης OPcache:",
"Extensions:" : "Επεκτάσεις:",
- "Unable to list extensions" : "Αδυναμία λίστας επεκτάσεων",
"Show phpinfo" : "Εμφάνιση phpinfo",
"FPM worker pool" : "Συλλογή εργατών FPM",
"Pool name:" : "Όνομα συλλογής:",
@@ -82,16 +84,50 @@
"Max listen queue:" : "Μέγιστη ουρά ακρόασης:",
"Max active processes:" : "Μέγιστες ενεργές διεργασίες:",
"Max children reached:" : "Φτάστηκε μέγιστος αριθμός παιδιών:",
- "Database" : "Βάση δεδομένων",
- "Type:" : "Τύπος:",
+ "CPU" : "CPU",
+ "Resource usage" : "Χρήση πόρων",
+ "Shares" : "Κοινόχρηστοι φάκελοι",
+ "Users:" : "Χρήστες:",
+ "Groups:" : "Ομάδες:",
+ "Links:" : "Σύνδεσμοι:",
+ "Emails:" : "Email:",
+ "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:" : "Όριο μνήμης:",
+ "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)" : "Παράλειψη τμήματος εφαρμογών (η συμπερίληψη του τμήματος εφαρμογών θα στείλει εξωτερικό αίτημα στο app store)",
- "Skip server update" : "Παράλειψη ενημέρωσης διακομιστή",
"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.",
- "Unknown Processor" : "Άγνωστος Επεξεργαστής"
+ "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Στη συνέχεια, περάστε το αναγνωριστικό με την κεφαλίδα \"NC-Token\" όταν υποβάλετε ερώτημα στην παραπάνω διεύθυνση URL."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/en_GB.js b/l10n/en_GB.js
index 1aee2bcb..5ab2f3c2 100644
--- a/l10n/en_GB.js
+++ b/l10n/en_GB.js
@@ -1,78 +1,110 @@
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",
- "System" : "System",
"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:",
- "MB" : "MB",
+ "Version" : "Version",
+ "Memory limit" : "Memory limit",
"Max execution time:" : "Max execution time:",
- "seconds" : "seconds",
"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",
@@ -88,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 4d8f6ff7..35d2d683 100644
--- a/l10n/en_GB.json
+++ b/l10n/en_GB.json
@@ -1,76 +1,108 @@
{ "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",
- "System" : "System",
"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:",
- "MB" : "MB",
+ "Version" : "Version",
+ "Memory limit" : "Memory limit",
"Max execution time:" : "Max execution time:",
- "seconds" : "seconds",
"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",
@@ -86,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 b61fecbe..fab2951d 100644
--- a/l10n/eo.js
+++ b/l10n/eo.js
@@ -1,34 +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.",
- "Unknown" : "Nekonata",
"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:",
- "PHP" : "PHP",
- "Version:" : "Versio:",
+ "Hostname" : "Gastigonomo",
+ "Gateway" : "Kluzo",
+ "DNS" : "DNS",
+ "Disabled" : "Malkapabligita",
"seconds" : "sekundoj",
+ "Yes" : "Jes",
+ "No" : "Ne",
+ "PHP extensions" : "PHP-moduloj",
+ "Extension" : "Dosiersufikso",
+ "PHP" : "PHP",
+ "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 33d5f346..97a39f8a 100644
--- a/l10n/eo.json
+++ b/l10n/eo.json
@@ -1,32 +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.",
- "Unknown" : "Nekonata",
"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:",
- "PHP" : "PHP",
- "Version:" : "Versio:",
+ "Hostname" : "Gastigonomo",
+ "Gateway" : "Kluzo",
+ "DNS" : "DNS",
+ "Disabled" : "Malkapabligita",
"seconds" : "sekundoj",
+ "Yes" : "Jes",
+ "No" : "Ne",
+ "PHP extensions" : "PHP-moduloj",
+ "Extension" : "Dosiersufikso",
+ "PHP" : "PHP",
+ "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 0626b9d4..bac5a3b6 100644
--- a/l10n/es.js
+++ b/l10n/es.js
@@ -1,78 +1,129 @@
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",
- "System" : "Sistema",
"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:",
- "MB" : "MB",
+ "Version" : "Versión",
+ "Memory limit" : "Límite de memoria",
"Max execution time:" : "Tiempo máx. de ejecución:",
- "seconds" : "seconds",
"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",
@@ -88,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 4f420f41..549d74e6 100644
--- a/l10n/es.json
+++ b/l10n/es.json
@@ -1,76 +1,127 @@
{ "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",
- "System" : "Sistema",
"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:",
- "MB" : "MB",
+ "Version" : "Versión",
+ "Memory limit" : "Límite de memoria",
"Max execution time:" : "Tiempo máx. de ejecución:",
- "seconds" : "seconds",
"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",
@@ -86,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 1eb3e606..dd64fe01 100644
--- a/l10n/es_419.js
+++ b/l10n/es_419.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 ed819148..20d7a6c8 100644
--- a/l10n/es_419.json
+++ b/l10n/es_419.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 36808a34..2d1eb189 100644
--- a/l10n/es_AR.js
+++ b/l10n/es_AR.js
@@ -1,25 +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.",
- "Unknown" : "Desconocido",
"System" : "Sistema",
+ "Unknown" : "Desconocido",
"Monitoring" : "Monitoreo",
- "Temperature" : "Temperatura",
- "Size:" : "Tamaño:",
- "Files:" : "Archivos:",
"Active users" : "Usuarios activos",
- "Shares" : "Elementos compartido",
- "Users:" : "Usuarios:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Tipo:",
+ "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 22580f4a..291f84ef 100644
--- a/l10n/es_AR.json
+++ b/l10n/es_AR.json
@@ -1,23 +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.",
- "Unknown" : "Desconocido",
"System" : "Sistema",
+ "Unknown" : "Desconocido",
"Monitoring" : "Monitoreo",
- "Temperature" : "Temperatura",
- "Size:" : "Tamaño:",
- "Files:" : "Archivos:",
"Active users" : "Usuarios activos",
- "Shares" : "Elementos compartido",
- "Users:" : "Usuarios:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Tipo:",
+ "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 b030d13c..64407b7e 100644
--- a/l10n/es_CL.js
+++ b/l10n/es_CL.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..221e1041 100644
--- a/l10n/es_CL.json
+++ b/l10n/es_CL.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 b030d13c..46867c3a 100644
--- a/l10n/es_CO.js
+++ b/l10n/es_CO.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..f67717c9 100644
--- a/l10n/es_CO.json
+++ b/l10n/es_CO.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 b030d13c..ece30285 100644
--- a/l10n/es_CR.js
+++ b/l10n/es_CR.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..0404e5ff 100644
--- a/l10n/es_CR.json
+++ b/l10n/es_CR.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 b030d13c..ece30285 100644
--- a/l10n/es_DO.js
+++ b/l10n/es_DO.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..0404e5ff 100644
--- a/l10n/es_DO.json
+++ b/l10n/es_DO.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 8358cff5..e4e29191 100644
--- a/l10n/es_EC.js
+++ b/l10n/es_EC.js
@@ -1,48 +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.",
- "Unknown" : "Desconocido",
"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:",
@@ -51,22 +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:",
- "seconds" : "segundos",
- "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 4773450f..be52f0c3 100644
--- a/l10n/es_EC.json
+++ b/l10n/es_EC.json
@@ -1,46 +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.",
- "Unknown" : "Desconocido",
"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:",
@@ -49,22 +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:",
- "seconds" : "segundos",
- "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 b030d13c..0addbbe4 100644
--- a/l10n/es_GT.js
+++ b/l10n/es_GT.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..2014534a 100644
--- a/l10n/es_GT.json
+++ b/l10n/es_GT.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 b030d13c..0addbbe4 100644
--- a/l10n/es_HN.js
+++ b/l10n/es_HN.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..2014534a 100644
--- a/l10n/es_HN.json
+++ b/l10n/es_HN.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 b0845997..2866c3de 100644
--- a/l10n/es_MX.js
+++ b/l10n/es_MX.js
@@ -1,48 +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.",
- "Unknown" : "Desconocido",
"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:",
@@ -51,26 +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:",
- "seconds" : "segundos",
- "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 5c79d9c6..5afc8698 100644
--- a/l10n/es_MX.json
+++ b/l10n/es_MX.json
@@ -1,46 +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.",
- "Unknown" : "Desconocido",
"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:",
@@ -49,26 +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:",
- "seconds" : "segundos",
- "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 b030d13c..60a174f0 100644
--- a/l10n/es_NI.js
+++ b/l10n/es_NI.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..efa4f6ac 100644
--- a/l10n/es_NI.json
+++ b/l10n/es_NI.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 0740bfe7..65216ea3 100644
--- a/l10n/es_PA.js
+++ b/l10n/es_PA.js
@@ -1,25 +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.",
- "Unknown" : "Desconocido",
"System" : "Sistema",
+ "Unknown" : "Desconocido",
"Monitoring" : "Monitoreo",
- "Temperature" : "Temperatura",
- "Size:" : "Tamaño:",
- "Files:" : "Archivos:",
"Active users" : "Usuarios activos",
- "Shares" : "Elementos compartido",
- "Users:" : "Usuarios:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Tipo:",
+ "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 774a3297..c446a35b 100644
--- a/l10n/es_PA.json
+++ b/l10n/es_PA.json
@@ -1,23 +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.",
- "Unknown" : "Desconocido",
"System" : "Sistema",
+ "Unknown" : "Desconocido",
"Monitoring" : "Monitoreo",
- "Temperature" : "Temperatura",
- "Size:" : "Tamaño:",
- "Files:" : "Archivos:",
"Active users" : "Usuarios activos",
- "Shares" : "Elementos compartido",
- "Users:" : "Usuarios:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Tipo:",
+ "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 0740bfe7..1b70bbaf 100644
--- a/l10n/es_PE.js
+++ b/l10n/es_PE.js
@@ -1,25 +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.",
- "Unknown" : "Desconocido",
"System" : "Sistema",
+ "Unknown" : "Desconocido",
"Monitoring" : "Monitoreo",
- "Temperature" : "Temperatura",
- "Size:" : "Tamaño:",
- "Files:" : "Archivos:",
"Active users" : "Usuarios activos",
- "Shares" : "Elementos compartido",
- "Users:" : "Usuarios:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Tipo:",
+ "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 774a3297..3659c754 100644
--- a/l10n/es_PE.json
+++ b/l10n/es_PE.json
@@ -1,23 +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.",
- "Unknown" : "Desconocido",
"System" : "Sistema",
+ "Unknown" : "Desconocido",
"Monitoring" : "Monitoreo",
- "Temperature" : "Temperatura",
- "Size:" : "Tamaño:",
- "Files:" : "Archivos:",
"Active users" : "Usuarios activos",
- "Shares" : "Elementos compartido",
- "Users:" : "Usuarios:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Tipo:",
+ "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 b030d13c..60a174f0 100644
--- a/l10n/es_PR.js
+++ b/l10n/es_PR.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..efa4f6ac 100644
--- a/l10n/es_PR.json
+++ b/l10n/es_PR.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 a660e426..e7be1103 100644
--- a/l10n/es_SV.js
+++ b/l10n/es_SV.js
@@ -1,23 +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.",
- "Unknown" : "Desconocido",
"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 ac98550d..e72c3aed 100644
--- a/l10n/es_SV.json
+++ b/l10n/es_SV.json
@@ -1,21 +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.",
- "Unknown" : "Desconocido",
"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 b030d13c..57879145 100644
--- a/l10n/es_UY.js
+++ b/l10n/es_UY.js
@@ -1,24 +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.",
- "Unknown" : "Desconocido",
"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 10ae9338..4c1d82a2 100644
--- a/l10n/es_UY.json
+++ b/l10n/es_UY.json
@@ -1,22 +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.",
- "Unknown" : "Desconocido",
"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 96e97450..3e76a7f4 100644
--- a/l10n/et_EE.js
+++ b/l10n/et_EE.js
@@ -1,78 +1,129 @@
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",
- "System" : "Süsteem",
"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:",
- "MB" : "MB",
+ "Version" : "Versioon",
+ "Memory limit" : "Mälukasutuse ülempiir",
"Max execution time:" : "Maksimaalne täitmisaeg:",
- "seconds" : "sekundit",
"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",
@@ -88,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 2c2bda7f..c6e5227d 100644
--- a/l10n/et_EE.json
+++ b/l10n/et_EE.json
@@ -1,76 +1,127 @@
{ "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",
- "System" : "Süsteem",
"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:",
- "MB" : "MB",
+ "Version" : "Versioon",
+ "Memory limit" : "Mälukasutuse ülempiir",
"Max execution time:" : "Maksimaalne täitmisaeg:",
- "seconds" : "sekundit",
"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",
@@ -86,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 95ce92c9..263c42a0 100644
--- a/l10n/eu.js
+++ b/l10n/eu.js
@@ -1,48 +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.",
- "Unknown" : "Ezezaguna",
"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:",
@@ -51,21 +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:",
- "seconds" : "duela segundu batzuk",
- "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 7b65e747..9898ff20 100644
--- a/l10n/eu.json
+++ b/l10n/eu.json
@@ -1,46 +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.",
- "Unknown" : "Ezezaguna",
"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:",
@@ -49,21 +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:",
- "seconds" : "duela segundu batzuk",
- "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 c140dee2..5f78f79c 100644
--- a/l10n/fa.js
+++ b/l10n/fa.js
@@ -1,72 +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 استفاده نمایید",
- "Unknown" : "ناشناخته.",
"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:",
- "seconds" : "ثانیه ها",
- "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 7cf9d317..1182c8c3 100644
--- a/l10n/fa.json
+++ b/l10n/fa.json
@@ -1,70 +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 استفاده نمایید",
- "Unknown" : "ناشناخته.",
"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:",
- "seconds" : "ثانیه ها",
- "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 9c77460e..d09abff0 100644
--- a/l10n/fi.js
+++ b/l10n/fi.js
@@ -1,65 +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.",
- "Unknown" : "Tuntematon",
"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:",
- "seconds" : "sekuntia",
- "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 5dfc22d7..c21fffb3 100644
--- a/l10n/fi.json
+++ b/l10n/fi.json
@@ -1,63 +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.",
- "Unknown" : "Tuntematon",
"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:",
- "seconds" : "sekuntia",
- "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 43660472..32e898bc 100644
--- a/l10n/fr.js
+++ b/l10n/fr.js
@@ -1,75 +1,107 @@
OC.L10N.register(
"serverinfo",
{
- "CPU info not available" : "Informations CPU non disponibles",
- "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}",
- "RAM info not available" : "Informations RAM non disponibles",
- "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.",
- "Unknown" : "Inconnu",
"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",
+ "Never" : "Jamais",
+ "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)"],
"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 :",
- "seconds" : "secondes",
"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 :",
@@ -84,16 +116,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 c0d4d819..a01f2db5 100644
--- a/l10n/fr.json
+++ b/l10n/fr.json
@@ -1,73 +1,105 @@
{ "translations": {
- "CPU info not available" : "Informations CPU non disponibles",
- "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}",
- "RAM info not available" : "Informations RAM non disponibles",
- "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.",
- "Unknown" : "Inconnu",
"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",
+ "Never" : "Jamais",
+ "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)"],
"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 :",
- "seconds" : "secondes",
"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 :",
@@ -82,16 +114,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 6dd5c0e8..5c4e0986 100644
--- a/l10n/ga.js
+++ b/l10n/ga.js
@@ -1,78 +1,129 @@
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",
- "System" : "Córas",
"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:",
- "MB" : "MB",
+ "Version" : "Leagan",
+ "Memory limit" : "Teorainn chuimhne",
"Max execution time:" : "Uasmhéid ama rite:",
- "seconds" : "soicind",
"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",
@@ -88,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 0db3c420..6f5b2eed 100644
--- a/l10n/ga.json
+++ b/l10n/ga.json
@@ -1,76 +1,127 @@
{ "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",
- "System" : "Córas",
"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:",
- "MB" : "MB",
+ "Version" : "Leagan",
+ "Memory limit" : "Teorainn chuimhne",
"Max execution time:" : "Uasmhéid ama rite:",
- "seconds" : "soicind",
"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",
@@ -86,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 069e0cb4..1f5b691d 100644
--- a/l10n/gl.js
+++ b/l10n/gl.js
@@ -1,81 +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",
- "System" : "Sistema",
"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:",
- "MB" : "MB",
+ "Version" : "Versión",
+ "Memory limit" : "Límite de memoria",
"Max execution time:" : "Tempo máximo de execución:",
- "seconds" : "segundos",
"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:",
@@ -88,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 ccae3bf5..1b8a548a 100644
--- a/l10n/gl.json
+++ b/l10n/gl.json
@@ -1,79 +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",
- "System" : "Sistema",
"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:",
- "MB" : "MB",
+ "Version" : "Versión",
+ "Memory limit" : "Límite de memoria",
"Max execution time:" : "Tempo máximo de execución:",
- "seconds" : "segundos",
"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:",
@@ -86,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 56ea76ac..477babac 100644
--- a/l10n/he.js
+++ b/l10n/he.js
@@ -1,35 +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.",
- "Unknown" : "לא ידוע",
"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" : "טמפרטורה",
- "Load" : "עומס",
- "Memory" : "זיכרון",
- "Disk" : "כונן",
- "Size:" : "גודל:",
- "Files:" : "קבצים",
- "Storages:" : "אמצעי אחסון:",
- "Free Space:" : "מקום פנוי:",
- "Network" : "רשת",
"Active users" : "משתמשים פעילים",
"Last hour" : "השעה החולפת",
- "Shares" : "שיתופים",
- "Users:" : "משתמשים:",
- "PHP" : "PHP",
+ "Background jobs" : "משימות רקע",
+ "Mode" : "מצב",
+ "Never" : "מעולם לא",
+ "Load" : "עומס",
+ "CPU info not available" : "פרטי המעבד לא זמינים",
+ "Current usage" : "שימוש נוכחי",
+ "Threads" : "שרשורים",
+ "Load average" : "ממוצע עומס",
+ "Database" : "מסד נתונים",
+ "Type:" : "סוג:",
"Version:" : "גרסה:",
+ "Size:" : "גודל:",
+ "Used" : "מנוצלים",
+ "Available" : "זמינות",
+ "Disk" : "כונן",
+ "Files" : "קבצים",
+ "Started" : "התחלה",
+ "Duration" : "משך",
+ "Job" : "עבודה",
+ "When" : "מתי",
+ "Details" : "פרטים",
+ "Running" : "ריצה",
+ "Memory" : "זיכרון",
+ "Total" : "סך הכול",
+ "Authentication" : "אימות",
+ "Network" : "רשת",
+ "Hostname" : "שם מארח",
+ "Gateway" : "שער גישה",
+ "DNS" : "DNS",
+ "Disabled" : "מושבת",
"seconds" : "שניות",
+ "PHP extensions" : "הרחבות PHP",
+ "Extension" : "הרחבה",
+ "PHP" : "PHP",
+ "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 8d98eec2..b1fad2da 100644
--- a/l10n/he.json
+++ b/l10n/he.json
@@ -1,33 +1,59 @@
{ "translations": {
- "CPU info not available" : "פרטי המעבד לא זמינים",
- "Copied!" : "הועתק!",
- "Not supported!" : "אין תמיכה!",
- "Press ⌘-C to copy." : "להעתקה: ⌘-C.",
- "Press Ctrl-C to copy." : "להעתקה: Ctrl-C.",
- "Unknown" : "לא ידוע",
"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" : "טמפרטורה",
- "Load" : "עומס",
- "Memory" : "זיכרון",
- "Disk" : "כונן",
- "Size:" : "גודל:",
- "Files:" : "קבצים",
- "Storages:" : "אמצעי אחסון:",
- "Free Space:" : "מקום פנוי:",
- "Network" : "רשת",
"Active users" : "משתמשים פעילים",
"Last hour" : "השעה החולפת",
- "Shares" : "שיתופים",
- "Users:" : "משתמשים:",
- "PHP" : "PHP",
+ "Background jobs" : "משימות רקע",
+ "Mode" : "מצב",
+ "Never" : "מעולם לא",
+ "Load" : "עומס",
+ "CPU info not available" : "פרטי המעבד לא זמינים",
+ "Current usage" : "שימוש נוכחי",
+ "Threads" : "שרשורים",
+ "Load average" : "ממוצע עומס",
+ "Database" : "מסד נתונים",
+ "Type:" : "סוג:",
"Version:" : "גרסה:",
+ "Size:" : "גודל:",
+ "Used" : "מנוצלים",
+ "Available" : "זמינות",
+ "Disk" : "כונן",
+ "Files" : "קבצים",
+ "Started" : "התחלה",
+ "Duration" : "משך",
+ "Job" : "עבודה",
+ "When" : "מתי",
+ "Details" : "פרטים",
+ "Running" : "ריצה",
+ "Memory" : "זיכרון",
+ "Total" : "סך הכול",
+ "Authentication" : "אימות",
+ "Network" : "רשת",
+ "Hostname" : "שם מארח",
+ "Gateway" : "שער גישה",
+ "DNS" : "DNS",
+ "Disabled" : "מושבת",
"seconds" : "שניות",
+ "PHP extensions" : "הרחבות PHP",
+ "Extension" : "הרחבה",
+ "PHP" : "PHP",
+ "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 f965fe0f..7e8cd5ef 100644
--- a/l10n/hr.js
+++ b/l10n/hr.js
@@ -1,35 +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.",
- "Unknown" : "Nepoznata pogreška",
"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",
- "Load" : "Opterećenje",
- "Memory" : "Memorija",
- "Disk" : "Disk",
- "Size:" : "Veličina:",
- "Files:" : "Datoteke:",
- "Storages:" : "Pohrane:",
- "Free Space:" : "Slobodan prostor:",
- "Network" : "Mreža",
"Active users" : "Aktivni korisnici",
"Last hour" : "Posljednji sat",
- "Shares" : "Dijeljenja",
- "Users:" : "Korisnici:",
- "PHP" : "PHP",
+ "Webcron" : "Webcron",
+ "Background jobs" : "Pozadinski zadaci",
+ "Mode" : "Način rada",
+ "Never" : "Nikad",
+ "Load" : "Opterećenje",
+ "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:",
+ "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",
+ "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" : "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 d2658f5f..42d57d35 100644
--- a/l10n/hr.json
+++ b/l10n/hr.json
@@ -1,33 +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.",
- "Unknown" : "Nepoznata pogreška",
"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",
- "Load" : "Opterećenje",
- "Memory" : "Memorija",
- "Disk" : "Disk",
- "Size:" : "Veličina:",
- "Files:" : "Datoteke:",
- "Storages:" : "Pohrane:",
- "Free Space:" : "Slobodan prostor:",
- "Network" : "Mreža",
"Active users" : "Aktivni korisnici",
"Last hour" : "Posljednji sat",
- "Shares" : "Dijeljenja",
- "Users:" : "Korisnici:",
- "PHP" : "PHP",
+ "Webcron" : "Webcron",
+ "Background jobs" : "Pozadinski zadaci",
+ "Mode" : "Način rada",
+ "Never" : "Nikad",
+ "Load" : "Opterećenje",
+ "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:",
+ "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",
+ "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" : "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 da787a06..8ee8a098 100644
--- a/l10n/hu.js
+++ b/l10n/hu.js
@@ -1,75 +1,79 @@
OC.L10N.register(
"serverinfo",
{
- "CPU info not available" : "A CPU információk nem érhetők el",
- "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}",
- "RAM info not available" : "A memóriainformá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.",
- "Unknown" : "Ismeretlen",
"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 processzorterhelés, memóriafoglaltság, felhasználók száma, stb.",
- "Operating System:" : "Operációs rendszer:",
- "CPU:" : "CPU:",
- "threads" : "szál",
- "Memory:" : "Memória:",
- "Server time:" : "Kiszolgálóidő:",
- "Uptime:" : "Működési idő:",
- "Temperature" : "Hőmérséklet",
+ "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",
- "%s%% of all users" : "Az összes felhasználó %s%%-a",
- "Last 24 Hours" : "Elmúlt 24 óra",
- "Last 7 Days" : "Elmúlt 7 nap",
- "Last 30 Days" : "Elmúlt 30 nap",
- "Shares" : "Megosztások",
- "Users:" : "Felhasználók:",
- "Groups:" : "Csoportok:",
- "Links:" : "Hivatkozások:",
- "Emails:" : "E-mailek:",
- "Federated sent:" : "Föderáltak elküldve:",
- "Federated received:" : "Föderáltak fogadva:",
- "Talk conversations:" : "Beszélgetések:",
+ "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óriakorlát:",
+ "Version" : "Verzió",
+ "Memory limit" : "Memória korlát",
"Max execution time:" : "Maximális végrehajtási idő:",
- "seconds" : "másodpercek",
"Upload max size:" : "Maximális feltöltési méret:",
- "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",
+ "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:",
@@ -84,16 +88,52 @@ OC.L10N.register(
"Max listen queue:" : "Legnagyobb figyelési sor:",
"Max active processes:" : "Legtöbb aktív folyamat:",
"Max children reached:" : "Legtöbb elért gyermekfolyamat:",
- "Database" : "Adatbázis:",
- "Type:" : "Típus:",
+ "CPU" : "CPU",
+ "Resource usage" : "Erőforrás használat",
+ "Shares" : "Megosztások",
+ "Users:" : "Felhasználók:",
+ "Groups:" : "Csoportok:",
+ "Links:" : "Hivatkozások:",
+ "Emails:" : "E-mailek:",
+ "Federated sent:" : "Föderáltak elküldve:",
+ "Federated received:" : "Föderáltak fogadva:",
+ "Talk conversations:" : "Beszélgetések:",
+ "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:",
+ "MB" : "MB",
+ "OPcache Revalidate Frequency:" : "OPcache újraellenőrzési gyakorisága:",
"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 webcímet.",
- "Unknown Processor" : "Ismeretlen processzor"
+ "DNS:" : "DNS:"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/hu.json b/l10n/hu.json
index ec54c99f..7195cd21 100644
--- a/l10n/hu.json
+++ b/l10n/hu.json
@@ -1,73 +1,77 @@
{ "translations": {
- "CPU info not available" : "A CPU információk nem érhetők el",
- "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}",
- "RAM info not available" : "A memóriainformá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.",
- "Unknown" : "Ismeretlen",
"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 processzorterhelés, memóriafoglaltság, felhasználók száma, stb.",
- "Operating System:" : "Operációs rendszer:",
- "CPU:" : "CPU:",
- "threads" : "szál",
- "Memory:" : "Memória:",
- "Server time:" : "Kiszolgálóidő:",
- "Uptime:" : "Működési idő:",
- "Temperature" : "Hőmérséklet",
+ "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",
- "%s%% of all users" : "Az összes felhasználó %s%%-a",
- "Last 24 Hours" : "Elmúlt 24 óra",
- "Last 7 Days" : "Elmúlt 7 nap",
- "Last 30 Days" : "Elmúlt 30 nap",
- "Shares" : "Megosztások",
- "Users:" : "Felhasználók:",
- "Groups:" : "Csoportok:",
- "Links:" : "Hivatkozások:",
- "Emails:" : "E-mailek:",
- "Federated sent:" : "Föderáltak elküldve:",
- "Federated received:" : "Föderáltak fogadva:",
- "Talk conversations:" : "Beszélgetések:",
+ "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óriakorlát:",
+ "Version" : "Verzió",
+ "Memory limit" : "Memória korlát",
"Max execution time:" : "Maximális végrehajtási idő:",
- "seconds" : "másodpercek",
"Upload max size:" : "Maximális feltöltési méret:",
- "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",
+ "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:",
@@ -82,16 +86,52 @@
"Max listen queue:" : "Legnagyobb figyelési sor:",
"Max active processes:" : "Legtöbb aktív folyamat:",
"Max children reached:" : "Legtöbb elért gyermekfolyamat:",
- "Database" : "Adatbázis:",
- "Type:" : "Típus:",
+ "CPU" : "CPU",
+ "Resource usage" : "Erőforrás használat",
+ "Shares" : "Megosztások",
+ "Users:" : "Felhasználók:",
+ "Groups:" : "Csoportok:",
+ "Links:" : "Hivatkozások:",
+ "Emails:" : "E-mailek:",
+ "Federated sent:" : "Föderáltak elküldve:",
+ "Federated received:" : "Föderáltak fogadva:",
+ "Talk conversations:" : "Beszélgetések:",
+ "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:",
+ "MB" : "MB",
+ "OPcache Revalidate Frequency:" : "OPcache újraellenőrzési gyakorisága:",
"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 webcímet.",
- "Unknown Processor" : "Ismeretlen processzor"
+ "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 59b3623a..92f0fd8e 100644
--- a/l10n/hy.js
+++ b/l10n/hy.js
@@ -1,14 +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 պատճենելու համար։",
- "Unknown" : "Անհայտ",
- "Size:" : "Չափս.",
- "seconds" : "վայրկյան",
- "Type:" : "Տիպ.",
"Copy" : "պատճենահանել"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/hy.json b/l10n/hy.json
index 9293681c..ff3b1c7a 100644
--- a/l10n/hy.json
+++ b/l10n/hy.json
@@ -1,12 +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 պատճենելու համար։",
- "Unknown" : "Անհայտ",
- "Size:" : "Չափս.",
- "seconds" : "վայրկյան",
- "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 b4912242..8e31760a 100644
--- a/l10n/ia.js
+++ b/l10n/ia.js
@@ -1,24 +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.",
- "Unknown" : "Incognite",
"System" : "Systema",
+ "Unknown" : "Incognite",
"Monitoring" : "Controlante",
- "Size:" : "Dimension:",
- "Files:" : "Files:",
"Active users" : "Usatores active",
- "Shares" : "Compartimentos",
- "Users:" : "Usatores:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Typo:",
+ "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 250f6ebc..6873adc8 100644
--- a/l10n/ia.json
+++ b/l10n/ia.json
@@ -1,22 +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.",
- "Unknown" : "Incognite",
"System" : "Systema",
+ "Unknown" : "Incognite",
"Monitoring" : "Controlante",
- "Size:" : "Dimension:",
- "Files:" : "Files:",
"Active users" : "Usatores active",
- "Shares" : "Compartimentos",
- "Users:" : "Usatores:",
- "PHP" : "PHP",
+ "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:",
- "Database" : "Base de datos",
- "Type:" : "Typo:",
+ "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 7ba6a2e8..2ceb0786 100644
--- a/l10n/id.js
+++ b/l10n/id.js
@@ -1,26 +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.",
- "Unknown" : "Tidak diketahui",
"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:",
+ "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",
- "Upload max size:" : "Ukuran maksimal unggah",
- "Database" : "Database",
- "Type:" : "Tipe",
+ "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 22941fc7..ba4abbe8 100644
--- a/l10n/id.json
+++ b/l10n/id.json
@@ -1,24 +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.",
- "Unknown" : "Tidak diketahui",
"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:",
+ "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",
- "Upload max size:" : "Ukuran maksimal unggah",
- "Database" : "Database",
- "Type:" : "Tipe",
+ "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 584fb89a..3834ac55 100644
--- a/l10n/is.js
+++ b/l10n/is.js
@@ -1,34 +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.",
- "Unknown" : "Óþekkt",
"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:",
- "PHP" : "PHP",
- "Version:" : "Útgáfa:",
+ "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",
"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 3abf81a9..00a0ed58 100644
--- a/l10n/is.json
+++ b/l10n/is.json
@@ -1,32 +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.",
- "Unknown" : "Óþekkt",
"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:",
- "PHP" : "PHP",
- "Version:" : "Útgáfa:",
+ "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",
"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 b5cdc0e0..4e8da699 100644
--- a/l10n/it.js
+++ b/l10n/it.js
@@ -1,57 +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.",
- "Unknown" : "Sconosciuto",
"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:",
@@ -60,30 +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:",
- "seconds" : "secondi",
- "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 ada0820a..06882774 100644
--- a/l10n/it.json
+++ b/l10n/it.json
@@ -1,55 +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.",
- "Unknown" : "Sconosciuto",
"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:",
@@ -58,30 +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:",
- "seconds" : "secondi",
- "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 d2bb2a34..07c65d5f 100644
--- a/l10n/ja.js
+++ b/l10n/ja.js
@@ -1,75 +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を押してコピーします。",
- "Unknown" : "不明",
"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:" : "最大実行時間:",
- "seconds" : "秒",
"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:" : "プール名:",
@@ -84,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 2b63b2c2..6fde0bf1 100644
--- a/l10n/ja.json
+++ b/l10n/ja.json
@@ -1,73 +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を押してコピーします。",
- "Unknown" : "不明",
"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:" : "最大実行時間:",
- "seconds" : "秒",
"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 +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 d54a1439..e5a9d281 100644
--- a/l10n/ka.js
+++ b/l10n/ka.js
@@ -1,47 +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.",
- "Unknown" : "Unknown",
"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:",
@@ -50,25 +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:",
- "seconds" : "seconds",
- "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 19a0aa0c..a7f4590c 100644
--- a/l10n/ka.json
+++ b/l10n/ka.json
@@ -1,45 +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.",
- "Unknown" : "Unknown",
"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:",
@@ -48,25 +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:",
- "seconds" : "seconds",
- "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 7017c60b..7b8d7f2b 100644
--- a/l10n/ka_GE.js
+++ b/l10n/ka_GE.js
@@ -1,24 +1,39 @@
OC.L10N.register(
"serverinfo",
{
- "Copied!" : "კოპირებულია!",
- "Not supported!" : "არაა მხარდაჭერილი",
- "Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.",
- "Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.",
- "Unknown" : "უცნობია",
"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 336ec7e1..0f0a4e78 100644
--- a/l10n/ka_GE.json
+++ b/l10n/ka_GE.json
@@ -1,22 +1,37 @@
{ "translations": {
- "Copied!" : "კოპირებულია!",
- "Not supported!" : "არაა მხარდაჭერილი",
- "Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.",
- "Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.",
- "Unknown" : "უცნობია",
"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 32290c1e..41a1a6ee 100644
--- a/l10n/kab.js
+++ b/l10n/kab.js
@@ -1,12 +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ḍ.",
- "Unknown" : "Arussin",
- "Temperature" : "Lḥamu",
"Copy" : "Nɣel"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/kab.json b/l10n/kab.json
index b2611397..cebc824f 100644
--- a/l10n/kab.json
+++ b/l10n/kab.json
@@ -1,10 +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ḍ.",
- "Unknown" : "Arussin",
- "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 e64ded9a..ac53c94b 100644
--- a/l10n/ko.js
+++ b/l10n/ko.js
@@ -1,34 +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 키를 누르십시오.",
- "Unknown" : "알 수 없음",
"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:" : "사용자:",
- "PHP" : "PHP",
- "Version:" : "버전:",
+ "Hostname" : "호스트 이름",
+ "Gateway" : "게이트웨이",
+ "DNS" : "DNS",
+ "Keys" : "열쇠",
+ "Disabled" : "비활성화됨",
"seconds" : "초",
+ "Yes" : "예",
+ "No" : "아니오",
+ "PHP extensions" : "PHP 확장",
+ "Extension" : "확장자",
+ "PHP" : "PHP",
+ "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 149d913d..ad64f612 100644
--- a/l10n/ko.json
+++ b/l10n/ko.json
@@ -1,32 +1,63 @@
{ "translations": {
- "CPU info not available" : "CPU 정보를 사용할 수 없음",
- "Copied!" : "복사 성공!",
- "Not supported!" : "지원하지 않음!",
- "Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.",
- "Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.",
- "Unknown" : "알 수 없음",
"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:" : "사용자:",
- "PHP" : "PHP",
- "Version:" : "버전:",
+ "Hostname" : "호스트 이름",
+ "Gateway" : "게이트웨이",
+ "DNS" : "DNS",
+ "Keys" : "열쇠",
+ "Disabled" : "비활성화됨",
"seconds" : "초",
+ "Yes" : "예",
+ "No" : "아니오",
+ "PHP extensions" : "PHP 확장",
+ "Extension" : "확장자",
+ "PHP" : "PHP",
+ "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 f63834ce..878d8e4b 100644
--- a/l10n/lb.js
+++ b/l10n/lb.js
@@ -1,15 +1,22 @@
OC.L10N.register(
"serverinfo",
{
+ "Unknown" : "Onbekannt",
+ "Type:" : "Typ:",
+ "Size:" : "Gréisst:",
+ "Files" : "Dateien",
+ "Details" : "Detailer",
+ "Failed" : "Ausgefall",
+ "Disabled" : "Deaktivéiert",
+ "seconds" : "Sekonnen",
+ "Yes" : "Jo",
+ "No" : "Nee",
+ "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.",
- "Unknown" : "Onbekannt",
- "Temperature" : "Temperatur",
- "Size:" : "Gréisst:",
- "seconds" : "Sekonnen",
- "Type:" : "Typ:",
"Copy" : "Kopie"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/lb.json b/l10n/lb.json
index 346fecb8..c35f6d71 100644
--- a/l10n/lb.json
+++ b/l10n/lb.json
@@ -1,13 +1,20 @@
{ "translations": {
+ "Unknown" : "Onbekannt",
+ "Type:" : "Typ:",
+ "Size:" : "Gréisst:",
+ "Files" : "Dateien",
+ "Details" : "Detailer",
+ "Failed" : "Ausgefall",
+ "Disabled" : "Deaktivéiert",
+ "seconds" : "Sekonnen",
+ "Yes" : "Jo",
+ "No" : "Nee",
+ "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.",
- "Unknown" : "Onbekannt",
- "Temperature" : "Temperatur",
- "Size:" : "Gréisst:",
- "seconds" : "Sekonnen",
- "Type:" : "Typ:",
"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 d3897ea9..93a648c5 100644
--- a/l10n/lo.js
+++ b/l10n/lo.js
@@ -1,75 +1,69 @@
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!" : "ກ໋ອບປີ້ແລ້ວ",
- "Not supported!" : "ບໍ່ຊັບຟອດ",
- "Press ⌘-C to copy." : "Press ⌘-C to copy.",
- "Press Ctrl-C to copy." : "ກົດ Ctrl-C ເພື່ອ copy",
- "Unknown" : "ບໍ່ຮູ້ຈັກ",
"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.",
- "Operating System:" : "Operating System:",
- "CPU:" : "CPU:",
- "threads" : "threads",
- "Memory:" : "Memory:",
- "Server time:" : "Server time:",
- "Uptime:" : "Uptime:",
- "Temperature" : "Temperature",
+ "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",
- "Memory" : "Memory",
+ "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:",
- "Size:" : "Size:",
"Available:" : "Available:",
"Used:" : "Used:",
- "Files:" : "Files:",
- "Storages:" : "Storages:",
- "Free Space:" : "Free Space:",
+ "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:",
- "Gateway:" : "Gateway:",
+ "Hostname" : "Hostname",
"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" : "ການແບ່ງປັນ",
- "Users:" : "Users:",
- "Groups:" : "Groups:",
- "Links:" : "Links:",
- "Emails:" : "Emails:",
- "Federated sent:" : "Federated sent:",
- "Federated received:" : "Federated received:",
- "Talk conversations:" : "Talk conversations:",
+ "Keys" : "Keys",
+ "Disabled" : "ປິດໃຊ້ງານ",
+ "seconds" : "ວິນາທີ",
+ "Yes" : "ແມ່ນ",
+ "No" : "ບໍ່",
+ "Extension" : "ນາມສະກຸນ",
+ "Unable to list extensions" : "Unable to list extensions",
"PHP" : "PHP",
- "Version:" : "Version:",
- "Memory limit:" : "Memory limit:",
+ "Version" : "ເວີຊັນ",
+ "Memory limit" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ",
"Max execution time:" : "Max execution time:",
- "seconds" : "ວິນາທີ",
"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",
"FPM worker pool" : "FPM worker pool",
"Pool name:" : "Pool name:",
@@ -84,16 +78,48 @@ 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:",
+ "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",
+ "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" : "ສຳເນົາ",
- "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"
+ "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 3dfa617f..b7a881d5 100644
--- a/l10n/lo.json
+++ b/l10n/lo.json
@@ -1,73 +1,67 @@
{ "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!" : "ກ໋ອບປີ້ແລ້ວ",
- "Not supported!" : "ບໍ່ຊັບຟອດ",
- "Press ⌘-C to copy." : "Press ⌘-C to copy.",
- "Press Ctrl-C to copy." : "ກົດ Ctrl-C ເພື່ອ copy",
- "Unknown" : "ບໍ່ຮູ້ຈັກ",
"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.",
- "Operating System:" : "Operating System:",
- "CPU:" : "CPU:",
- "threads" : "threads",
- "Memory:" : "Memory:",
- "Server time:" : "Server time:",
- "Uptime:" : "Uptime:",
- "Temperature" : "Temperature",
+ "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",
- "Memory" : "Memory",
+ "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:",
- "Size:" : "Size:",
"Available:" : "Available:",
"Used:" : "Used:",
- "Files:" : "Files:",
- "Storages:" : "Storages:",
- "Free Space:" : "Free Space:",
+ "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:",
- "Gateway:" : "Gateway:",
+ "Hostname" : "Hostname",
"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" : "ການແບ່ງປັນ",
- "Users:" : "Users:",
- "Groups:" : "Groups:",
- "Links:" : "Links:",
- "Emails:" : "Emails:",
- "Federated sent:" : "Federated sent:",
- "Federated received:" : "Federated received:",
- "Talk conversations:" : "Talk conversations:",
+ "Keys" : "Keys",
+ "Disabled" : "ປິດໃຊ້ງານ",
+ "seconds" : "ວິນາທີ",
+ "Yes" : "ແມ່ນ",
+ "No" : "ບໍ່",
+ "Extension" : "ນາມສະກຸນ",
+ "Unable to list extensions" : "Unable to list extensions",
"PHP" : "PHP",
- "Version:" : "Version:",
- "Memory limit:" : "Memory limit:",
+ "Version" : "ເວີຊັນ",
+ "Memory limit" : "ຂີດຈຳກັດໜ່ວຍຄວາມຈຳ",
"Max execution time:" : "Max execution time:",
- "seconds" : "ວິນາທີ",
"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",
"FPM worker pool" : "FPM worker pool",
"Pool name:" : "Pool name:",
@@ -82,16 +76,48 @@
"Max listen queue:" : "Max listen queue:",
"Max active processes:" : "Max active processes:",
"Max children reached:" : "Max children reached:",
- "Database" : "Database",
- "Type:" : "Type:",
+ "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",
+ "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" : "ສຳເນົາ",
- "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"
+ "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 61dcceb7..6318a15a 100644
--- a/l10n/lt_LT.js
+++ b/l10n/lt_LT.js
@@ -1,69 +1,179 @@
OC.L10N.register(
"serverinfo",
{
- "CPU info not available" : "Informacija apie procesorių neprieinama",
- "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}",
- "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.",
- "System" : "Sistema",
"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:",
- "seconds" : "sekundes",
"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 098037f3..b999142f 100644
--- a/l10n/lt_LT.json
+++ b/l10n/lt_LT.json
@@ -1,67 +1,177 @@
{ "translations": {
- "CPU info not available" : "Informacija apie procesorių neprieinama",
- "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}",
- "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.",
- "System" : "Sistema",
"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:",
- "seconds" : "sekundes",
"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 5f2dbdb5..6e7b8400 100644
--- a/l10n/lv.js
+++ b/l10n/lv.js
@@ -1,62 +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.",
- "Unknown" : "Nezināms",
"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:",
- "seconds" : "sekundes",
"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 36c619d6..991fabb2 100644
--- a/l10n/lv.json
+++ b/l10n/lv.json
@@ -1,60 +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.",
- "Unknown" : "Nezināms",
"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:",
- "seconds" : "sekundes",
"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 e4a9e9d6..55144d26 100644
--- a/l10n/mk.js
+++ b/l10n/mk.js
@@ -1,47 +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 за да копираш.",
- "Unknown" : "Непознат",
"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:" : "Групи:",
@@ -50,22 +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:" : "Максимално време на извршување:",
- "seconds" : "секунди",
- "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 a57f4c5e..f89d00ef 100644
--- a/l10n/mk.json
+++ b/l10n/mk.json
@@ -1,45 +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 за да копираш.",
- "Unknown" : "Непознат",
"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:" : "Групи:",
@@ -48,22 +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:" : "Максимално време на извршување:",
- "seconds" : "секунди",
- "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 66544641..bf26d49a 100644
--- a/l10n/mn.js
+++ b/l10n/mn.js
@@ -1,23 +1,131 @@
OC.L10N.register(
"serverinfo",
{
- "Copied!" : "Хуулсан!",
- "Not supported!" : "Дэмжигдэхгүй",
- "Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.",
- "Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.",
- "Unknown" : "Үл танигдах зүйл",
"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:" : "Хувилбар:",
- "seconds" : "секунд",
+ "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 10283370..def20dd5 100644
--- a/l10n/mn.json
+++ b/l10n/mn.json
@@ -1,21 +1,129 @@
{ "translations": {
- "Copied!" : "Хуулсан!",
- "Not supported!" : "Дэмжигдэхгүй",
- "Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.",
- "Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.",
- "Unknown" : "Үл танигдах зүйл",
"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:" : "Хувилбар:",
- "seconds" : "секунд",
+ "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 0b2c83a6..273fc21d 100644
--- a/l10n/nb.js
+++ b/l10n/nb.js
@@ -1,48 +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.",
- "Unknown" : "Ukjent",
"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:",
@@ -51,26 +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:",
- "seconds" : "sekund",
- "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 480601b5..cf452bf2 100644
--- a/l10n/nb.json
+++ b/l10n/nb.json
@@ -1,46 +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.",
- "Unknown" : "Ukjent",
"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:",
@@ -49,26 +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:",
- "seconds" : "sekund",
- "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 42a7f870..5ecc75f9 100644
--- a/l10n/nl.js
+++ b/l10n/nl.js
@@ -1,48 +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.",
- "Unknown" : "Onbekend",
"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:",
@@ -51,25 +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:",
- "seconds" : "seconden",
- "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 cbf573c2..81b94eb3 100644
--- a/l10n/nl.json
+++ b/l10n/nl.json
@@ -1,46 +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.",
- "Unknown" : "Onbekend",
"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:",
@@ -49,25 +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:",
- "seconds" : "seconden",
- "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 60755f18..68922ec3 100644
--- a/l10n/nn_NO.js
+++ b/l10n/nn_NO.js
@@ -1,21 +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.",
- "Unknown" : "Ukjend",
"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 7e7c6b4e..c5974a94 100644
--- a/l10n/nn_NO.json
+++ b/l10n/nn_NO.json
@@ -1,19 +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.",
- "Unknown" : "Ukjend",
"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 f7cff6b4..a30a0497 100644
--- a/l10n/oc.js
+++ b/l10n/oc.js
@@ -1,17 +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.",
- "Unknown" : "Desconegut",
- "Size:" : "Talha :",
- "Active users" : "Utilizaires actius",
- "Shares" : "Partatges",
- "PHP" : "PHP",
- "seconds" : "segondas",
- "Type:" : "Tipe :",
"Copy" : "Copiar"
},
"nplurals=2; plural=(n > 1);");
diff --git a/l10n/oc.json b/l10n/oc.json
index c788d316..86bc94b5 100644
--- a/l10n/oc.json
+++ b/l10n/oc.json
@@ -1,15 +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.",
- "Unknown" : "Desconegut",
- "Size:" : "Talha :",
- "Active users" : "Utilizaires actius",
- "Shares" : "Partatges",
- "PHP" : "PHP",
- "seconds" : "segondas",
- "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 8d877b00..ce74bebc 100644
--- a/l10n/pl.js
+++ b/l10n/pl.js
@@ -1,52 +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.",
- "Unknown" : "Nieznana",
"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:",
@@ -55,26 +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:",
- "seconds" : "sekund",
- "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 95cd1bdf..4e427241 100644
--- a/l10n/pl.json
+++ b/l10n/pl.json
@@ -1,50 +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.",
- "Unknown" : "Nieznana",
"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:",
@@ -53,26 +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:",
- "seconds" : "sekund",
- "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 31cda34d..3da04ec8 100644
--- a/l10n/pt_BR.js
+++ b/l10n/pt_BR.js
@@ -1,79 +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",
- "System" : "Sistema",
"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:",
- "MB" : "MB",
+ "Version" : "Versão",
+ "Memory limit" : "Limite de memória",
"Max execution time:" : "Tempo máximo de execução:",
- "seconds" : "segundos",
"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",
+ "PHP Info:" : "Informações do PHP:",
"Show phpinfo" : "Mostrar phpinfo",
"FPM worker pool" : "Pool de trabalhadores FPM",
"Pool name:" : "Nome do pool:",
@@ -88,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 fa604151..41aa7465 100644
--- a/l10n/pt_BR.json
+++ b/l10n/pt_BR.json
@@ -1,77 +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",
- "System" : "Sistema",
"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:",
- "MB" : "MB",
+ "Version" : "Versão",
+ "Memory limit" : "Limite de memória",
"Max execution time:" : "Tempo máximo de execução:",
- "seconds" : "segundos",
"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",
+ "PHP Info:" : "Informações do PHP:",
"Show phpinfo" : "Mostrar phpinfo",
"FPM worker pool" : "Pool de trabalhadores FPM",
"Pool name:" : "Nome do pool:",
@@ -86,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 ee360b36..d955db1d 100644
--- a/l10n/pt_PT.js
+++ b/l10n/pt_PT.js
@@ -1,36 +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.",
- "Unknown" : "Desconhecido",
"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",
- "Load" : "Carga",
- "Memory" : "Memória",
- "Disk" : "Disco",
- "Size:" : "Tamanho:",
- "Files:" : "Ficheiros:",
- "Storages:" : "Armazenamentos:",
- "Free Space:" : "Espaço livre:",
- "Network" : "Rede",
"Active users" : "Utilizadores ativos",
"Last hour" : "Ultima hora",
- "Shares" : "Partilhas",
- "Users:" : "Utilizadores:",
- "PHP" : "PHP",
+ "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",
+ "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:",
+ "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",
+ "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",
+ "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 7de217dc..5fbff8bc 100644
--- a/l10n/pt_PT.json
+++ b/l10n/pt_PT.json
@@ -1,34 +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.",
- "Unknown" : "Desconhecido",
"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",
- "Load" : "Carga",
- "Memory" : "Memória",
- "Disk" : "Disco",
- "Size:" : "Tamanho:",
- "Files:" : "Ficheiros:",
- "Storages:" : "Armazenamentos:",
- "Free Space:" : "Espaço livre:",
- "Network" : "Rede",
"Active users" : "Utilizadores ativos",
"Last hour" : "Ultima hora",
- "Shares" : "Partilhas",
- "Users:" : "Utilizadores:",
- "PHP" : "PHP",
+ "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",
+ "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:",
+ "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",
+ "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",
+ "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 b57c7d36..1045e643 100644
--- a/l10n/ro.js
+++ b/l10n/ro.js
@@ -1,18 +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.",
- "Unknown" : "Necunoscut",
"System" : "Sistem",
+ "Unknown" : "Necunoscut",
"Monitoring" : "Monitorizare",
- "Size:" : "Mărime:",
- "Shares" : "Partajări",
- "seconds" : "secunde",
+ "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 496b368e..e604392d 100644
--- a/l10n/ro.json
+++ b/l10n/ro.json
@@ -1,16 +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.",
- "Unknown" : "Necunoscut",
"System" : "Sistem",
+ "Unknown" : "Necunoscut",
"Monitoring" : "Monitorizare",
- "Size:" : "Mărime:",
- "Shares" : "Partajări",
- "seconds" : "secunde",
+ "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 cbc4a016..a759221a 100644
--- a/l10n/ru.js
+++ b/l10n/ru.js
@@ -1,57 +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 для копирования.",
- "Unknown" : "Неизвестно",
"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:" : "Группы:",
@@ -60,26 +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:" : "Максимальное время выполнения:",
- "seconds" : "секунд",
- "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 67bc2229..62aaff70 100644
--- a/l10n/ru.json
+++ b/l10n/ru.json
@@ -1,55 +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 для копирования.",
- "Unknown" : "Неизвестно",
"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:" : "Группы:",
@@ -58,26 +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:" : "Максимальное время выполнения:",
- "seconds" : "секунд",
- "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 84fe6561..a389fc10 100644
--- a/l10n/sc.js
+++ b/l10n/sc.js
@@ -1,34 +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.",
- "Unknown" : "Disconnotu",
"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",
- "Load" : "Càrrigu",
- "Memory" : "Memòria",
- "Disk" : "Discu",
- "Size:" : "Mannària:",
- "Files:" : "Archìviu:",
- "Storages:" : "Archiviatziones:",
- "Free Space:" : "Logu lìberu:",
- "Network" : "Rete",
"Active users" : "Utèntzias ativas",
"Last hour" : "Un'ora a immoe",
- "Shares" : "Cumpartziduras",
- "PHP" : "PHP",
+ "Background jobs" : "Atividades de background",
+ "Mode" : "Modalidade",
+ "Never" : "Mai",
+ "Load" : "Càrrigu",
+ "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:",
+ "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",
+ "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",
"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 36fd98fd..bd9428e1 100644
--- a/l10n/sc.json
+++ b/l10n/sc.json
@@ -1,32 +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.",
- "Unknown" : "Disconnotu",
"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",
- "Load" : "Càrrigu",
- "Memory" : "Memòria",
- "Disk" : "Discu",
- "Size:" : "Mannària:",
- "Files:" : "Archìviu:",
- "Storages:" : "Archiviatziones:",
- "Free Space:" : "Logu lìberu:",
- "Network" : "Rete",
"Active users" : "Utèntzias ativas",
"Last hour" : "Un'ora a immoe",
- "Shares" : "Cumpartziduras",
- "PHP" : "PHP",
+ "Background jobs" : "Atividades de background",
+ "Mode" : "Modalidade",
+ "Never" : "Mai",
+ "Load" : "Càrrigu",
+ "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:",
+ "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",
+ "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",
"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 94d74504..90643d1c 100644
--- a/l10n/sk.js
+++ b/l10n/sk.js
@@ -1,74 +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.",
- "Unknown" : "Neznámy",
"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:",
- "seconds" : "sekúnd",
"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:",
@@ -83,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 ee824c2c..bac2cbd8 100644
--- a/l10n/sk.json
+++ b/l10n/sk.json
@@ -1,72 +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.",
- "Unknown" : "Neznámy",
"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:",
- "seconds" : "sekúnd",
"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 +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 37728408..42b38771 100644
--- a/l10n/sl.js
+++ b/l10n/sl.js
@@ -1,48 +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.",
- "Unknown" : "Neznano",
"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:",
@@ -51,26 +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:",
- "seconds" : "sekunde",
- "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 91dba986..b66b8550 100644
--- a/l10n/sl.json
+++ b/l10n/sl.json
@@ -1,46 +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.",
- "Unknown" : "Neznano",
"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:",
@@ -49,26 +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:",
- "seconds" : "sekunde",
- "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 f22dfe33..43b832bc 100644
--- a/l10n/sq.js
+++ b/l10n/sq.js
@@ -1,25 +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",
- "Unknown" : "I panjohur",
"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",
+ "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: ",
- "Database" : "Databazë",
- "Type:" : "Lloji:",
+ "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 85bf9d8e..48c953b6 100644
--- a/l10n/sq.json
+++ b/l10n/sq.json
@@ -1,23 +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",
- "Unknown" : "I panjohur",
"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",
+ "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: ",
- "Database" : "Databazë",
- "Type:" : "Lloji:",
+ "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 c46f8bc8..d0bec024 100644
--- a/l10n/sr.js
+++ b/l10n/sr.js
@@ -1,75 +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 за копирање.",
- "Unknown" : "Непознато",
"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:" : "Максимално време извршавања:",
- "seconds" : "секунди",
"Upload max size:" : "Максимална величина отпремања:",
- "OPcache Revalidate Frequency:" : "Учесталост OPcache ревалидације:",
"Extensions:" : "Проширења:",
- "Unable to list extensions" : "Не могу да се прикажу проширења",
"Show phpinfo" : "Прикажи phpinfo",
"FPM worker pool" : "Резервоар FPM радника",
"Pool name:" : "Име резервоара:",
@@ -84,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 af55dbf8..fcba2eba 100644
--- a/l10n/sr.json
+++ b/l10n/sr.json
@@ -1,73 +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 за копирање.",
- "Unknown" : "Непознато",
"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:" : "Максимално време извршавања:",
- "seconds" : "секунди",
"Upload max size:" : "Максимална величина отпремања:",
- "OPcache Revalidate Frequency:" : "Учесталост OPcache ревалидације:",
"Extensions:" : "Проширења:",
- "Unable to list extensions" : "Не могу да се прикажу проширења",
"Show phpinfo" : "Прикажи phpinfo",
"FPM worker pool" : "Резервоар FPM радника",
"Pool name:" : "Име резервоара:",
@@ -82,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 ef7a3886..700281b6 100644
--- a/l10n/sv.js
+++ b/l10n/sv.js
@@ -1,76 +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.",
- "Unknown" : "Okänd",
"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:",
- "PHP" : "PHP",
- "Version:" : "Version:",
- "Memory limit:" : "Minnesgräns:",
- "Max execution time:" : "Max körningstid:",
+ "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:" : "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:",
@@ -84,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 8f488142..decf0073 100644
--- a/l10n/sv.json
+++ b/l10n/sv.json
@@ -1,74 +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.",
- "Unknown" : "Okänd",
"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:",
- "PHP" : "PHP",
- "Version:" : "Version:",
- "Memory limit:" : "Minnesgräns:",
- "Max execution time:" : "Max körningstid:",
+ "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:" : "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 +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 2ffa1d9e..9d65102a 100644
--- a/l10n/sw.js
+++ b/l10n/sw.js
@@ -1,75 +1,69 @@
OC.L10N.register(
"serverinfo",
{
- "CPU info not available" : "Maelezo ya CPU hayapatikani",
- "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}",
- "RAM info not available" : "Maelezo ya RAM hayapatikani",
- "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.",
- "Unknown" : "Haijulikani",
"System" : "Mfumo",
+ "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.",
- "Operating System:" : "Mfumo wa Uendeshaji:",
- "CPU:" : "CPU:",
- "threads" : "nyuzi",
- "Memory:" : "Kumbukumbu:",
- "Server time:" : "Muda wa seva:",
- "Uptime:" : "Muda wa Kuwasha:",
- "Temperature" : "Halijoto",
+ "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",
- "Memory" : "Kumbukumbu",
+ "CPU info not available" : "Maelezo ya CPU hayapatikani",
+ "Threads" : "Mijadala",
+ "Database" : "Kanzidata",
+ "Type:" : "Aina:",
+ "Version:" : "Toleo:",
+ "Size:" : "Ukubwa:",
+ "Available" : "Inayopatikana",
"Disk" : "Diski",
+ "Files" : "Faili",
"Mount:" : "Mlima",
"Filesystem:" : "Mfumo wa faili:",
- "Size:" : "Ukubwa:",
"Available:" : "Inayopatikana:",
"Used:" : "Iliyotumika:",
- "Files:" : "Faili:",
- "Storages:" : "Hifadhi:",
- "Free Space:" : "Nafasi ya Bure:",
+ "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:",
- "Gateway:" : "Lango:",
+ "Hostname" : "Jina la mwenyeji",
"Status:" : "Hali:",
"Speed:" : "Kasi:",
"Duplex:" : "Duplex:",
"MAC:" : "MAC:",
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
- "Active users" : "Watumiaji wanaofanya kazi",
- "Last hour" : "Saa iliyopita",
- "%s%% of all users" : "%s%% ya watumiaji wote",
- "Last 24 Hours" : "Masaa 24 yaliyopita",
- "Last 7 Days" : "Siku 7 zilizopita",
- "Last 30 Days" : "Siku 30 zilizopita ",
- "Shares" : "Shiriki",
- "Users:" : "Watumiaji:",
- "Groups:" : "Vikundi:",
- "Links:" : "Viungo:",
- "Emails:" : "Barua pepe:",
- "Federated sent:" : "Shirikisho limetumwa:",
- "Federated received:" : "Shirikisho lilipokewa:",
- "Talk conversations:" : "Mazungumzo ya Talk",
+ "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:",
+ "Version" : "Toleo",
+ "Memory limit" : "Kikomo cha kumbukumbu",
"Max execution time:" : "Muda wa juu zaidi wa utekelezaji:",
- "seconds" : "sekunde",
"Upload max size:" : "Pakia ukubwa wa juu zaidi:",
- "OPcache Revalidate Frequency:" : "OPcache Kurekebisha Masafa:",
"Extensions:" : "Viendelezi:",
- "Unable to list extensions" : "Imeshindwa kuorodhesha viendelezi",
"Show phpinfo" : "Onyesha phpinfo",
"FPM worker pool" : "Bwawa la wafanyakazi wa FPM",
"Pool name:" : "Jina la bwawa:",
@@ -84,16 +78,48 @@ OC.L10N.register(
"Max listen queue:" : "Upeo wa foleni ya kusikiliza:",
"Max active processes:" : "Upeo wa michakato inayotumika:",
"Max children reached:" : "Idadi ya juu ya watoto imefikiwa:",
- "Database" : "Kanzidata",
- "Type:" : "Aina:",
+ "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",
- "Output in JSON" : "Tolezi katika JSON",
"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)",
- "Skip server update" : "Ruka sasisho la seva",
"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.",
- "Unknown Processor" : "Kichakataji kisichojulikana"
+ "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 d3b8bdc0..5d345062 100644
--- a/l10n/sw.json
+++ b/l10n/sw.json
@@ -1,73 +1,67 @@
{ "translations": {
- "CPU info not available" : "Maelezo ya CPU hayapatikani",
- "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}",
- "RAM info not available" : "Maelezo ya RAM hayapatikani",
- "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.",
- "Unknown" : "Haijulikani",
"System" : "Mfumo",
+ "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.",
- "Operating System:" : "Mfumo wa Uendeshaji:",
- "CPU:" : "CPU:",
- "threads" : "nyuzi",
- "Memory:" : "Kumbukumbu:",
- "Server time:" : "Muda wa seva:",
- "Uptime:" : "Muda wa Kuwasha:",
- "Temperature" : "Halijoto",
+ "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",
- "Memory" : "Kumbukumbu",
+ "CPU info not available" : "Maelezo ya CPU hayapatikani",
+ "Threads" : "Mijadala",
+ "Database" : "Kanzidata",
+ "Type:" : "Aina:",
+ "Version:" : "Toleo:",
+ "Size:" : "Ukubwa:",
+ "Available" : "Inayopatikana",
"Disk" : "Diski",
+ "Files" : "Faili",
"Mount:" : "Mlima",
"Filesystem:" : "Mfumo wa faili:",
- "Size:" : "Ukubwa:",
"Available:" : "Inayopatikana:",
"Used:" : "Iliyotumika:",
- "Files:" : "Faili:",
- "Storages:" : "Hifadhi:",
- "Free Space:" : "Nafasi ya Bure:",
+ "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:",
- "Gateway:" : "Lango:",
+ "Hostname" : "Jina la mwenyeji",
"Status:" : "Hali:",
"Speed:" : "Kasi:",
"Duplex:" : "Duplex:",
"MAC:" : "MAC:",
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
- "Active users" : "Watumiaji wanaofanya kazi",
- "Last hour" : "Saa iliyopita",
- "%s%% of all users" : "%s%% ya watumiaji wote",
- "Last 24 Hours" : "Masaa 24 yaliyopita",
- "Last 7 Days" : "Siku 7 zilizopita",
- "Last 30 Days" : "Siku 30 zilizopita ",
- "Shares" : "Shiriki",
- "Users:" : "Watumiaji:",
- "Groups:" : "Vikundi:",
- "Links:" : "Viungo:",
- "Emails:" : "Barua pepe:",
- "Federated sent:" : "Shirikisho limetumwa:",
- "Federated received:" : "Shirikisho lilipokewa:",
- "Talk conversations:" : "Mazungumzo ya Talk",
+ "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:",
+ "Version" : "Toleo",
+ "Memory limit" : "Kikomo cha kumbukumbu",
"Max execution time:" : "Muda wa juu zaidi wa utekelezaji:",
- "seconds" : "sekunde",
"Upload max size:" : "Pakia ukubwa wa juu zaidi:",
- "OPcache Revalidate Frequency:" : "OPcache Kurekebisha Masafa:",
"Extensions:" : "Viendelezi:",
- "Unable to list extensions" : "Imeshindwa kuorodhesha viendelezi",
"Show phpinfo" : "Onyesha phpinfo",
"FPM worker pool" : "Bwawa la wafanyakazi wa FPM",
"Pool name:" : "Jina la bwawa:",
@@ -82,16 +76,48 @@
"Max listen queue:" : "Upeo wa foleni ya kusikiliza:",
"Max active processes:" : "Upeo wa michakato inayotumika:",
"Max children reached:" : "Idadi ya juu ya watoto imefikiwa:",
- "Database" : "Kanzidata",
- "Type:" : "Aina:",
+ "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",
- "Output in JSON" : "Tolezi katika JSON",
"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)",
- "Skip server update" : "Ruka sasisho la seva",
"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.",
- "Unknown Processor" : "Kichakataji kisichojulikana"
+ "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 abbcde44..51e91ecf 100644
--- a/l10n/th.js
+++ b/l10n/th.js
@@ -1,17 +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 เพื่อคัดลอก",
- "Unknown" : "ไม่ทราบ",
- "System" : "ระบบ",
- "Size:" : "ขนาด:",
- "Active users" : "ผู้ใช้ที่ใช้งานอยู่",
- "Shares" : "การแชร์",
- "seconds" : "วินาที",
- "Type:" : "ชนิด:",
"Copy" : "คัดลอก"
},
"nplurals=1; plural=0;");
diff --git a/l10n/th.json b/l10n/th.json
index ef595823..b840e4f4 100644
--- a/l10n/th.json
+++ b/l10n/th.json
@@ -1,15 +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 เพื่อคัดลอก",
- "Unknown" : "ไม่ทราบ",
- "System" : "ระบบ",
- "Size:" : "ขนาด:",
- "Active users" : "ผู้ใช้ที่ใช้งานอยู่",
- "Shares" : "การแชร์",
- "seconds" : "วินาที",
- "Type:" : "ชนิด:",
"Copy" : "คัดลอก"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/tr.js b/l10n/tr.js
index 83c90ccf..4c789991 100644
--- a/l10n/tr.js
+++ b/l10n/tr.js
@@ -1,78 +1,129 @@
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",
- "System" : "Sistem",
"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ı:",
- "MB" : "MB",
+ "Version" : "Sürüm",
+ "Memory limit" : "Bellek sınırı",
"Max execution time:" : "En uzun çalışma süresi:",
- "seconds" : "saniye",
"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",
@@ -88,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 86cd58ce..c4add146 100644
--- a/l10n/tr.json
+++ b/l10n/tr.json
@@ -1,76 +1,127 @@
{ "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",
- "System" : "Sistem",
"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ı:",
- "MB" : "MB",
+ "Version" : "Sürüm",
+ "Memory limit" : "Bellek sınırı",
"Max execution time:" : "En uzun çalışma süresi:",
- "seconds" : "saniye",
"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",
@@ -86,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 60881871..f93fb789 100644
--- a/l10n/ug.js
+++ b/l10n/ug.js
@@ -1,75 +1,71 @@
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 نى بېسىڭ.",
- "Unknown" : "نامەلۇم",
"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:",
- "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" : "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" : "ھەمبەھىرلەر",
- "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:" : "ئىجرا قىلىنىش ۋاقتى:",
- "seconds" : "سېكۇنت",
"Upload max size:" : "ئەڭ چوڭ چوڭلۇقى:",
- "OPcache Revalidate Frequency:" : "OPcache چاستوتىنى ئىناۋەتسىز قىلىدۇ:",
"Extensions:" : "كېڭەيتىلمىسى:",
- "Unable to list extensions" : "كېڭەيتىلمىنى تىزىشقا ئامالسىز",
"Show phpinfo" : "Phpinfo نى كۆرسەت",
"FPM worker pool" : "FPM ئىشچى يىغىندىسى",
"Pool name:" : "يىغىندا نامى:",
@@ -84,16 +80,50 @@ OC.L10N.register(
"Max listen queue:" : "ئەڭ چوڭ ئاڭلاش ئۆچرېتى:",
"Max active processes:" : "ئەڭ چوڭ ئاكتىپ جەريانلار:",
"Max children reached:" : "ئەڭ چوڭ تارماقلارغا يەتكىنى:",
- "Database" : "ساندان",
- "Type:" : "تىپى:",
+ "Resource usage" : "بايلىق ئىشلىتىش",
+ "Shares" : "ھەمبەھىرلەر",
+ "Users:" : "ئىشلەتكۈچىلەر:",
+ "Groups:" : "گۇرۇپپىلار:",
+ "Links:" : "ئۇلىنىشلار:",
+ "Emails:" : "ئېلخەت:",
+ "Federated sent:" : "فېدېراتسىيە ئەۋەتىلگەن:",
+ "Federated received:" : "فېدېراتسىيە قوبۇل قىلدى:",
+ "Talk conversations:" : "سۆھبەت پاراڭلىرى:",
+ "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:" : "ئەستە ساقلاش چېكى:",
+ "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" : "مۇلازىمېتىر يېڭىلاشتىن ئاتلاڭ",
+ "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 a65c0e1c..7734dea1 100644
--- a/l10n/ug.json
+++ b/l10n/ug.json
@@ -1,73 +1,69 @@
{ "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 نى بېسىڭ.",
- "Unknown" : "نامەلۇم",
"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:",
- "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" : "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" : "ھەمبەھىرلەر",
- "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:" : "ئىجرا قىلىنىش ۋاقتى:",
- "seconds" : "سېكۇنت",
"Upload max size:" : "ئەڭ چوڭ چوڭلۇقى:",
- "OPcache Revalidate Frequency:" : "OPcache چاستوتىنى ئىناۋەتسىز قىلىدۇ:",
"Extensions:" : "كېڭەيتىلمىسى:",
- "Unable to list extensions" : "كېڭەيتىلمىنى تىزىشقا ئامالسىز",
"Show phpinfo" : "Phpinfo نى كۆرسەت",
"FPM worker pool" : "FPM ئىشچى يىغىندىسى",
"Pool name:" : "يىغىندا نامى:",
@@ -82,16 +78,50 @@
"Max listen queue:" : "ئەڭ چوڭ ئاڭلاش ئۆچرېتى:",
"Max active processes:" : "ئەڭ چوڭ ئاكتىپ جەريانلار:",
"Max children reached:" : "ئەڭ چوڭ تارماقلارغا يەتكىنى:",
- "Database" : "ساندان",
- "Type:" : "تىپى:",
+ "Resource usage" : "بايلىق ئىشلىتىش",
+ "Shares" : "ھەمبەھىرلەر",
+ "Users:" : "ئىشلەتكۈچىلەر:",
+ "Groups:" : "گۇرۇپپىلار:",
+ "Links:" : "ئۇلىنىشلار:",
+ "Emails:" : "ئېلخەت:",
+ "Federated sent:" : "فېدېراتسىيە ئەۋەتىلگەن:",
+ "Federated received:" : "فېدېراتسىيە قوبۇل قىلدى:",
+ "Talk conversations:" : "سۆھبەت پاراڭلىرى:",
+ "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:" : "ئەستە ساقلاش چېكى:",
+ "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" : "مۇلازىمېتىر يېڭىلاشتىن ئاتلاڭ",
+ "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 726d9ccd..aa2963a6 100644
--- a/l10n/uk.js
+++ b/l10n/uk.js
@@ -1,78 +1,110 @@
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 секунд",
- "System" : "Система",
"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:" : "Вільно:",
+ "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:" : "Обмеження пам'яті:",
- "MB" : "МБ",
+ "Version" : "Версія",
+ "Memory limit" : "Ліміт пам'яті",
"Max execution time:" : "Максимальний час виконання:",
- "seconds" : "секунд",
"Upload max size:" : "Макс. розмір завантаження:",
- "OPcache Revalidate Frequency:" : "Частота ревалідації OPcache:",
"Extensions:" : "Розширення:",
- "Unable to list extensions" : "Не вдалося створити список розширень",
"PHP Info:" : "Інфо PHP:",
"Show phpinfo" : "Показати phpinfo",
"FPM worker pool" : "Набір обробників FPM",
@@ -88,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 897ed56c..e82269eb 100644
--- a/l10n/uk.json
+++ b/l10n/uk.json
@@ -1,76 +1,108 @@
{ "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 секунд",
- "System" : "Система",
"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:" : "Вільно:",
+ "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:" : "Обмеження пам'яті:",
- "MB" : "МБ",
+ "Version" : "Версія",
+ "Memory limit" : "Ліміт пам'яті",
"Max execution time:" : "Максимальний час виконання:",
- "seconds" : "секунд",
"Upload max size:" : "Макс. розмір завантаження:",
- "OPcache Revalidate Frequency:" : "Частота ревалідації OPcache:",
"Extensions:" : "Розширення:",
- "Unable to list extensions" : "Не вдалося створити список розширень",
"PHP Info:" : "Інфо PHP:",
"Show phpinfo" : "Показати phpinfo",
"FPM worker pool" : "Набір обробників FPM",
@@ -86,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 bb0a62fd..857f0fed 100644
--- a/l10n/uz.js
+++ b/l10n/uz.js
@@ -1,13 +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" : "Tizim",
"Unknown" : "Noma'lum",
- "System" : "System",
+ "%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",
- "Copy" : "Copy"
+ "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 dda51edf..0885b272 100644
--- a/l10n/uz.json
+++ b/l10n/uz.json
@@ -1,11 +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" : "Tizim",
"Unknown" : "Noma'lum",
- "System" : "System",
+ "%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",
- "Copy" : "Copy"
+ "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 a5686fd3..ae39d9e5 100644
--- a/l10n/vi.js
+++ b/l10n/vi.js
@@ -1,29 +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.",
- "Unknown" : "Không xác định",
- "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:",
- "seconds" : "giây",
- "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 652bc5b0..3bfecb86 100644
--- a/l10n/vi.json
+++ b/l10n/vi.json
@@ -1,27 +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.",
- "Unknown" : "Không xác định",
- "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:",
- "seconds" : "giây",
- "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 9c259867..1d360aaa 100644
--- a/l10n/zh_CN.js
+++ b/l10n/zh_CN.js
@@ -1,55 +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 复制。",
- "Unknown" : "未知",
"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:" : "组别:",
@@ -58,28 +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:" : "最大执行时间:",
- "seconds" : "秒",
- "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 23c511bb..05092f70 100644
--- a/l10n/zh_CN.json
+++ b/l10n/zh_CN.json
@@ -1,53 +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 复制。",
- "Unknown" : "未知",
"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:" : "组别:",
@@ -56,28 +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:" : "最大执行时间:",
- "seconds" : "秒",
- "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 30801825..e191cae9 100644
--- a/l10n/zh_HK.js
+++ b/l10n/zh_HK.js
@@ -1,78 +1,110 @@
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秒",
- "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:" : "作業系統:",
- "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:" : "記憶體限制:",
- "MB" : "MB",
+ "Version" : "版本",
+ "Memory limit" : "記憶體限制",
"Max execution time:" : "最長執行時間:",
- "seconds" : "秒",
"Upload max size:" : "上傳至多:",
- "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:",
"Extensions:" : "PHP 擴展:",
- "Unable to list extensions" : "無法列出 PHP 擴展",
"PHP Info:" : "PHP 資訊:",
"Show phpinfo" : "顯示 phpinfo",
"FPM worker pool" : "FPM 共用人員",
@@ -88,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 46aa4ebf..977ed672 100644
--- a/l10n/zh_HK.json
+++ b/l10n/zh_HK.json
@@ -1,76 +1,108 @@
{ "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秒",
- "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:" : "作業系統:",
- "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:" : "記憶體限制:",
- "MB" : "MB",
+ "Version" : "版本",
+ "Memory limit" : "記憶體限制",
"Max execution time:" : "最長執行時間:",
- "seconds" : "秒",
"Upload max size:" : "上傳至多:",
- "OPcache Revalidate Frequency:" : "OPcache 重新驗證頻率:",
"Extensions:" : "PHP 擴展:",
- "Unable to list extensions" : "無法列出 PHP 擴展",
"PHP Info:" : "PHP 資訊:",
"Show phpinfo" : "顯示 phpinfo",
"FPM worker pool" : "FPM 共用人員",
@@ -86,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 ce425e48..f35c2d65 100644
--- a/l10n/zh_TW.js
+++ b/l10n/zh_TW.js
@@ -1,78 +1,129 @@
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秒",
- "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:" : "作業系統:",
- "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:" : "記憶體限制:",
- "MB" : "MB",
+ "Version" : "版本",
+ "Memory limit" : "記憶體限制",
"Max execution time:" : "最大執行時間:",
- "seconds" : "秒",
"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",
@@ -88,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 24b055e5..2b35b224 100644
--- a/l10n/zh_TW.json
+++ b/l10n/zh_TW.json
@@ -1,76 +1,127 @@
{ "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秒",
- "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:" : "作業系統:",
- "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:" : "記憶體限制:",
- "MB" : "MB",
+ "Version" : "版本",
+ "Memory limit" : "記憶體限制",
"Max execution time:" : "最大執行時間:",
- "seconds" : "秒",
"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",
@@ -86,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/Jobs/UpdateStorageStats.php b/lib/Jobs/UpdateStorageStats.php
index 3eb6ad12..96006791 100644
--- a/lib/Jobs/UpdateStorageStats.php
+++ b/lib/Jobs/UpdateStorageStats.php
@@ -11,22 +11,25 @@
use OCA\ServerInfo\StorageStatistics;
use OCP\AppFramework\Utility\ITimeFactory;
+use OCP\BackgroundJob\IJob;
use OCP\BackgroundJob\TimedJob;
use OCP\IAppConfig;
+/**
+ * @psalm-api
+ */
class UpdateStorageStats extends TimedJob {
- private StorageStatistics $storageStatistics;
- public function __construct(ITimeFactory $time, StorageStatistics $storageStatistics, IAppConfig $appConfig) {
- $this->setInterval($appConfig->getValueInt('serverinfo', 'job_interval_storage_stats', 60 * 60 * 3));
+ public function __construct(
+ ITimeFactory $time,
+ private StorageStatistics $storageStatistics,
+ IAppConfig $appConfig,
+ ) {
parent::__construct($time);
-
- $this->storageStatistics = $storageStatistics;
+ $this->setInterval($appConfig->getValueInt('serverinfo', 'job_interval_storage_stats', 60 * 60 * 3));
+ $this->setTimeSensitivity(IJob::TIME_INSENSITIVE);
}
- /**
- * @inheritDoc
- */
#[\Override]
protected function run($argument): void {
$this->storageStatistics->updateStorageCounts();
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 22b03205..7672fdc9 100644
--- a/lib/PhpStatistics.php
+++ b/lib/PhpStatistics.php
@@ -99,15 +99,23 @@ protected function getAPCuStatus(): array {
}
/**
- * Get all loaded php extensions
+ * Get all loaded php extensions (PHP + Zend), de-duplicated and sorted.
*
- * @return array|null 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 {
if (!function_exists('get_loaded_extensions')) {
return null;
}
- $extensions = get_loaded_extensions();
+
+ // `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 f537eb3a..bedd7ddf 100644
--- a/templates/settings-admin.php
+++ b/templates/settings-admin.php
@@ -66,7 +66,7 @@ function FormatMegabytes(int $byte): string {
| t('CPU:')); ?> |
- getName()) ?> (= $cpu->getThreads() ?> t('threads')); ?>) |
+ t('%1$s (%2$d threads)', [$cpu->getName(), $cpu->getThreads()])) ?> |
getMemTotal() > 0): ?>
diff --git a/tests/psalm-baseline.xml b/tests/psalm-baseline.xml
index 43506fc0..ca6bc41d 100644
--- a/tests/psalm-baseline.xml
+++ b/tests/psalm-baseline.xml
@@ -30,11 +30,6 @@
-
-
-
-
-
diff --git a/vendor-bin/phpunit/composer.lock b/vendor-bin/phpunit/composer.lock
index 08a07a7f..cd58870a 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,20 +65,20 @@
"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.7.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
},
"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/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
"shasum": ""
},
"require": {
@@ -97,7 +97,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.0-dev"
+ "dev-master": "5.x-dev"
}
},
"autoload": {
@@ -121,9 +121,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.7.0"
},
- "time": "2025-05-31T08:24:38+00:00"
+ "time": "2025-12-06T11:56:16+00:00"
},
{
"name": "phar-io/manifest",
@@ -566,16 +566,16 @@
},
{
"name": "phpunit/phpunit",
- "version": "10.5.48",
+ "version": "10.5.63",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "6e0a2bc39f6fae7617989d690d76c48e6d2eb541"
+ "reference": "33198268dad71e926626b618f3ec3966661e4d90"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/6e0a2bc39f6fae7617989d690d76c48e6d2eb541",
- "reference": "6e0a2bc39f6fae7617989d690d76c48e6d2eb541",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/33198268dad71e926626b618f3ec3966661e4d90",
+ "reference": "33198268dad71e926626b618f3ec3966661e4d90",
"shasum": ""
},
"require": {
@@ -585,7 +585,7 @@
"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 +596,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,7 +647,7 @@
"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.63"
},
"funding": [
{
@@ -671,7 +671,7 @@
"type": "tidelift"
}
],
- "time": "2025-07-11T04:07:17+00:00"
+ "time": "2026-01-27T05:48:37+00:00"
},
{
"name": "sebastian/cli-parser",
@@ -843,16 +843,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 +908,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 +1121,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 +1139,7 @@
"sebastian/recursion-context": "^5.0"
},
"require-dev": {
- "phpunit/phpunit": "^10.0"
+ "phpunit/phpunit": "^10.5"
},
"type": "library",
"extra": {
@@ -1175,15 +1187,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 +1443,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 +1494,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 +1628,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 +1666,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 +1674,7 @@
"type": "github"
}
],
- "time": "2024-03-03T12:36:25+00:00"
+ "time": "2025-11-17T20:03:58+00:00"
}
],
"aliases": [],
@@ -1650,5 +1687,5 @@
"platform-overrides": {
"php": "8.1.33"
},
- "plugin-api-version": "2.6.0"
+ "plugin-api-version": "2.9.0"
}
diff --git a/vendor-bin/psalm/composer.lock b/vendor-bin/psalm/composer.lock
index 3a7433e2..33bb64c2 100644
--- a/vendor-bin/psalm/composer.lock
+++ b/vendor-bin/psalm/composer.lock
@@ -319,16 +319,16 @@
},
{
"name": "amphp/parallel",
- "version": "v2.3.3",
+ "version": "v2.4.0",
"source": {
"type": "git",
"url": "https://github.com/amphp/parallel.git",
- "reference": "296b521137a54d3a02425b464e5aee4c93db2c60"
+ "reference": "37f5b2754fadc229c00f9416bd68fb8d04529a81"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/parallel/zipball/296b521137a54d3a02425b464e5aee4c93db2c60",
- "reference": "296b521137a54d3a02425b464e5aee4c93db2c60",
+ "url": "https://api.github.com/repos/amphp/parallel/zipball/37f5b2754fadc229c00f9416bd68fb8d04529a81",
+ "reference": "37f5b2754fadc229c00f9416bd68fb8d04529a81",
"shasum": ""
},
"require": {
@@ -348,7 +348,7 @@
"amphp/php-cs-fixer-config": "^2",
"amphp/phpunit-util": "^3",
"phpunit/phpunit": "^9",
- "psalm/phar": "^5.18"
+ "psalm/phar": "6.16.1"
},
"type": "library",
"autoload": {
@@ -391,7 +391,7 @@
],
"support": {
"issues": "https://github.com/amphp/parallel/issues",
- "source": "https://github.com/amphp/parallel/tree/v2.3.3"
+ "source": "https://github.com/amphp/parallel/tree/v2.4.0"
},
"funding": [
{
@@ -399,7 +399,7 @@
"type": "github"
}
],
- "time": "2025-11-15T06:23:42+00:00"
+ "time": "2026-05-16T16:54:01+00:00"
},
{
"name": "amphp/parser",
@@ -465,16 +465,16 @@
},
{
"name": "amphp/pipeline",
- "version": "v1.2.3",
+ "version": "v1.2.4",
"source": {
"type": "git",
"url": "https://github.com/amphp/pipeline.git",
- "reference": "7b52598c2e9105ebcddf247fc523161581930367"
+ "reference": "a044733e080940d1483f56caff0c412ad6982776"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/pipeline/zipball/7b52598c2e9105ebcddf247fc523161581930367",
- "reference": "7b52598c2e9105ebcddf247fc523161581930367",
+ "url": "https://api.github.com/repos/amphp/pipeline/zipball/a044733e080940d1483f56caff0c412ad6982776",
+ "reference": "a044733e080940d1483f56caff0c412ad6982776",
"shasum": ""
},
"require": {
@@ -486,7 +486,7 @@
"amphp/php-cs-fixer-config": "^2",
"amphp/phpunit-util": "^3",
"phpunit/phpunit": "^9",
- "psalm/phar": "^5.18"
+ "psalm/phar": "6.16.1"
},
"type": "library",
"autoload": {
@@ -520,7 +520,7 @@
],
"support": {
"issues": "https://github.com/amphp/pipeline/issues",
- "source": "https://github.com/amphp/pipeline/tree/v1.2.3"
+ "source": "https://github.com/amphp/pipeline/tree/v1.2.4"
},
"funding": [
{
@@ -528,20 +528,20 @@
"type": "github"
}
],
- "time": "2025-03-16T16:33:53+00:00"
+ "time": "2026-05-06T05:37:57+00:00"
},
{
"name": "amphp/process",
- "version": "v2.0.3",
+ "version": "v2.1.0",
"source": {
"type": "git",
"url": "https://github.com/amphp/process.git",
- "reference": "52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d"
+ "reference": "583959df17d00304ad7b0b32285373f985935643"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/process/zipball/52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d",
- "reference": "52e08c09dec7511d5fbc1fb00d3e4e79fc77d58d",
+ "url": "https://api.github.com/repos/amphp/process/zipball/583959df17d00304ad7b0b32285373f985935643",
+ "reference": "583959df17d00304ad7b0b32285373f985935643",
"shasum": ""
},
"require": {
@@ -555,7 +555,7 @@
"amphp/php-cs-fixer-config": "^2",
"amphp/phpunit-util": "^3",
"phpunit/phpunit": "^9",
- "psalm/phar": "^5.4"
+ "psalm/phar": "6.16.1"
},
"type": "library",
"autoload": {
@@ -588,7 +588,7 @@
"homepage": "https://amphp.org/process",
"support": {
"issues": "https://github.com/amphp/process/issues",
- "source": "https://github.com/amphp/process/tree/v2.0.3"
+ "source": "https://github.com/amphp/process/tree/v2.1.0"
},
"funding": [
{
@@ -596,28 +596,31 @@
"type": "github"
}
],
- "time": "2024-04-19T03:13:44+00:00"
+ "time": "2026-05-31T15:11:55+00:00"
},
{
"name": "amphp/serialization",
- "version": "v1.0.0",
+ "version": "v1.1.0",
"source": {
"type": "git",
"url": "https://github.com/amphp/serialization.git",
- "reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1"
+ "reference": "fdf2834d78cebb0205fb2672676c1b1eb84371f0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/serialization/zipball/693e77b2fb0b266c3c7d622317f881de44ae94a1",
- "reference": "693e77b2fb0b266c3c7d622317f881de44ae94a1",
+ "url": "https://api.github.com/repos/amphp/serialization/zipball/fdf2834d78cebb0205fb2672676c1b1eb84371f0",
+ "reference": "fdf2834d78cebb0205fb2672676c1b1eb84371f0",
"shasum": ""
},
"require": {
- "php": ">=7.1"
+ "php": ">=7.4"
},
"require-dev": {
- "amphp/php-cs-fixer-config": "dev-master",
- "phpunit/phpunit": "^9 || ^8 || ^7"
+ "amphp/php-cs-fixer-config": "^2",
+ "ext-json": "*",
+ "ext-zlib": "*",
+ "phpunit/phpunit": "^9",
+ "psalm/phar": "6.16.1"
},
"type": "library",
"autoload": {
@@ -652,22 +655,28 @@
],
"support": {
"issues": "https://github.com/amphp/serialization/issues",
- "source": "https://github.com/amphp/serialization/tree/master"
+ "source": "https://github.com/amphp/serialization/tree/v1.1.0"
},
- "time": "2020-03-25T21:39:07+00:00"
+ "funding": [
+ {
+ "url": "https://github.com/amphp",
+ "type": "github"
+ }
+ ],
+ "time": "2026-04-05T15:59:53+00:00"
},
{
"name": "amphp/socket",
- "version": "v2.3.1",
+ "version": "v2.4.0",
"source": {
"type": "git",
"url": "https://github.com/amphp/socket.git",
- "reference": "58e0422221825b79681b72c50c47a930be7bf1e1"
+ "reference": "dadb63c5d3179fd83803e29dfeac27350e619314"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/amphp/socket/zipball/58e0422221825b79681b72c50c47a930be7bf1e1",
- "reference": "58e0422221825b79681b72c50c47a930be7bf1e1",
+ "url": "https://api.github.com/repos/amphp/socket/zipball/dadb63c5d3179fd83803e29dfeac27350e619314",
+ "reference": "dadb63c5d3179fd83803e29dfeac27350e619314",
"shasum": ""
},
"require": {
@@ -676,17 +685,17 @@
"amphp/dns": "^2",
"ext-openssl": "*",
"kelunik/certificate": "^1.1",
- "league/uri": "^6.5 | ^7",
- "league/uri-interfaces": "^2.3 | ^7",
+ "league/uri": "^7",
+ "league/uri-interfaces": "^7",
"php": ">=8.1",
- "revolt/event-loop": "^1 || ^0.2"
+ "revolt/event-loop": "^1"
},
"require-dev": {
"amphp/php-cs-fixer-config": "^2",
"amphp/phpunit-util": "^3",
"amphp/process": "^2",
"phpunit/phpunit": "^9",
- "psalm/phar": "5.20"
+ "psalm/phar": "6.16.1"
},
"type": "library",
"autoload": {
@@ -730,7 +739,7 @@
],
"support": {
"issues": "https://github.com/amphp/socket/issues",
- "source": "https://github.com/amphp/socket/tree/v2.3.1"
+ "source": "https://github.com/amphp/socket/tree/v2.4.0"
},
"funding": [
{
@@ -738,7 +747,7 @@
"type": "github"
}
],
- "time": "2024-04-21T14:33:03+00:00"
+ "time": "2026-04-19T15:09:56+00:00"
},
{
"name": "amphp/sync",
@@ -817,28 +826,29 @@
},
{
"name": "composer/pcre",
- "version": "3.3.2",
+ "version": "3.4.0",
"source": {
"type": "git",
"url": "https://github.com/composer/pcre.git",
- "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
+ "reference": "d5a341b3fb61f3001970940afb1d332968a183ed"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
- "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
+ "url": "https://api.github.com/repos/composer/pcre/zipball/d5a341b3fb61f3001970940afb1d332968a183ed",
+ "reference": "d5a341b3fb61f3001970940afb1d332968a183ed",
"shasum": ""
},
"require": {
"php": "^7.4 || ^8.0"
},
"conflict": {
- "phpstan/phpstan": "<1.11.10"
+ "phpstan/phpstan": "<2.2.2"
},
"require-dev": {
- "phpstan/phpstan": "^1.12 || ^2",
- "phpstan/phpstan-strict-rules": "^1 || ^2",
- "phpunit/phpunit": "^8 || ^9"
+ "phpstan/phpstan": "^2",
+ "phpstan/phpstan-deprecation-rules": "^2",
+ "phpstan/phpstan-strict-rules": "^2",
+ "phpunit/phpunit": "^9"
},
"type": "library",
"extra": {
@@ -876,7 +886,7 @@
],
"support": {
"issues": "https://github.com/composer/pcre/issues",
- "source": "https://github.com/composer/pcre/tree/3.3.2"
+ "source": "https://github.com/composer/pcre/tree/3.4.0"
},
"funding": [
{
@@ -886,13 +896,9 @@
{
"url": "https://github.com/composer",
"type": "github"
- },
- {
- "url": "https://tidelift.com/funding/github/packagist/composer/composer",
- "type": "tidelift"
}
],
- "time": "2024-11-12T16:29:46+00:00"
+ "time": "2026-06-07T11:47:49+00:00"
},
{
"name": "composer/semver",
@@ -1039,22 +1045,22 @@
},
{
"name": "danog/advanced-json-rpc",
- "version": "v3.2.2",
+ "version": "v3.2.3",
"source": {
"type": "git",
"url": "https://github.com/danog/php-advanced-json-rpc.git",
- "reference": "aadb1c4068a88c3d0530cfe324b067920661efcb"
+ "reference": "ae703ea7b4811797a10590b6078de05b3b33dd91"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/danog/php-advanced-json-rpc/zipball/aadb1c4068a88c3d0530cfe324b067920661efcb",
- "reference": "aadb1c4068a88c3d0530cfe324b067920661efcb",
+ "url": "https://api.github.com/repos/danog/php-advanced-json-rpc/zipball/ae703ea7b4811797a10590b6078de05b3b33dd91",
+ "reference": "ae703ea7b4811797a10590b6078de05b3b33dd91",
"shasum": ""
},
"require": {
"netresearch/jsonmapper": "^5",
"php": ">=8.1",
- "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0"
+ "phpdocumentor/reflection-docblock": "^4.3.4 || ^5.0.0 || ^6"
},
"replace": {
"felixfbecker/php-advanced-json-rpc": "^3"
@@ -1085,9 +1091,9 @@
"description": "A more advanced JSONRPC implementation",
"support": {
"issues": "https://github.com/danog/php-advanced-json-rpc/issues",
- "source": "https://github.com/danog/php-advanced-json-rpc/tree/v3.2.2"
+ "source": "https://github.com/danog/php-advanced-json-rpc/tree/v3.2.3"
},
- "time": "2025-02-14T10:55:15+00:00"
+ "time": "2026-01-12T21:07:10+00:00"
},
{
"name": "daverandom/libdns",
@@ -1172,29 +1178,29 @@
},
{
"name": "doctrine/deprecations",
- "version": "1.1.5",
+ "version": "1.1.6",
"source": {
"type": "git",
"url": "https://github.com/doctrine/deprecations.git",
- "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
+ "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
- "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
+ "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
+ "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
"shasum": ""
},
"require": {
"php": "^7.1 || ^8.0"
},
"conflict": {
- "phpunit/phpunit": "<=7.5 || >=13"
+ "phpunit/phpunit": "<=7.5 || >=14"
},
"require-dev": {
- "doctrine/coding-standard": "^9 || ^12 || ^13",
- "phpstan/phpstan": "1.4.10 || 2.1.11",
+ "doctrine/coding-standard": "^9 || ^12 || ^14",
+ "phpstan/phpstan": "1.4.10 || 2.1.30",
"phpstan/phpstan-phpunit": "^1.0 || ^2",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
+ "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
"psr/log": "^1 || ^2 || ^3"
},
"suggest": {
@@ -1214,9 +1220,9 @@
"homepage": "https://www.doctrine-project.org/",
"support": {
"issues": "https://github.com/doctrine/deprecations/issues",
- "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
+ "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
},
- "time": "2025-04-07T20:06:18+00:00"
+ "time": "2026-02-07T07:09:04+00:00"
},
{
"name": "felixfbecker/language-server-protocol",
@@ -1395,20 +1401,20 @@
},
{
"name": "league/uri",
- "version": "7.7.0",
+ "version": "7.8.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/uri.git",
- "reference": "8d587cddee53490f9b82bf203d3a9aa7ea4f9807"
+ "reference": "08cf38e3924d4f56238125547b5720496fac8fd4"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/uri/zipball/8d587cddee53490f9b82bf203d3a9aa7ea4f9807",
- "reference": "8d587cddee53490f9b82bf203d3a9aa7ea4f9807",
+ "url": "https://api.github.com/repos/thephpleague/uri/zipball/08cf38e3924d4f56238125547b5720496fac8fd4",
+ "reference": "08cf38e3924d4f56238125547b5720496fac8fd4",
"shasum": ""
},
"require": {
- "league/uri-interfaces": "^7.7",
+ "league/uri-interfaces": "^7.8.1",
"php": "^8.1",
"psr/http-factory": "^1"
},
@@ -1422,11 +1428,11 @@
"ext-gmp": "to improve IPV4 host parsing",
"ext-intl": "to handle IDN host with the best performance",
"ext-uri": "to use the PHP native URI class",
- "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
- "league/uri-components": "Needed to easily manipulate URI objects components",
- "league/uri-polyfill": "Needed to backport the PHP URI extension for older versions of PHP",
+ "jeremykendall/php-domain-parser": "to further parse the URI host and resolve its Public Suffix and Top Level Domain",
+ "league/uri-components": "to provide additional tools to manipulate URI objects components",
+ "league/uri-polyfill": "to backport the PHP URI extension for older versions of PHP",
"php-64bit": "to improve IPV4 host parsing",
- "rowbot/url": "to handle WHATWG URL",
+ "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
"symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
},
"type": "library",
@@ -1481,7 +1487,7 @@
"docs": "https://uri.thephpleague.com",
"forum": "https://thephpleague.slack.com",
"issues": "https://github.com/thephpleague/uri-src/issues",
- "source": "https://github.com/thephpleague/uri/tree/7.7.0"
+ "source": "https://github.com/thephpleague/uri/tree/7.8.1"
},
"funding": [
{
@@ -1489,20 +1495,20 @@
"type": "github"
}
],
- "time": "2025-12-07T16:02:06+00:00"
+ "time": "2026-03-15T20:22:25+00:00"
},
{
"name": "league/uri-interfaces",
- "version": "7.7.0",
+ "version": "7.8.1",
"source": {
"type": "git",
"url": "https://github.com/thephpleague/uri-interfaces.git",
- "reference": "62ccc1a0435e1c54e10ee6022df28d6c04c2946c"
+ "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/62ccc1a0435e1c54e10ee6022df28d6c04c2946c",
- "reference": "62ccc1a0435e1c54e10ee6022df28d6c04c2946c",
+ "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/85d5c77c5d6d3af6c54db4a78246364908f3c928",
+ "reference": "85d5c77c5d6d3af6c54db4a78246364908f3c928",
"shasum": ""
},
"require": {
@@ -1515,7 +1521,7 @@
"ext-gmp": "to improve IPV4 host parsing",
"ext-intl": "to handle IDN host with the best performance",
"php-64bit": "to improve IPV4 host parsing",
- "rowbot/url": "to handle WHATWG URL",
+ "rowbot/url": "to handle URLs using the WHATWG URL Living Standard specification",
"symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
},
"type": "library",
@@ -1565,7 +1571,7 @@
"docs": "https://uri.thephpleague.com",
"forum": "https://thephpleague.slack.com",
"issues": "https://github.com/thephpleague/uri-src/issues",
- "source": "https://github.com/thephpleague/uri-interfaces/tree/7.7.0"
+ "source": "https://github.com/thephpleague/uri-interfaces/tree/7.8.1"
},
"funding": [
{
@@ -1573,20 +1579,20 @@
"type": "github"
}
],
- "time": "2025-12-07T16:03:21+00:00"
+ "time": "2026-03-08T20:05:35+00:00"
},
{
"name": "netresearch/jsonmapper",
- "version": "v5.0.0",
+ "version": "v5.0.1",
"source": {
"type": "git",
"url": "https://github.com/cweiske/jsonmapper.git",
- "reference": "8c64d8d444a5d764c641ebe97e0e3bc72b25bf6c"
+ "reference": "980674efdda65913492d29a8fd51c82270dd37bb"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/8c64d8d444a5d764c641ebe97e0e3bc72b25bf6c",
- "reference": "8c64d8d444a5d764c641ebe97e0e3bc72b25bf6c",
+ "url": "https://api.github.com/repos/cweiske/jsonmapper/zipball/980674efdda65913492d29a8fd51c82270dd37bb",
+ "reference": "980674efdda65913492d29a8fd51c82270dd37bb",
"shasum": ""
},
"require": {
@@ -1622,9 +1628,9 @@
"support": {
"email": "cweiske@cweiske.de",
"issues": "https://github.com/cweiske/jsonmapper/issues",
- "source": "https://github.com/cweiske/jsonmapper/tree/v5.0.0"
+ "source": "https://github.com/cweiske/jsonmapper/tree/v5.0.1"
},
- "time": "2024-09-08T10:20:00+00:00"
+ "time": "2026-02-22T16:28:03+00:00"
},
{
"name": "nikic/php-parser",
@@ -1739,16 +1745,16 @@
},
{
"name": "phpdocumentor/reflection-docblock",
- "version": "5.6.6",
+ "version": "6.0.3",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
- "reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8"
+ "reference": "7bae67520aa9f5ecc506d646810bd40d9da54582"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/5cee1d3dfc2d2aa6599834520911d246f656bcb8",
- "reference": "5cee1d3dfc2d2aa6599834520911d246f656bcb8",
+ "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/7bae67520aa9f5ecc506d646810bd40d9da54582",
+ "reference": "7bae67520aa9f5ecc506d646810bd40d9da54582",
"shasum": ""
},
"require": {
@@ -1756,8 +1762,8 @@
"ext-filter": "*",
"php": "^7.4 || ^8.0",
"phpdocumentor/reflection-common": "^2.2",
- "phpdocumentor/type-resolver": "^1.7",
- "phpstan/phpdoc-parser": "^1.7|^2.0",
+ "phpdocumentor/type-resolver": "^2.0",
+ "phpstan/phpdoc-parser": "^2.0",
"webmozart/assert": "^1.9.1 || ^2"
},
"require-dev": {
@@ -1767,7 +1773,8 @@
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpunit/phpunit": "^9.5",
- "psalm/phar": "^5.26"
+ "psalm/phar": "^5.26",
+ "shipmonk/dead-code-detector": "^0.5.1"
},
"type": "library",
"extra": {
@@ -1797,44 +1804,44 @@
"description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
"support": {
"issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
- "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.6"
+ "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/6.0.3"
},
- "time": "2025-12-22T21:13:58+00:00"
+ "time": "2026-03-18T20:49:53+00:00"
},
{
"name": "phpdocumentor/type-resolver",
- "version": "1.12.0",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/phpDocumentor/TypeResolver.git",
- "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195"
+ "reference": "327a05bbee54120d4786a0dc67aad30226ad4cf9"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/92a98ada2b93d9b201a613cb5a33584dde25f195",
- "reference": "92a98ada2b93d9b201a613cb5a33584dde25f195",
+ "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/327a05bbee54120d4786a0dc67aad30226ad4cf9",
+ "reference": "327a05bbee54120d4786a0dc67aad30226ad4cf9",
"shasum": ""
},
"require": {
"doctrine/deprecations": "^1.0",
- "php": "^7.3 || ^8.0",
+ "php": "^7.4 || ^8.0",
"phpdocumentor/reflection-common": "^2.0",
- "phpstan/phpdoc-parser": "^1.18|^2.0"
+ "phpstan/phpdoc-parser": "^2.0"
},
"require-dev": {
"ext-tokenizer": "*",
"phpbench/phpbench": "^1.2",
- "phpstan/extension-installer": "^1.1",
- "phpstan/phpstan": "^1.8",
- "phpstan/phpstan-phpunit": "^1.1",
+ "phpstan/extension-installer": "^1.4",
+ "phpstan/phpstan": "^2.1",
+ "phpstan/phpstan-phpunit": "^2.0",
"phpunit/phpunit": "^9.5",
- "rector/rector": "^0.13.9",
- "vimeo/psalm": "^4.25"
+ "psalm/phar": "^4"
},
"type": "library",
"extra": {
"branch-alias": {
- "dev-1.x": "1.x-dev"
+ "dev-1.x": "1.x-dev",
+ "dev-2.x": "2.x-dev"
}
},
"autoload": {
@@ -1855,22 +1862,22 @@
"description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
"support": {
"issues": "https://github.com/phpDocumentor/TypeResolver/issues",
- "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.12.0"
+ "source": "https://github.com/phpDocumentor/TypeResolver/tree/2.0.0"
},
- "time": "2025-11-21T15:09:14+00:00"
+ "time": "2026-01-06T21:53:42+00:00"
},
{
"name": "phpstan/phpdoc-parser",
- "version": "2.3.0",
+ "version": "2.3.2",
"source": {
"type": "git",
"url": "https://github.com/phpstan/phpdoc-parser.git",
- "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
+ "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
- "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
+ "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/a004701b11273a26cd7955a61d67a7f1e525a45a",
+ "reference": "a004701b11273a26cd7955a61d67a7f1e525a45a",
"shasum": ""
},
"require": {
@@ -1902,9 +1909,9 @@
"description": "PHPDoc parser with support for nullable, intersection and generic types",
"support": {
"issues": "https://github.com/phpstan/phpdoc-parser/issues",
- "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
+ "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.2"
},
- "time": "2025-08-30T15:50:23+00:00"
+ "time": "2026-01-25T14:56:51+00:00"
},
{
"name": "psr/container",
@@ -2119,16 +2126,16 @@
},
{
"name": "revolt/event-loop",
- "version": "v1.0.8",
+ "version": "v1.0.9",
"source": {
"type": "git",
"url": "https://github.com/revoltphp/event-loop.git",
- "reference": "b6fc06dce8e9b523c9946138fa5e62181934f91c"
+ "reference": "44061cf513e53c6200372fc935ac42271566295d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/b6fc06dce8e9b523c9946138fa5e62181934f91c",
- "reference": "b6fc06dce8e9b523c9946138fa5e62181934f91c",
+ "url": "https://api.github.com/repos/revoltphp/event-loop/zipball/44061cf513e53c6200372fc935ac42271566295d",
+ "reference": "44061cf513e53c6200372fc935ac42271566295d",
"shasum": ""
},
"require": {
@@ -2138,7 +2145,7 @@
"ext-json": "*",
"jetbrains/phpstorm-stubs": "^2019.3",
"phpunit/phpunit": "^9",
- "psalm/phar": "^5.15"
+ "psalm/phar": "6.16.*"
},
"type": "library",
"extra": {
@@ -2185,9 +2192,9 @@
],
"support": {
"issues": "https://github.com/revoltphp/event-loop/issues",
- "source": "https://github.com/revoltphp/event-loop/tree/v1.0.8"
+ "source": "https://github.com/revoltphp/event-loop/tree/v1.0.9"
},
- "time": "2025-08-27T21:33:23+00:00"
+ "time": "2026-05-16T17:55:38+00:00"
},
{
"name": "sebastian/diff",
@@ -2326,16 +2333,16 @@
},
{
"name": "symfony/console",
- "version": "v6.4.30",
+ "version": "v6.4.41",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
- "reference": "1b2813049506b39eb3d7e64aff033fd5ca26c97e"
+ "reference": "d21b17ed158e79180fac3895ff751707970eeb57"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/console/zipball/1b2813049506b39eb3d7e64aff033fd5ca26c97e",
- "reference": "1b2813049506b39eb3d7e64aff033fd5ca26c97e",
+ "url": "https://api.github.com/repos/symfony/console/zipball/d21b17ed158e79180fac3895ff751707970eeb57",
+ "reference": "d21b17ed158e79180fac3895ff751707970eeb57",
"shasum": ""
},
"require": {
@@ -2400,7 +2407,7 @@
"terminal"
],
"support": {
- "source": "https://github.com/symfony/console/tree/v6.4.30"
+ "source": "https://github.com/symfony/console/tree/v6.4.41"
},
"funding": [
{
@@ -2420,20 +2427,20 @@
"type": "tidelift"
}
],
- "time": "2025-12-05T13:47:41+00:00"
+ "time": "2026-05-24T08:48:41+00:00"
},
{
"name": "symfony/deprecation-contracts",
- "version": "v3.6.0",
+ "version": "v3.7.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/deprecation-contracts.git",
- "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
+ "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
- "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
+ "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/50f59d1f3ca46d41ac911f97a78626b6756af35b",
+ "reference": "50f59d1f3ca46d41ac911f97a78626b6756af35b",
"shasum": ""
},
"require": {
@@ -2446,7 +2453,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.6-dev"
+ "dev-main": "3.7-dev"
}
},
"autoload": {
@@ -2471,7 +2478,7 @@
"description": "A generic function and convention to trigger deprecation notices",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
+ "source": "https://github.com/symfony/deprecation-contracts/tree/v3.7.0"
},
"funding": [
{
@@ -2482,25 +2489,29 @@
"url": "https://github.com/fabpot",
"type": "github"
},
+ {
+ "url": "https://github.com/nicolas-grekas",
+ "type": "github"
+ },
{
"url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
"type": "tidelift"
}
],
- "time": "2024-09-25T14:21:43+00:00"
+ "time": "2026-04-13T15:52:40+00:00"
},
{
"name": "symfony/filesystem",
- "version": "v6.4.30",
+ "version": "v6.4.39",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
- "reference": "441c6b69f7222aadae7cbf5df588496d5ee37789"
+ "reference": "c507b077756b4e3e09adbbe7975fac81cd3722ca"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/filesystem/zipball/441c6b69f7222aadae7cbf5df588496d5ee37789",
- "reference": "441c6b69f7222aadae7cbf5df588496d5ee37789",
+ "url": "https://api.github.com/repos/symfony/filesystem/zipball/c507b077756b4e3e09adbbe7975fac81cd3722ca",
+ "reference": "c507b077756b4e3e09adbbe7975fac81cd3722ca",
"shasum": ""
},
"require": {
@@ -2537,7 +2548,7 @@
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
- "source": "https://github.com/symfony/filesystem/tree/v6.4.30"
+ "source": "https://github.com/symfony/filesystem/tree/v6.4.39"
},
"funding": [
{
@@ -2557,20 +2568,20 @@
"type": "tidelift"
}
],
- "time": "2025-11-26T14:43:45+00:00"
+ "time": "2026-05-07T13:11:42+00:00"
},
{
"name": "symfony/polyfill-ctype",
- "version": "v1.33.0",
+ "version": "v1.37.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-ctype.git",
- "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
+ "reference": "141046a8f9477948ff284fa65be2095baafb94f2"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
- "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
+ "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/141046a8f9477948ff284fa65be2095baafb94f2",
+ "reference": "141046a8f9477948ff284fa65be2095baafb94f2",
"shasum": ""
},
"require": {
@@ -2620,7 +2631,7 @@
"portable"
],
"support": {
- "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-ctype/tree/v1.37.0"
},
"funding": [
{
@@ -2640,20 +2651,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2026-04-10T16:19:22+00:00"
},
{
"name": "symfony/polyfill-intl-grapheme",
- "version": "v1.33.0",
+ "version": "v1.38.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-grapheme.git",
- "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
+ "reference": "e9247d281d694a5120554d9afaf54e070e88a603"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
- "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/e9247d281d694a5120554d9afaf54e070e88a603",
+ "reference": "e9247d281d694a5120554d9afaf54e070e88a603",
"shasum": ""
},
"require": {
@@ -2702,7 +2713,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.38.1"
},
"funding": [
{
@@ -2722,20 +2733,20 @@
"type": "tidelift"
}
],
- "time": "2025-06-27T09:58:17+00:00"
+ "time": "2026-05-26T05:58:03+00:00"
},
{
"name": "symfony/polyfill-intl-normalizer",
- "version": "v1.33.0",
+ "version": "v1.38.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-intl-normalizer.git",
- "reference": "3833d7255cc303546435cb650316bff708a1c75c"
+ "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
- "reference": "3833d7255cc303546435cb650316bff708a1c75c",
+ "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/2d446c214bdbe5b71bde5011b060a05fece3ae6b",
+ "reference": "2d446c214bdbe5b71bde5011b060a05fece3ae6b",
"shasum": ""
},
"require": {
@@ -2787,7 +2798,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.38.0"
},
"funding": [
{
@@ -2807,20 +2818,20 @@
"type": "tidelift"
}
],
- "time": "2024-09-09T11:45:10+00:00"
+ "time": "2026-05-25T13:48:31+00:00"
},
{
"name": "symfony/polyfill-mbstring",
- "version": "v1.33.0",
+ "version": "v1.38.2",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-mbstring.git",
- "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
+ "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
- "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
+ "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6",
+ "reference": "d3d318bad5e7a1bfbd026009c8bfb8d8f99ae6b6",
"shasum": ""
},
"require": {
@@ -2872,7 +2883,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.38.2"
},
"funding": [
{
@@ -2892,20 +2903,20 @@
"type": "tidelift"
}
],
- "time": "2024-12-23T08:48:59+00:00"
+ "time": "2026-05-27T06:59:30+00:00"
},
{
"name": "symfony/polyfill-php84",
- "version": "v1.33.0",
+ "version": "v1.38.1",
"source": {
"type": "git",
"url": "https://github.com/symfony/polyfill-php84.git",
- "reference": "d8ced4d875142b6a7426000426b8abc631d6b191"
+ "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/d8ced4d875142b6a7426000426b8abc631d6b191",
- "reference": "d8ced4d875142b6a7426000426b8abc631d6b191",
+ "url": "https://api.github.com/repos/symfony/polyfill-php84/zipball/f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa",
+ "reference": "f4e1dfaee5b74aba5964fe1fd4dfc7ba5e3085fa",
"shasum": ""
},
"require": {
@@ -2952,7 +2963,7 @@
"shim"
],
"support": {
- "source": "https://github.com/symfony/polyfill-php84/tree/v1.33.0"
+ "source": "https://github.com/symfony/polyfill-php84/tree/v1.38.1"
},
"funding": [
{
@@ -2972,20 +2983,20 @@
"type": "tidelift"
}
],
- "time": "2025-06-24T13:30:11+00:00"
+ "time": "2026-05-26T12:51:13+00:00"
},
{
"name": "symfony/service-contracts",
- "version": "v3.6.1",
+ "version": "v3.7.0",
"source": {
"type": "git",
"url": "https://github.com/symfony/service-contracts.git",
- "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43"
+ "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/service-contracts/zipball/45112560a3ba2d715666a509a0bc9521d10b6c43",
- "reference": "45112560a3ba2d715666a509a0bc9521d10b6c43",
+ "url": "https://api.github.com/repos/symfony/service-contracts/zipball/d25d82433a80eba6aa0e6c24b61d7370d99e444a",
+ "reference": "d25d82433a80eba6aa0e6c24b61d7370d99e444a",
"shasum": ""
},
"require": {
@@ -3003,7 +3014,7 @@
"name": "symfony/contracts"
},
"branch-alias": {
- "dev-main": "3.6-dev"
+ "dev-main": "3.7-dev"
}
},
"autoload": {
@@ -3039,7 +3050,7 @@
"standards"
],
"support": {
- "source": "https://github.com/symfony/service-contracts/tree/v3.6.1"
+ "source": "https://github.com/symfony/service-contracts/tree/v3.7.0"
},
"funding": [
{
@@ -3059,20 +3070,20 @@
"type": "tidelift"
}
],
- "time": "2025-07-15T11:30:57+00:00"
+ "time": "2026-03-28T09:44:51+00:00"
},
{
"name": "symfony/string",
- "version": "v6.4.30",
+ "version": "v6.4.39",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
- "reference": "50590a057841fa6bf69d12eceffce3465b9e32cb"
+ "reference": "62e3c927de664edadb5bef260987eb047a17a113"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/symfony/string/zipball/50590a057841fa6bf69d12eceffce3465b9e32cb",
- "reference": "50590a057841fa6bf69d12eceffce3465b9e32cb",
+ "url": "https://api.github.com/repos/symfony/string/zipball/62e3c927de664edadb5bef260987eb047a17a113",
+ "reference": "62e3c927de664edadb5bef260987eb047a17a113",
"shasum": ""
},
"require": {
@@ -3128,7 +3139,7 @@
"utf8"
],
"support": {
- "source": "https://github.com/symfony/string/tree/v6.4.30"
+ "source": "https://github.com/symfony/string/tree/v6.4.39"
},
"funding": [
{
@@ -3148,20 +3159,20 @@
"type": "tidelift"
}
],
- "time": "2025-11-21T18:03:05+00:00"
+ "time": "2026-05-12T11:44:19+00:00"
},
{
"name": "vimeo/psalm",
- "version": "6.14.3",
+ "version": "6.16.1",
"source": {
"type": "git",
"url": "https://github.com/vimeo/psalm.git",
- "reference": "d0b040a91f280f071c1abcb1b77ce3822058725a"
+ "reference": "f1f5de594dc76faf8784e02d3dc4716c91c6f6ac"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/vimeo/psalm/zipball/d0b040a91f280f071c1abcb1b77ce3822058725a",
- "reference": "d0b040a91f280f071c1abcb1b77ce3822058725a",
+ "url": "https://api.github.com/repos/vimeo/psalm/zipball/f1f5de594dc76faf8784e02d3dc4716c91c6f6ac",
+ "reference": "f1f5de594dc76faf8784e02d3dc4716c91c6f6ac",
"shasum": ""
},
"require": {
@@ -3185,7 +3196,7 @@
"netresearch/jsonmapper": "^5.0",
"nikic/php-parser": "^5.0.0",
"php": "~8.1.31 || ~8.2.27 || ~8.3.16 || ~8.4.3 || ~8.5.0",
- "sebastian/diff": "^4.0 || ^5.0 || ^6.0 || ^7.0",
+ "sebastian/diff": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0",
"spatie/array-to-xml": "^2.17.0 || ^3.0",
"symfony/console": "^6.0 || ^7.0 || ^8.0",
"symfony/filesystem": "~6.3.12 || ~6.4.3 || ^7.0.3 || ^8.0",
@@ -3266,7 +3277,7 @@
"issues": "https://github.com/vimeo/psalm/issues",
"source": "https://github.com/vimeo/psalm"
},
- "time": "2025-12-23T15:36:48+00:00"
+ "time": "2026-03-19T10:56:09+00:00"
},
{
"name": "webmozart/assert",
@@ -3337,5 +3348,5 @@
"platform-overrides": {
"php": "8.1.33"
},
- "plugin-api-version": "2.6.0"
+ "plugin-api-version": "2.9.0"
}