diff --git a/.github/workflows/block-merge-freeze.yml b/.github/workflows/block-merge-freeze.yml
index 7957b626..f28a0210 100644
--- a/.github/workflows/block-merge-freeze.yml
+++ b/.github/workflows/block-merge-freeze.yml
@@ -29,12 +29,29 @@ jobs:
steps:
- name: Register server reference to fallback to master branch
- run: |
- server_ref="$(if [ '${{ github.base_ref }}' = 'main' ]; then echo -n 'master'; else echo -n '${{ github.base_ref }}'; fi)"
- echo "server_ref=$server_ref" >> $GITHUB_ENV
+ uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
+ with:
+ github-token: ${{secrets.GITHUB_TOKEN}}
+ script: |
+ const baseRef = context.payload.pull_request.base.ref
+ if (baseRef === 'main' || baseRef === 'master') {
+ core.exportVariable('server_ref', 'master');
+ console.log('Setting server_ref to master');
+ } else {
+ const regex = /^stable(\d+)$/
+ const match = baseRef.match(regex)
+ if (match) {
+ core.exportVariable('server_ref', match[0]);
+ console.log('Setting server_ref to ' + match[0]);
+ } else {
+ console.log('Not based on master/main/stable*, so skipping freeze check');
+ }
+ }
- name: Download version.php from ${{ env.server_ref }}
+ if: ${{ env.server_ref != '' }}
run: curl 'https://raw.githubusercontent.com/nextcloud/server/${{ env.server_ref }}/version.php' --output version.php
- name: Run check
+ if: ${{ env.server_ref != '' }}
run: cat version.php | grep 'OC_VersionString' | grep -i -v 'RC'
diff --git a/.github/workflows/dependabot-approve-merge.yml b/.github/workflows/dependabot-approve-merge.yml
index ff4417a8..ed902d92 100644
--- a/.github/workflows/dependabot-approve-merge.yml
+++ b/.github/workflows/dependabot-approve-merge.yml
@@ -24,7 +24,7 @@ concurrency:
jobs:
auto-approve-merge:
- if: github.actor == 'dependabot[bot]' || github.actor == 'renovate[bot]'
+ if: github.event.pull_request.user.login == 'dependabot[bot]' || github.event.pull_request.user.login == 'renovate[bot]'
runs-on: ubuntu-latest-low
permissions:
# for hmarr/auto-approve-action to approve PRs
diff --git a/.github/workflows/lint-php-cs.yml b/.github/workflows/lint-php-cs.yml
index 519b345e..b19b56f4 100644
--- a/.github/workflows/lint-php-cs.yml
+++ b/.github/workflows/lint-php-cs.yml
@@ -34,7 +34,7 @@ jobs:
uses: icewind1991/nextcloud-version-matrix@58becf3b4bb6dc6cef677b15e2fd8e7d48c0908f # v1.3.1
- name: Set up php${{ steps.versions.outputs.php-min }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
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
@@ -45,7 +45,7 @@ jobs:
- name: Install dependencies
run: |
- composer remove nextcloud/ocp --dev
+ composer remove nextcloud/ocp --dev --no-scripts
composer i
- name: Lint
diff --git a/.github/workflows/lint-php.yml b/.github/workflows/lint-php.yml
index adaa50b8..94de4b5f 100644
--- a/.github/workflows/lint-php.yml
+++ b/.github/workflows/lint-php.yml
@@ -48,7 +48,7 @@ jobs:
persist-credentials: false
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
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 d5487c6c..3eef2fa3 100644
--- a/.github/workflows/phpunit-mariadb.yml
+++ b/.github/workflows/phpunit-mariadb.yml
@@ -70,21 +70,22 @@ jobs:
matrix:
php-versions: ${{ fromJson(needs.matrix.outputs.php-version) }}
server-versions: ${{ fromJson(needs.matrix.outputs.server-max) }}
- mariadb-versions: ['10.6', '10.11']
+ mariadb-versions: ['10.6', '11.4']
name: MariaDB ${{ matrix.mariadb-versions }} PHP ${{ matrix.php-versions }} Nextcloud ${{ matrix.server-versions }}
services:
mariadb:
- image: ghcr.io/nextcloud/continuous-integration-mariadb-${{ matrix.mariadb-versions }}:latest
+ image: ghcr.io/nextcloud/continuous-integration-mariadb-${{ matrix.mariadb-versions }}:latest # zizmor: ignore[unpinned-images]
ports:
- 4444:3306/tcp
env:
- MYSQL_ROOT_PASSWORD: rootpassword
- options: --health-cmd="mysqladmin ping" --health-interval 5s --health-timeout 2s --health-retries 5
+ MARIADB_ROOT_PASSWORD: rootpassword
+ options: --health-cmd="mariadb-admin ping" --health-interval 5s --health-timeout 2s --health-retries 5
steps:
- name: Set app env
+ if: ${{ env.APP_NAME == '' }}
run: |
# Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
@@ -104,13 +105,15 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
with:
php-version: ${{ matrix.php-versions }}
# 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, mysql, pdo_mysql
coverage: none
ini-file: development
+ # Temporary workaround for missing pcntl_* in PHP 8.3
+ ini-values: disable_functions=
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -130,7 +133,7 @@ jobs:
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
- composer remove nextcloud/ocp --dev
+ composer remove nextcloud/ocp --dev --no-scripts
composer i
- name: Set up Nextcloud
diff --git a/.github/workflows/phpunit-mysql.yml b/.github/workflows/phpunit-mysql.yml
index 992a9196..9e4f1f88 100644
--- a/.github/workflows/phpunit-mysql.yml
+++ b/.github/workflows/phpunit-mysql.yml
@@ -74,7 +74,7 @@ jobs:
services:
mysql:
- image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest
+ image: ghcr.io/nextcloud/continuous-integration-mysql-${{ matrix.mysql-versions }}:latest # zizmor: ignore[unpinned-images]
ports:
- 4444:3306/tcp
env:
@@ -83,6 +83,7 @@ jobs:
steps:
- name: Set app env
+ if: ${{ env.APP_NAME == '' }}
run: |
# Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
@@ -102,13 +103,15 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
with:
php-version: ${{ matrix.php-versions }}
# 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, mysql, pdo_mysql
coverage: none
ini-file: development
+ # Temporary workaround for missing pcntl_* in PHP 8.3
+ ini-values: disable_functions=
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -128,7 +131,7 @@ jobs:
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
- composer remove nextcloud/ocp --dev
+ composer remove nextcloud/ocp --dev --no-scripts
composer i
- name: Set up Nextcloud
diff --git a/.github/workflows/phpunit-oci.yml b/.github/workflows/phpunit-oci.yml
index e0350b19..5c0f8489 100644
--- a/.github/workflows/phpunit-oci.yml
+++ b/.github/workflows/phpunit-oci.yml
@@ -96,6 +96,7 @@ jobs:
steps:
- name: Set app env
+ if: ${{ env.APP_NAME == '' }}
run: |
# Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
@@ -115,13 +116,15 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
with:
php-version: ${{ matrix.php-versions }}
# 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, oci8
coverage: none
ini-file: development
+ # Temporary workaround for missing pcntl_* in PHP 8.3
+ ini-values: disable_functions=
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -136,7 +139,7 @@ jobs:
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
- composer remove nextcloud/ocp --dev
+ composer remove nextcloud/ocp --dev --no-scripts
composer i
- name: Set up Nextcloud
diff --git a/.github/workflows/phpunit-pgsql.yml b/.github/workflows/phpunit-pgsql.yml
index a595c970..8de195d2 100644
--- a/.github/workflows/phpunit-pgsql.yml
+++ b/.github/workflows/phpunit-pgsql.yml
@@ -75,7 +75,7 @@ jobs:
services:
postgres:
- image: ghcr.io/nextcloud/continuous-integration-postgres-14:latest
+ image: ghcr.io/nextcloud/continuous-integration-postgres-16:latest # zizmor: ignore[unpinned-images]
ports:
- 4444:5432/tcp
env:
@@ -86,6 +86,7 @@ jobs:
steps:
- name: Set app env
+ if: ${{ env.APP_NAME == '' }}
run: |
# Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
@@ -105,13 +106,15 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
with:
php-version: ${{ matrix.php-versions }}
# 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, pgsql, pdo_pgsql
coverage: none
ini-file: development
+ # Temporary workaround for missing pcntl_* in PHP 8.3
+ ini-values: disable_functions=
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -126,7 +129,7 @@ jobs:
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
- composer remove nextcloud/ocp --dev
+ composer remove nextcloud/ocp --dev --no-scripts
composer i
- name: Set up Nextcloud
diff --git a/.github/workflows/phpunit-sqlite.yml b/.github/workflows/phpunit-sqlite.yml
index c08c6f15..9ddb9d21 100644
--- a/.github/workflows/phpunit-sqlite.yml
+++ b/.github/workflows/phpunit-sqlite.yml
@@ -75,6 +75,7 @@ jobs:
steps:
- name: Set app env
+ if: ${{ env.APP_NAME == '' }}
run: |
# Split and keep last
echo "APP_NAME=${GITHUB_REPOSITORY##*/}" >> $GITHUB_ENV
@@ -94,13 +95,15 @@ jobs:
path: apps/${{ env.APP_NAME }}
- name: Set up php ${{ matrix.php-versions }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
with:
php-version: ${{ matrix.php-versions }}
# 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
ini-file: development
+ # Temporary workaround for missing pcntl_* in PHP 8.3
+ ini-values: disable_functions=
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -115,7 +118,7 @@ jobs:
if: steps.check_composer.outputs.files_exists == 'true'
working-directory: apps/${{ env.APP_NAME }}
run: |
- composer remove nextcloud/ocp --dev
+ composer remove nextcloud/ocp --dev --no-scripts
composer i
- name: Set up Nextcloud
diff --git a/.github/workflows/pr-feedback.yml b/.github/workflows/pr-feedback.yml
index 6bf2137b..98e9fada 100644
--- a/.github/workflows/pr-feedback.yml
+++ b/.github/workflows/pr-feedback.yml
@@ -15,13 +15,17 @@ on:
schedule:
- cron: '30 1 * * *'
+permissions:
+ contents: read
+ pull-requests: write
+
jobs:
pr-feedback:
if: ${{ github.repository_owner == 'nextcloud' }}
runs-on: ubuntu-latest
steps:
- name: The get-github-handles-from-website action
- uses: marcelklehr/get-github-handles-from-website-action@a739600f6b91da4957f51db0792697afbb2f143c # v1.0.0
+ uses: marcelklehr/get-github-handles-from-website-action@06b2239db0a48fe1484ba0bfd966a3ab81a08308 # v1.0.1
id: scrape
with:
website: 'https://nextcloud.com/team/'
@@ -32,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: marcelklehr/pr-feedback-action@1883b38a033fb16f576875e0cf45f98b857655c4
+ - uses: nextcloud/pr-feedback-action@1883b38a033fb16f576875e0cf45f98b857655c4 # main
with:
feedback-message: |
Hello there,
diff --git a/.github/workflows/psalm.yml b/.github/workflows/psalm.yml
index 26116826..e2654e37 100644
--- a/.github/workflows/psalm.yml
+++ b/.github/workflows/psalm.yml
@@ -14,6 +14,9 @@ concurrency:
group: psalm-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
+permissions:
+ contents: read
+
jobs:
static-analysis:
runs-on: ubuntu-latest
@@ -33,18 +36,20 @@ jobs:
run: grep 'phpVersion="${{ steps.versions.outputs.php-min }}' psalm.xml
- name: Set up php${{ steps.versions.outputs.php-available }}
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
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
coverage: none
ini-file: development
+ # Temporary workaround for missing pcntl_* in PHP 8.3
+ ini-values: disable_functions=
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Install dependencies
run: |
- composer remove nextcloud/ocp --dev
+ composer remove nextcloud/ocp --dev --no-scripts
composer i
- name: Install nextcloud/ocp
diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml
index b6828556..95a8626a 100644
--- a/.github/workflows/reuse.yml
+++ b/.github/workflows/reuse.yml
@@ -11,9 +11,12 @@ name: REUSE Compliance Check
on: [pull_request]
+permissions:
+ contents: read
+
jobs:
reuse-compliance-check:
- runs-on: ubuntu-latest
+ runs-on: ubuntu-latest-low
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
diff --git a/.github/workflows/update-nextcloud-ocp-approve-merge.yml b/.github/workflows/update-nextcloud-ocp-approve-merge.yml
index 386b6316..dfe0ef4e 100644
--- a/.github/workflows/update-nextcloud-ocp-approve-merge.yml
+++ b/.github/workflows/update-nextcloud-ocp-approve-merge.yml
@@ -52,7 +52,7 @@ jobs:
# Enable GitHub auto merge
- name: Auto merge
- uses: alexwilson/enable-github-automerge-action@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # main
+ uses: alexwilson/enable-github-automerge-action@56e3117d1ae1540309dc8f7a9f2825bc3c5f06ff # v2.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 90abc74b..1e49dfaa 100644
--- a/.github/workflows/update-nextcloud-ocp.yml
+++ b/.github/workflows/update-nextcloud-ocp.yml
@@ -13,6 +13,9 @@ on:
schedule:
- cron: "5 2 * * 0"
+permissions:
+ contents: read
+
jobs:
update-nextcloud-ocp:
runs-on: ubuntu-latest
@@ -20,7 +23,7 @@ jobs:
strategy:
fail-fast: false
matrix:
- branches: ['main', 'master', 'stable30', 'stable29', 'stable28']
+ branches: ['main', 'master', 'stable31', 'stable30']
name: update-nextcloud-ocp-${{ matrix.branches }}
@@ -35,7 +38,7 @@ jobs:
- name: Set up php8.2
if: steps.checkout.outcome == 'success'
- uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231 # v2.31.1
+ uses: shivammathur/setup-php@cf4cade2721270509d5b1c766ab3549210a39a2a # v2.33.0
with:
php-version: 8.2
# https://docs.nextcloud.com/server/stable/admin_manual/installation/source_installation.html#prerequisites-for-manual-installation
@@ -104,7 +107,7 @@ jobs:
- name: Create Pull Request
if: steps.checkout.outcome == 'success'
- uses: peter-evans/create-pull-request@5e914681df9dc83aa4e4905692ca88beb2f9e91f # v7.0.5
+ uses: peter-evans/create-pull-request@271a8d0340265f705b14b6d32b9829c1cb33d45e # v7.0.8
with:
token: ${{ secrets.COMMAND_BOT_PAT }}
commit-message: 'chore(dev-deps): Bump nextcloud/ocp package'
diff --git a/composer.json b/composer.json
index a5916a76..d36d846b 100644
--- a/composer.json
+++ b/composer.json
@@ -1,10 +1,10 @@
{
"require-dev": {
"nextcloud/coding-standard": "^v1.1.1",
- "psalm/phar": "^5.15.0",
+ "psalm/phar": "~6.7.1",
"bantu/ini-get-wrapper": "v1.0.1",
"phpunit/phpunit": "^9.5",
- "nextcloud/ocp": "dev-master"
+ "nextcloud/ocp": "dev-stable31"
},
"scripts": {
"cs:check": "php-cs-fixer fix --dry-run --diff",
diff --git a/composer.lock b/composer.lock
index c3bd13ae..1ffee830 100644
--- a/composer.lock
+++ b/composer.lock
@@ -4,7 +4,7 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
- "content-hash": "7169b23761c42c98a32f33af7185e579",
+ "content-hash": "6ecdcc59d08d75813e9de6962f83c0b4",
"packages": [],
"packages-dev": [
{
@@ -43,30 +43,30 @@
},
{
"name": "doctrine/instantiator",
- "version": "1.5.0",
+ "version": "2.0.0",
"source": {
"type": "git",
"url": "https://github.com/doctrine/instantiator.git",
- "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
+ "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
- "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
+ "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
+ "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
"shasum": ""
},
"require": {
- "php": "^7.1 || ^8.0"
+ "php": "^8.1"
},
"require-dev": {
- "doctrine/coding-standard": "^9 || ^11",
+ "doctrine/coding-standard": "^11",
"ext-pdo": "*",
"ext-phar": "*",
- "phpbench/phpbench": "^0.16 || ^1",
- "phpstan/phpstan": "^1.4",
- "phpstan/phpstan-phpunit": "^1",
- "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
- "vimeo/psalm": "^4.30 || ^5.4"
+ "phpbench/phpbench": "^1.2",
+ "phpstan/phpstan": "^1.9.4",
+ "phpstan/phpstan-phpunit": "^1.3",
+ "phpunit/phpunit": "^9.5.27",
+ "vimeo/psalm": "^5.4"
},
"type": "library",
"autoload": {
@@ -93,7 +93,7 @@
],
"support": {
"issues": "https://github.com/doctrine/instantiator/issues",
- "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
+ "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
},
"funding": [
{
@@ -109,7 +109,7 @@
"type": "tidelift"
}
],
- "time": "2022-12-30T00:15:36+00:00"
+ "time": "2022-12-30T00:23:10+00:00"
},
{
"name": "kubawerlos/php-cs-fixer-custom-fixers",
@@ -159,16 +159,16 @@
},
{
"name": "myclabs/deep-copy",
- "version": "1.11.1",
+ "version": "1.13.4",
"source": {
"type": "git",
"url": "https://github.com/myclabs/DeepCopy.git",
- "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
- "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
+ "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
+ "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
"shasum": ""
},
"require": {
@@ -176,11 +176,12 @@
},
"conflict": {
"doctrine/collections": "<1.6.8",
- "doctrine/common": "<2.13.3 || >=3,<3.2.2"
+ "doctrine/common": "<2.13.3 || >=3 <3.2.2"
},
"require-dev": {
"doctrine/collections": "^1.6.8",
"doctrine/common": "^2.13.3 || ^3.2.2",
+ "phpspec/prophecy": "^1.10",
"phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
},
"type": "library",
@@ -206,7 +207,7 @@
],
"support": {
"issues": "https://github.com/myclabs/DeepCopy/issues",
- "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
+ "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
},
"funding": [
{
@@ -214,7 +215,7 @@
"type": "tidelift"
}
],
- "time": "2023-03-08T13:26:56+00:00"
+ "time": "2025-08-01T08:46:24+00:00"
},
{
"name": "nextcloud/coding-standard",
@@ -260,30 +261,29 @@
},
{
"name": "nextcloud/ocp",
- "version": "dev-master",
+ "version": "dev-stable31",
"source": {
"type": "git",
"url": "https://github.com/nextcloud-deps/ocp.git",
- "reference": "ba6108b934c18b629f78c48cca3fc038087f0dec"
+ "reference": "b369e02e33a1b9327eb3c4c5f639135b66e7bc8f"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/ba6108b934c18b629f78c48cca3fc038087f0dec",
- "reference": "ba6108b934c18b629f78c48cca3fc038087f0dec",
+ "url": "https://api.github.com/repos/nextcloud-deps/ocp/zipball/b369e02e33a1b9327eb3c4c5f639135b66e7bc8f",
+ "reference": "b369e02e33a1b9327eb3c4c5f639135b66e7bc8f",
"shasum": ""
},
"require": {
- "php": "~8.1 || ~8.2 || ~8.3",
+ "php": "~8.1 || ~8.2 || ~8.3 || ~8.4",
"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": "31.0.0-dev"
+ "dev-stable31": "31.0.0-dev"
}
},
"notification-url": "https://packagist.org/downloads/",
@@ -303,22 +303,22 @@
"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/stable31"
},
- "time": "2025-01-17T00:42:09+00:00"
+ "time": "2026-02-06T01:05:41+00:00"
},
{
"name": "nikic/php-parser",
- "version": "v5.0.2",
+ "version": "v5.7.0",
"source": {
"type": "git",
"url": "https://github.com/nikic/PHP-Parser.git",
- "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
- "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
+ "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/dca41cd15c2ac9d055ad70dbfd011130757d1f82",
+ "reference": "dca41cd15c2ac9d055ad70dbfd011130757d1f82",
"shasum": ""
},
"require": {
@@ -329,7 +329,7 @@
},
"require-dev": {
"ircmaxell/php-yacc": "^0.0.7",
- "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
+ "phpunit/phpunit": "^9.0"
},
"bin": [
"bin/php-parse"
@@ -337,7 +337,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "5.0-dev"
+ "dev-master": "5.x-dev"
}
},
"autoload": {
@@ -361,9 +361,9 @@
],
"support": {
"issues": "https://github.com/nikic/PHP-Parser/issues",
- "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
+ "source": "https://github.com/nikic/PHP-Parser/tree/v5.7.0"
},
- "time": "2024-03-05T20:51:40+00:00"
+ "time": "2025-12-06T11:56:16+00:00"
},
{
"name": "phar-io/manifest",
@@ -537,35 +537,35 @@
},
{
"name": "phpunit/php-code-coverage",
- "version": "9.2.31",
+ "version": "9.2.32",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/php-code-coverage.git",
- "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965"
+ "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/48c34b5d8d983006bd2adc2d0de92963b9155965",
- "reference": "48c34b5d8d983006bd2adc2d0de92963b9155965",
+ "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
+ "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
"shasum": ""
},
"require": {
"ext-dom": "*",
"ext-libxml": "*",
"ext-xmlwriter": "*",
- "nikic/php-parser": "^4.18 || ^5.0",
+ "nikic/php-parser": "^4.19.1 || ^5.1.0",
"php": ">=7.3",
- "phpunit/php-file-iterator": "^3.0.3",
- "phpunit/php-text-template": "^2.0.2",
- "sebastian/code-unit-reverse-lookup": "^2.0.2",
- "sebastian/complexity": "^2.0",
- "sebastian/environment": "^5.1.2",
- "sebastian/lines-of-code": "^1.0.3",
- "sebastian/version": "^3.0.1",
- "theseer/tokenizer": "^1.2.0"
+ "phpunit/php-file-iterator": "^3.0.6",
+ "phpunit/php-text-template": "^2.0.4",
+ "sebastian/code-unit-reverse-lookup": "^2.0.3",
+ "sebastian/complexity": "^2.0.3",
+ "sebastian/environment": "^5.1.5",
+ "sebastian/lines-of-code": "^1.0.4",
+ "sebastian/version": "^3.0.2",
+ "theseer/tokenizer": "^1.2.3"
},
"require-dev": {
- "phpunit/phpunit": "^9.3"
+ "phpunit/phpunit": "^9.6"
},
"suggest": {
"ext-pcov": "PHP extension that provides line coverage",
@@ -574,7 +574,7 @@
"type": "library",
"extra": {
"branch-alias": {
- "dev-master": "9.2-dev"
+ "dev-main": "9.2.x-dev"
}
},
"autoload": {
@@ -603,7 +603,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
"security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
- "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.31"
+ "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
},
"funding": [
{
@@ -611,7 +611,7 @@
"type": "github"
}
],
- "time": "2024-03-02T06:37:42+00:00"
+ "time": "2024-08-22T04:23:01+00:00"
},
{
"name": "phpunit/php-file-iterator",
@@ -856,45 +856,45 @@
},
{
"name": "phpunit/phpunit",
- "version": "9.6.19",
+ "version": "9.6.34",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/phpunit.git",
- "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8"
+ "reference": "b36f02317466907a230d3aa1d34467041271ef4a"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1a54a473501ef4cdeaae4e06891674114d79db8",
- "reference": "a1a54a473501ef4cdeaae4e06891674114d79db8",
+ "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/b36f02317466907a230d3aa1d34467041271ef4a",
+ "reference": "b36f02317466907a230d3aa1d34467041271ef4a",
"shasum": ""
},
"require": {
- "doctrine/instantiator": "^1.3.1 || ^2",
+ "doctrine/instantiator": "^1.5.0 || ^2",
"ext-dom": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mbstring": "*",
"ext-xml": "*",
"ext-xmlwriter": "*",
- "myclabs/deep-copy": "^1.10.1",
- "phar-io/manifest": "^2.0.3",
- "phar-io/version": "^3.0.2",
+ "myclabs/deep-copy": "^1.13.4",
+ "phar-io/manifest": "^2.0.4",
+ "phar-io/version": "^3.2.1",
"php": ">=7.3",
- "phpunit/php-code-coverage": "^9.2.28",
- "phpunit/php-file-iterator": "^3.0.5",
+ "phpunit/php-code-coverage": "^9.2.32",
+ "phpunit/php-file-iterator": "^3.0.6",
"phpunit/php-invoker": "^3.1.1",
- "phpunit/php-text-template": "^2.0.3",
- "phpunit/php-timer": "^5.0.2",
- "sebastian/cli-parser": "^1.0.1",
- "sebastian/code-unit": "^1.0.6",
- "sebastian/comparator": "^4.0.8",
- "sebastian/diff": "^4.0.3",
- "sebastian/environment": "^5.1.3",
- "sebastian/exporter": "^4.0.5",
- "sebastian/global-state": "^5.0.1",
- "sebastian/object-enumerator": "^4.0.3",
- "sebastian/resource-operations": "^3.0.3",
- "sebastian/type": "^3.2",
+ "phpunit/php-text-template": "^2.0.4",
+ "phpunit/php-timer": "^5.0.3",
+ "sebastian/cli-parser": "^1.0.2",
+ "sebastian/code-unit": "^1.0.8",
+ "sebastian/comparator": "^4.0.10",
+ "sebastian/diff": "^4.0.6",
+ "sebastian/environment": "^5.1.5",
+ "sebastian/exporter": "^4.0.8",
+ "sebastian/global-state": "^5.0.8",
+ "sebastian/object-enumerator": "^4.0.4",
+ "sebastian/resource-operations": "^3.0.4",
+ "sebastian/type": "^3.2.1",
"sebastian/version": "^3.0.2"
},
"suggest": {
@@ -939,7 +939,7 @@
"support": {
"issues": "https://github.com/sebastianbergmann/phpunit/issues",
"security": "https://github.com/sebastianbergmann/phpunit/security/policy",
- "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.19"
+ "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.34"
},
"funding": [
{
@@ -950,25 +950,33 @@
"url": "https://github.com/sebastianbergmann",
"type": "github"
},
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
{
"url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
"type": "tidelift"
}
],
- "time": "2024-04-05T04:35:58+00:00"
+ "time": "2026-01-27T05:45:00+00:00"
},
{
"name": "psalm/phar",
- "version": "5.26.1",
+ "version": "6.7.1",
"source": {
"type": "git",
"url": "https://github.com/psalm/phar.git",
- "reference": "8a38e7ad04499a0ccd2c506fd1da6fc01fff4547"
+ "reference": "a7112d33cfd48d857c2eb730ea642046d21bbdf5"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/psalm/phar/zipball/8a38e7ad04499a0ccd2c506fd1da6fc01fff4547",
- "reference": "8a38e7ad04499a0ccd2c506fd1da6fc01fff4547",
+ "url": "https://api.github.com/repos/psalm/phar/zipball/a7112d33cfd48d857c2eb730ea642046d21bbdf5",
+ "reference": "a7112d33cfd48d857c2eb730ea642046d21bbdf5",
"shasum": ""
},
"require": {
@@ -988,9 +996,9 @@
"description": "Composer-based Psalm Phar",
"support": {
"issues": "https://github.com/psalm/phar/issues",
- "source": "https://github.com/psalm/phar/tree/5.26.1"
+ "source": "https://github.com/psalm/phar/tree/6.7.1"
},
- "time": "2024-09-09T16:22:43+00:00"
+ "time": "2025-02-17T10:54:35+00:00"
},
{
"name": "psr/clock",
@@ -1362,16 +1370,16 @@
},
{
"name": "sebastian/comparator",
- "version": "4.0.8",
+ "version": "4.0.10",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/comparator.git",
- "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
+ "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
- "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
+ "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/e4df00b9b3571187db2831ae9aada2c6efbd715d",
+ "reference": "e4df00b9b3571187db2831ae9aada2c6efbd715d",
"shasum": ""
},
"require": {
@@ -1424,15 +1432,27 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/comparator/issues",
- "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
+ "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.10"
},
"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": "2022-09-14T12:41:17+00:00"
+ "time": "2026-01-24T09:22:56+00:00"
},
{
"name": "sebastian/complexity",
@@ -1622,16 +1642,16 @@
},
{
"name": "sebastian/exporter",
- "version": "4.0.6",
+ "version": "4.0.8",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/exporter.git",
- "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
+ "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
- "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
+ "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/14c6ba52f95a36c3d27c835d65efc7123c446e8c",
+ "reference": "14c6ba52f95a36c3d27c835d65efc7123c446e8c",
"shasum": ""
},
"require": {
@@ -1687,28 +1707,40 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/exporter/issues",
- "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
+ "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.8"
},
"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-02T06:33:00+00:00"
+ "time": "2025-09-24T06:03:27+00:00"
},
{
"name": "sebastian/global-state",
- "version": "5.0.7",
+ "version": "5.0.8",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/global-state.git",
- "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
+ "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
- "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
+ "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
+ "reference": "b6781316bdcd28260904e7cc18ec983d0d2ef4f6",
"shasum": ""
},
"require": {
@@ -1751,15 +1783,27 @@
],
"support": {
"issues": "https://github.com/sebastianbergmann/global-state/issues",
- "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
+ "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.8"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
+ "type": "tidelift"
}
],
- "time": "2024-03-02T06:35:11+00:00"
+ "time": "2025-08-10T07:10:35+00:00"
},
{
"name": "sebastian/lines-of-code",
@@ -1932,16 +1976,16 @@
},
{
"name": "sebastian/recursion-context",
- "version": "4.0.5",
+ "version": "4.0.6",
"source": {
"type": "git",
"url": "https://github.com/sebastianbergmann/recursion-context.git",
- "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
+ "reference": "539c6691e0623af6dc6f9c20384c120f963465a0"
},
"dist": {
"type": "zip",
- "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
- "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
+ "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/539c6691e0623af6dc6f9c20384c120f963465a0",
+ "reference": "539c6691e0623af6dc6f9c20384c120f963465a0",
"shasum": ""
},
"require": {
@@ -1983,15 +2027,27 @@
"homepage": "https://github.com/sebastianbergmann/recursion-context",
"support": {
"issues": "https://github.com/sebastianbergmann/recursion-context/issues",
- "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
+ "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.6"
},
"funding": [
{
"url": "https://github.com/sebastianbergmann",
"type": "github"
+ },
+ {
+ "url": "https://liberapay.com/sebastianbergmann",
+ "type": "liberapay"
+ },
+ {
+ "url": "https://thanks.dev/u/gh/sebastianbergmann",
+ "type": "thanks_dev"
+ },
+ {
+ "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
+ "type": "tidelift"
}
],
- "time": "2023-02-03T06:07:39+00:00"
+ "time": "2025-08-10T06:57:39+00:00"
},
{
"name": "sebastian/resource-operations",
@@ -2158,16 +2214,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": {
@@ -2196,7 +2252,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": [
{
@@ -2204,7 +2260,7 @@
"type": "github"
}
],
- "time": "2024-03-03T12:36:25+00:00"
+ "time": "2025-11-17T20:03:58+00:00"
}
],
"aliases": [],
@@ -2219,5 +2275,5 @@
"platform-overrides": {
"php": "8.1"
},
- "plugin-api-version": "2.6.0"
+ "plugin-api-version": "2.9.0"
}
diff --git a/l10n/af.js b/l10n/af.js
index 7fd5cdcc..ddce859c 100644
--- a/l10n/af.js
+++ b/l10n/af.js
@@ -13,6 +13,7 @@ OC.L10N.register(
"Users:" : "Gebruikers:",
"PHP" : "PHP",
"Version:" : "Weergawe:",
+ "seconds" : "sekondes",
"Database" : "Databasis",
"Type:" : "Tipe:",
"Copy" : "Kopieer"
diff --git a/l10n/af.json b/l10n/af.json
index 64b5e342..f8d55c90 100644
--- a/l10n/af.json
+++ b/l10n/af.json
@@ -11,6 +11,7 @@
"Users:" : "Gebruikers:",
"PHP" : "PHP",
"Version:" : "Weergawe:",
+ "seconds" : "sekondes",
"Database" : "Databasis",
"Type:" : "Tipe:",
"Copy" : "Kopieer"
diff --git a/l10n/ar.js b/l10n/ar.js
index af406688..5a9fa02d 100644
--- a/l10n/ar.js
+++ b/l10n/ar.js
@@ -15,13 +15,13 @@ OC.L10N.register(
"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 laod، و استخدامات ذاكرة الوصول العشوائي RAM usage، و استخدامات القرص disk usage، و عدد المستخدمين، و غيرها.",
"Operating System:" : "نظام التشغيل:",
"CPU:" : "وحدة الذاكرة المركزية CPU:",
- "Unknown Processor" : "معالِج غير معروف",
"Memory:" : "الذاكرة:",
"Server time:" : "وقت الخادم:",
"Uptime:" : "مدة استمرارية التشغل uptime:",
@@ -64,11 +64,25 @@ OC.L10N.register(
"Version:" : "الأصدار:",
"Memory limit:" : "حد الذاكرة:",
"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:" : "اسم الحشد:",
+ "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:" : "أقصى عدد من الأطفال يتم الوصول إليهم:",
"Database" : "قاعدة البيانات",
"Type:" : "النوع:",
"External monitoring tool" : "أداة الرصد الخارجية",
@@ -79,11 +93,6 @@ OC.L10N.register(
"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 أعلاه.",
- "Load average: {cpu} (last minute)" : "مُعدَّل التحميل: {cpu} (last minute)",
- "DNS:" : "نظام تسمية النطاقات DNS:",
- "Total users:" : "العدد الإجمالي للمستخدمين:",
- "24 hours:" : "24 ساعة",
- "1 hour:" : "1 ساعة:",
- "5 mins:" : "5 دقائق:"
+ "Unknown Processor" : "معالِج غير معروف"
},
"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 f407f803..fe2e0f8e 100644
--- a/l10n/ar.json
+++ b/l10n/ar.json
@@ -13,13 +13,13 @@
"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 laod، و استخدامات ذاكرة الوصول العشوائي RAM usage، و استخدامات القرص disk usage، و عدد المستخدمين، و غيرها.",
"Operating System:" : "نظام التشغيل:",
"CPU:" : "وحدة الذاكرة المركزية CPU:",
- "Unknown Processor" : "معالِج غير معروف",
"Memory:" : "الذاكرة:",
"Server time:" : "وقت الخادم:",
"Uptime:" : "مدة استمرارية التشغل uptime:",
@@ -62,11 +62,25 @@
"Version:" : "الأصدار:",
"Memory limit:" : "حد الذاكرة:",
"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:" : "اسم الحشد:",
+ "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:" : "أقصى عدد من الأطفال يتم الوصول إليهم:",
"Database" : "قاعدة البيانات",
"Type:" : "النوع:",
"External monitoring tool" : "أداة الرصد الخارجية",
@@ -77,11 +91,6 @@
"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 أعلاه.",
- "Load average: {cpu} (last minute)" : "مُعدَّل التحميل: {cpu} (last minute)",
- "DNS:" : "نظام تسمية النطاقات DNS:",
- "Total users:" : "العدد الإجمالي للمستخدمين:",
- "24 hours:" : "24 ساعة",
- "1 hour:" : "1 ساعة:",
- "5 mins:" : "5 دقائق:"
+ "Unknown Processor" : "معالِج غير معروف"
},"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 8d560767..280855a2 100644
--- a/l10n/ast.js
+++ b/l10n/ast.js
@@ -8,6 +8,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Supervisión",
"Operating System:" : "Sistema operativu",
@@ -41,16 +42,13 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Versión:",
"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",
- "Load average: {cpu} (last minute)" : "Carga media: {cpu} (l'últimu minutu)",
- "DNS:" : "DNS:",
- "24 hours:" : "24 hores:",
- "1 hour:" : "1 hora"
+ "Copy" : "Copiar"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/ast.json b/l10n/ast.json
index efd623b5..d58e225a 100644
--- a/l10n/ast.json
+++ b/l10n/ast.json
@@ -6,6 +6,7 @@
"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",
"Monitoring" : "Supervisión",
"Operating System:" : "Sistema operativu",
@@ -39,16 +40,13 @@
"PHP" : "PHP",
"Version:" : "Versión:",
"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",
- "Load average: {cpu} (last minute)" : "Carga media: {cpu} (l'últimu minutu)",
- "DNS:" : "DNS:",
- "24 hours:" : "24 hores:",
- "1 hour:" : "1 hora"
+ "Copy" : "Copiar"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/az.js b/l10n/az.js
index 1594dd55..b283fa5a 100644
--- a/l10n/az.js
+++ b/l10n/az.js
@@ -9,6 +9,7 @@ OC.L10N.register(
"Size:" : "Həcm:",
"Shares" : "Yayımlanmalar",
"PHP" : "PHP",
+ "seconds" : "saniyələr",
"Database" : "Verilənlər bazası",
"Type:" : "Tip:",
"Copy" : "Kopyala"
diff --git a/l10n/az.json b/l10n/az.json
index 255bce10..ec9b96dd 100644
--- a/l10n/az.json
+++ b/l10n/az.json
@@ -7,6 +7,7 @@
"Size:" : "Həcm:",
"Shares" : "Yayımlanmalar",
"PHP" : "PHP",
+ "seconds" : "saniyələr",
"Database" : "Verilənlər bazası",
"Type:" : "Tip:",
"Copy" : "Kopyala"
diff --git a/l10n/be.js b/l10n/be.js
index 2d8a5e96..e7348591 100644
--- a/l10n/be.js
+++ b/l10n/be.js
@@ -5,8 +5,19 @@ OC.L10N.register(
"Not supported!" : "Не падтрымліваецца!",
"Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.",
"Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.",
+ "Unknown" : "Невядомы",
+ "System" : "Сістэма",
+ "Operating System:" : "Аперацыйная сістэма:",
"Size:" : "Памер:",
+ "Last hour" : "Апошняя гадзіна",
+ "Last 24 Hours" : "Апошнія 24 гадзіны",
+ "Last 7 Days" : "Апошнія 7 дзён",
+ "Last 30 Days" : "Апошнія 30 дзён",
+ "seconds" : "с",
+ "Database" : "База даных",
"Type:" : "Тып:",
- "Copy" : "Капіяваць"
+ "Copy" : "Капіяваць",
+ "To use an access token, please generate one then set it using the following command:" : "Каб выкарыстоўваць токен доступу, стварыце яго, а затым задайце з дапамогай наступнай каманды:",
+ "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затым перадайце токен з загалоўкам \"NC-Token\" пры запыце вышэйпаказанага URL-адраса."
},
"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);");
diff --git a/l10n/be.json b/l10n/be.json
index d9e925a8..800a3037 100644
--- a/l10n/be.json
+++ b/l10n/be.json
@@ -3,8 +3,19 @@
"Not supported!" : "Не падтрымліваецца!",
"Press ⌘-C to copy." : "Націсніце ⌘-C для капіявання.",
"Press Ctrl-C to copy." : "Націсніце Ctrl-C для капіявання.",
+ "Unknown" : "Невядомы",
+ "System" : "Сістэма",
+ "Operating System:" : "Аперацыйная сістэма:",
"Size:" : "Памер:",
+ "Last hour" : "Апошняя гадзіна",
+ "Last 24 Hours" : "Апошнія 24 гадзіны",
+ "Last 7 Days" : "Апошнія 7 дзён",
+ "Last 30 Days" : "Апошнія 30 дзён",
+ "seconds" : "с",
+ "Database" : "База даных",
"Type:" : "Тып:",
- "Copy" : "Капіяваць"
+ "Copy" : "Капіяваць",
+ "To use an access token, please generate one then set it using the following command:" : "Каб выкарыстоўваць токен доступу, стварыце яго, а затым задайце з дапамогай наступнай каманды:",
+ "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Затым перадайце токен з загалоўкам \"NC-Token\" пры запыце вышэйпаказанага URL-адраса."
},"pluralForm" :"nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);"
}
\ No newline at end of file
diff --git a/l10n/bg.js b/l10n/bg.js
index 657dcaa0..a7f77ec3 100644
--- a/l10n/bg.js
+++ b/l10n/bg.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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." : "Предоставя полезна информация за сървъра, като натоварване на процесора, използване на RAM, използване на диск, брой потребители и др.",
"Operating System:" : "Операционна система:",
"CPU:" : "CPU /ПРОЦЕСОР/:",
- "Unknown Processor" : "Неизвестен процесор",
"Memory:" : "Памет:",
"Server time:" : "Време на сървъра:",
"Uptime:" : "Време на работа:",
@@ -43,6 +43,8 @@ OC.L10N.register(
"IPv6:" : "IPv6:",
"Active users" : "Активни потребители",
"Last hour" : "Последния час",
+ "Last 7 Days" : "Последните 7 дни",
+ "Last 30 Days" : "Последните 30 дни",
"Shares" : "Споделени папки",
"Users:" : "Потребители:",
"Groups:" : "Групи:",
@@ -55,6 +57,7 @@ OC.L10N.register(
"Version:" : "Версия:",
"Memory limit:" : "Ограничение на паметта:",
"Max execution time:" : "Максимално време за изпълнение:",
+ "seconds" : "секунди",
"Upload max size:" : "Максимално време за качване:",
"Extensions:" : "Разширения",
"Unable to list extensions" : "Невъзможност за изброяване на разширенията",
@@ -64,11 +67,6 @@ OC.L10N.register(
"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 адрес.",
- "Load average: {cpu} (last minute)" : "Средна стойност на зареждане: {cpu} (последната минута)",
- "DNS:" : "DNS:",
- "Total users:" : "Регистрирани:",
- "24 hours:" : "24 часа:",
- "1 hour:" : "1 час:",
- "5 mins:" : "5 минути:"
+ "Unknown Processor" : "Неизвестен процесор"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/bg.json b/l10n/bg.json
index ca264cd6..c8bf65bf 100644
--- a/l10n/bg.json
+++ b/l10n/bg.json
@@ -8,13 +8,13 @@
"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." : "Предоставя полезна информация за сървъра, като натоварване на процесора, използване на RAM, използване на диск, брой потребители и др.",
"Operating System:" : "Операционна система:",
"CPU:" : "CPU /ПРОЦЕСОР/:",
- "Unknown Processor" : "Неизвестен процесор",
"Memory:" : "Памет:",
"Server time:" : "Време на сървъра:",
"Uptime:" : "Време на работа:",
@@ -41,6 +41,8 @@
"IPv6:" : "IPv6:",
"Active users" : "Активни потребители",
"Last hour" : "Последния час",
+ "Last 7 Days" : "Последните 7 дни",
+ "Last 30 Days" : "Последните 30 дни",
"Shares" : "Споделени папки",
"Users:" : "Потребители:",
"Groups:" : "Групи:",
@@ -53,6 +55,7 @@
"Version:" : "Версия:",
"Memory limit:" : "Ограничение на паметта:",
"Max execution time:" : "Максимално време за изпълнение:",
+ "seconds" : "секунди",
"Upload max size:" : "Максимално време за качване:",
"Extensions:" : "Разширения",
"Unable to list extensions" : "Невъзможност за изброяване на разширенията",
@@ -62,11 +65,6 @@
"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 адрес.",
- "Load average: {cpu} (last minute)" : "Средна стойност на зареждане: {cpu} (последната минута)",
- "DNS:" : "DNS:",
- "Total users:" : "Регистрирани:",
- "24 hours:" : "24 часа:",
- "1 hour:" : "1 час:",
- "5 mins:" : "5 минути:"
+ "Unknown Processor" : "Неизвестен процесор"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/bn_BD.js b/l10n/bn_BD.js
index e92ac8de..17d2d516 100644
--- a/l10n/bn_BD.js
+++ b/l10n/bn_BD.js
@@ -5,9 +5,11 @@ OC.L10N.register(
"Not supported!" : "সমর্থিত নয়! ",
"Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।",
"Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।",
+ "Unknown" : "অজানা",
"Temperature" : "তাপমাত্রা",
"Size:" : "আয়তনঃ",
"Shares" : "ভাগাভাগি",
+ "seconds" : "সেকেন্ড",
"Type:" : "ধরণঃ"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/bn_BD.json b/l10n/bn_BD.json
index dc88418f..0dffcfa3 100644
--- a/l10n/bn_BD.json
+++ b/l10n/bn_BD.json
@@ -3,9 +3,11 @@
"Not supported!" : "সমর্থিত নয়! ",
"Press ⌘-C to copy." : "অনুলিপি করতে ⌘-C টিপুন।",
"Press Ctrl-C to copy." : "অনুলিপি করতে Ctrl-C টিপুন।",
+ "Unknown" : "অজানা",
"Temperature" : "তাপমাত্রা",
"Size:" : "আয়তনঃ",
"Shares" : "ভাগাভাগি",
+ "seconds" : "সেকেন্ড",
"Type:" : "ধরণঃ"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/br.js b/l10n/br.js
index 8bd7fd66..8f3f1660 100644
--- a/l10n/br.js
+++ b/l10n/br.js
@@ -3,11 +3,14 @@ OC.L10N.register(
{
"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ñ. ",
+ "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 cec8b236..d4bbe9ec 100644
--- a/l10n/br.json
+++ b/l10n/br.json
@@ -1,11 +1,14 @@
{ "translations": {
"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ñ. ",
+ "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 e2553a41..636b7557 100644
--- a/l10n/ca.js
+++ b/l10n/ca.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Processador desconegut",
"Memory:" : "Memòria:",
"Server time:" : "Hora del servidor:",
"Uptime:" : "Temps de funcionament:",
@@ -55,6 +55,7 @@ OC.L10N.register(
"Version:" : "Versió:",
"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",
@@ -64,11 +65,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Mitjana de càrrega: {cpu} (última hora)",
- "DNS:" : "DNS:",
- "Total users:" : "Total d'usuaris:",
- "24 hours:" : "24 hores:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 minuts:"
+ "Unknown Processor" : "Processador desconegut"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/ca.json b/l10n/ca.json
index a8e1c77d..a7a8e2d2 100644
--- a/l10n/ca.json
+++ b/l10n/ca.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Processador desconegut",
"Memory:" : "Memòria:",
"Server time:" : "Hora del servidor:",
"Uptime:" : "Temps de funcionament:",
@@ -53,6 +53,7 @@
"Version:" : "Versió:",
"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",
@@ -62,11 +63,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Mitjana de càrrega: {cpu} (última hora)",
- "DNS:" : "DNS:",
- "Total users:" : "Total d'usuaris:",
- "24 hours:" : "24 hores:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 minuts:"
+ "Unknown Processor" : "Processador desconegut"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/cs.js b/l10n/cs.js
index 13fab089..2fcbf906 100644
--- a/l10n/cs.js
+++ b/l10n/cs.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"Not supported!" : "Nepodporováno!",
"Press ⌘-C to copy." : "Zkopírujete stisknutím ⌘C.",
"Press Ctrl-C to copy." : "Zkopírujete stisknutím Ctrl+C.",
+ "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:",
- "Unknown Processor" : "Neznámý procesor",
+ "threads" : "vláken",
"Memory:" : "Operační paměť:",
"Server time:" : "Čas na serveru:",
"Uptime:" : "Doba chodu od minulého zapnutí:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Verze:",
"Memory limit:" : "Limit paměti:",
+ "MB" : "MB",
"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:",
+ "Pool type:" : "Typ fondu:",
+ "Start time:" : "Čas zahájení:",
+ "Accepted connections:" : "Přijatá připojení:",
+ "Total processes:" : "Celkem procesů:",
+ "Active processes:" : "Aktivních procesů:",
+ "Idle processes:" : "Neaktivních procesů:",
+ "Listen queue:" : "Fronta očekávání spojení:",
+ "Slow requests:" : "Pomalé požadavky:",
+ "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:",
"External monitoring tool" : "Externí nástroj pro dohledování",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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“.",
- "Load average: {cpu} (last minute)" : "Průměrné vytížení: {cpu} (za uplynulou minutu)",
- "DNS:" : "DNS:",
- "Total users:" : "Celkem uživatelů:",
- "24 hours:" : "24 hodin:",
- "1 hour:" : "1 hodina:",
- "5 mins:" : "5 minut:"
+ "Unknown Processor" : "Neznámý procesor"
},
"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 5d1f6aae..4510c2d6 100644
--- a/l10n/cs.json
+++ b/l10n/cs.json
@@ -13,13 +13,16 @@
"Not supported!" : "Nepodporováno!",
"Press ⌘-C to copy." : "Zkopírujete stisknutím ⌘C.",
"Press Ctrl-C to copy." : "Zkopírujete stisknutím Ctrl+C.",
+ "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:",
- "Unknown Processor" : "Neznámý procesor",
+ "threads" : "vláken",
"Memory:" : "Operační paměť:",
"Server time:" : "Čas na serveru:",
"Uptime:" : "Doba chodu od minulého zapnutí:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "Verze:",
"Memory limit:" : "Limit paměti:",
+ "MB" : "MB",
"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:",
+ "Pool type:" : "Typ fondu:",
+ "Start time:" : "Čas zahájení:",
+ "Accepted connections:" : "Přijatá připojení:",
+ "Total processes:" : "Celkem procesů:",
+ "Active processes:" : "Aktivních procesů:",
+ "Idle processes:" : "Neaktivních procesů:",
+ "Listen queue:" : "Fronta očekávání spojení:",
+ "Slow requests:" : "Pomalé požadavky:",
+ "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:",
"External monitoring tool" : "Externí nástroj pro dohledování",
@@ -77,11 +96,6 @@
"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“.",
- "Load average: {cpu} (last minute)" : "Průměrné vytížení: {cpu} (za uplynulou minutu)",
- "DNS:" : "DNS:",
- "Total users:" : "Celkem uživatelů:",
- "24 hours:" : "24 hodin:",
- "1 hour:" : "1 hodina:",
- "5 mins:" : "5 minut:"
+ "Unknown Processor" : "Neznámý procesor"
},"pluralForm" :"nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;"
}
\ No newline at end of file
diff --git a/l10n/cy_GB.js b/l10n/cy_GB.js
index 859ce467..ab9602f0 100644
--- a/l10n/cy_GB.js
+++ b/l10n/cy_GB.js
@@ -5,10 +5,12 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitro",
"Size:" : "Maint:",
"PHP" : "PHP",
+ "seconds" : "eiliad",
"Database" : "Cronfa ddata",
"Type:" : "Math:",
"Copy" : "Copïo"
diff --git a/l10n/cy_GB.json b/l10n/cy_GB.json
index 24e1e261..89cb7ca0 100644
--- a/l10n/cy_GB.json
+++ b/l10n/cy_GB.json
@@ -3,10 +3,12 @@
"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",
"Monitoring" : "Monitro",
"Size:" : "Maint:",
"PHP" : "PHP",
+ "seconds" : "eiliad",
"Database" : "Cronfa ddata",
"Type:" : "Math:",
"Copy" : "Copïo"
diff --git a/l10n/da.js b/l10n/da.js
index 9a227824..f1972728 100644
--- a/l10n/da.js
+++ b/l10n/da.js
@@ -2,34 +2,98 @@ 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",
"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",
"Load" : "Belastning",
"Memory" : "Hukommelse",
"Disk" : "Disk",
+ "Mount:" : "Montering:",
+ "Filesystem:" : "Filsystem:",
"Size:" : "Størrelse:",
+ "Available:" : "Tilgængelig:",
+ "Used:" : "Anvendt:",
"Files:" : "Filer:",
"Storages:" : "Lagre:",
"Free Space:" : "Ledig plads:",
"Network" : "Netværk",
+ "Hostname:" : "Hostnavn:",
+ "Gateway:" : "Gateway:",
+ "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:",
"PHP" : "PHP",
"Version:" : "Version:",
+ "Memory limit:" : "Hukommelsesgrænse:",
+ "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:",
+ "Pool type:" : "Pool type:",
+ "Start time:" : "Starttid:",
+ "Accepted connections:" : "Accepterede forbindelser:",
+ "Total processes:" : "Totale processer:",
+ "Active processes:" : "Aktive processer:",
+ "Idle processes:" : "Inaktive processer:",
+ "Listen queue:" : "Lyttekø:",
+ "Slow requests:" : "Langsomme forespørgsler:",
+ "Max listen queue:" : "Maks lyttekø:",
+ "Max active processes:" : "Maks aktive processer:",
+ "Max children reached:" : "Maks antal underprocesser nået:",
"Database" : "Database",
"Type:" : "Type:",
"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.",
- "Total users:" : "Antal brugere:"
+ "Unknown Processor" : "Ukendt processor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/da.json b/l10n/da.json
index 37696321..bf37dc77 100644
--- a/l10n/da.json
+++ b/l10n/da.json
@@ -1,33 +1,97 @@
{ "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",
"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",
"Load" : "Belastning",
"Memory" : "Hukommelse",
"Disk" : "Disk",
+ "Mount:" : "Montering:",
+ "Filesystem:" : "Filsystem:",
"Size:" : "Størrelse:",
+ "Available:" : "Tilgængelig:",
+ "Used:" : "Anvendt:",
"Files:" : "Filer:",
"Storages:" : "Lagre:",
"Free Space:" : "Ledig plads:",
"Network" : "Netværk",
+ "Hostname:" : "Hostnavn:",
+ "Gateway:" : "Gateway:",
+ "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:",
"PHP" : "PHP",
"Version:" : "Version:",
+ "Memory limit:" : "Hukommelsesgrænse:",
+ "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:",
+ "Pool type:" : "Pool type:",
+ "Start time:" : "Starttid:",
+ "Accepted connections:" : "Accepterede forbindelser:",
+ "Total processes:" : "Totale processer:",
+ "Active processes:" : "Aktive processer:",
+ "Idle processes:" : "Inaktive processer:",
+ "Listen queue:" : "Lyttekø:",
+ "Slow requests:" : "Langsomme forespørgsler:",
+ "Max listen queue:" : "Maks lyttekø:",
+ "Max active processes:" : "Maks aktive processer:",
+ "Max children reached:" : "Maks antal underprocesser nået:",
"Database" : "Database",
"Type:" : "Type:",
"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.",
- "Total users:" : "Antal brugere:"
+ "Unknown Processor" : "Ukendt processor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/de.js b/l10n/de.js
index ccf4a633..ebd6f6ed 100644
--- a/l10n/de.js
+++ b/l10n/de.js
@@ -3,8 +3,8 @@ OC.L10N.register(
{
"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",
+ "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}",
@@ -15,15 +15,18 @@ OC.L10N.register(
"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.",
+ "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:",
- "Unknown Processor" : "Unbekannter Prozessor",
+ "threads" : "Threads",
"Memory:" : "Speicher:",
- "Server time:" : "Server-Zeit:",
+ "Server time:" : "Serverzeit:",
"Uptime:" : "Betriebszeit:",
"Temperature" : "Temperatur",
"Load" : "Auslastung",
@@ -47,11 +50,11 @@ OC.L10N.register(
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
"Active users" : "Aktive Benutzer",
- "Last hour" : "Letzte Stunde",
+ "Last hour" : "In der letzten Stunde",
"%s%% of all users" : "%s%% aller Benutzer",
- "Last 24 Hours" : "Letzte 24 Stunden",
- "Last 7 Days" : "Die letzten 7 Tage",
- "Last 30 Days" : "Die letzten 30 Tage",
+ "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:",
@@ -63,27 +66,38 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Speicherlimit:",
+ "MB" : "MB",
"Max execution time:" : "Maximale Ausführungszeit:",
+ "seconds" : "Sekunden",
"Upload max size:" : "Maximale Größe zum Hochladen:",
"OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:",
"Extensions:" : "Erweiterungen:",
"Unable to list extensions" : "Erweiterungen konnten nicht aufgeführt werden",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "phpinfo anzeigen",
+ "FPM worker pool" : "FPM-Worker-Pool",
+ "Pool name:" : "Pool-Name:",
+ "Pool type:" : "Pool-Typ:",
+ "Start time:" : "Startzeit:",
+ "Accepted connections:" : "Akzeptierte Verbindungen:",
+ "Total processes:" : "Prozesse insgesamt:",
+ "Active processes:" : "Aktive Prozesse:",
+ "Idle processes:" : "Leerlaufprozesse:",
+ "Listen queue:" : "Warteschlange (Listen-Queue)",
+ "Slow requests:" : "Langsame Anfragen:",
+ "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):",
+ "Max active processes:" : "Maximal aktive Prozesse:",
+ "Max children reached:" : "Maximal erreichte Kindzahl:",
"Database" : "Datenbank",
"Type:" : "Art:",
"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 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.",
- "Load average: {cpu} (last minute)" : "Durchschnittliche Last: {cpu} (letzte Minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Benutzer gesamt:",
- "24 hours:" : "24 Stunden:",
- "1 hour:" : "1 Stunde:",
- "5 mins:" : "5 Minuten:"
+ "Unknown Processor" : "Unbekannter Prozessor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/de.json b/l10n/de.json
index 800ead67..82e7a004 100644
--- a/l10n/de.json
+++ b/l10n/de.json
@@ -1,8 +1,8 @@
{ "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",
+ "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}",
@@ -13,15 +13,18 @@
"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.",
+ "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:",
- "Unknown Processor" : "Unbekannter Prozessor",
+ "threads" : "Threads",
"Memory:" : "Speicher:",
- "Server time:" : "Server-Zeit:",
+ "Server time:" : "Serverzeit:",
"Uptime:" : "Betriebszeit:",
"Temperature" : "Temperatur",
"Load" : "Auslastung",
@@ -45,11 +48,11 @@
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
"Active users" : "Aktive Benutzer",
- "Last hour" : "Letzte Stunde",
+ "Last hour" : "In der letzten Stunde",
"%s%% of all users" : "%s%% aller Benutzer",
- "Last 24 Hours" : "Letzte 24 Stunden",
- "Last 7 Days" : "Die letzten 7 Tage",
- "Last 30 Days" : "Die letzten 30 Tage",
+ "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:",
@@ -61,27 +64,38 @@
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Speicherlimit:",
+ "MB" : "MB",
"Max execution time:" : "Maximale Ausführungszeit:",
+ "seconds" : "Sekunden",
"Upload max size:" : "Maximale Größe zum Hochladen:",
"OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:",
"Extensions:" : "Erweiterungen:",
"Unable to list extensions" : "Erweiterungen konnten nicht aufgeführt werden",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "phpinfo anzeigen",
+ "FPM worker pool" : "FPM-Worker-Pool",
+ "Pool name:" : "Pool-Name:",
+ "Pool type:" : "Pool-Typ:",
+ "Start time:" : "Startzeit:",
+ "Accepted connections:" : "Akzeptierte Verbindungen:",
+ "Total processes:" : "Prozesse insgesamt:",
+ "Active processes:" : "Aktive Prozesse:",
+ "Idle processes:" : "Leerlaufprozesse:",
+ "Listen queue:" : "Warteschlange (Listen-Queue)",
+ "Slow requests:" : "Langsame Anfragen:",
+ "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):",
+ "Max active processes:" : "Maximal aktive Prozesse:",
+ "Max children reached:" : "Maximal erreichte Kindzahl:",
"Database" : "Datenbank",
"Type:" : "Art:",
"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 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.",
- "Load average: {cpu} (last minute)" : "Durchschnittliche Last: {cpu} (letzte Minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Benutzer gesamt:",
- "24 hours:" : "24 Stunden:",
- "1 hour:" : "1 Stunde:",
- "5 mins:" : "5 Minuten:"
+ "Unknown Processor" : "Unbekannter Prozessor"
},"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 3c459d72..98de1b58 100644
--- a/l10n/de_DE.js
+++ b/l10n/de_DE.js
@@ -15,15 +15,18 @@ OC.L10N.register(
"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.",
+ "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:",
- "Unknown Processor" : "Unbekannter Prozessor",
+ "threads" : "Threads",
"Memory:" : "Speicher:",
- "Server time:" : "Server-Zeit:",
+ "Server time:" : "Serverzeit:",
"Uptime:" : "Betriebszeit:",
"Temperature" : "Temperatur",
"Load" : "Auslastung",
@@ -47,11 +50,11 @@ OC.L10N.register(
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
"Active users" : "Aktive Benutzer",
- "Last hour" : "Letzte Stunde",
+ "Last hour" : "In der letzten Stunde",
"%s%% of all users" : "%s%% aller Benutzer",
- "Last 24 Hours" : "Letzte 24 Stunden",
- "Last 7 Days" : "Die letzten 7 Tage",
- "Last 30 Days" : "Die letzten 30 Tage",
+ "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:",
@@ -63,27 +66,38 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Speicherlimit:",
+ "MB" : "MB",
"Max execution time:" : "Maximale Ausführungszeit:",
+ "seconds" : "Sekunden",
"Upload max size:" : "Maximale Größe zum Hochladen:",
"OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:",
"Extensions:" : "Erweiterungen:",
"Unable to list extensions" : "Erweiterungen können nicht aufgelistet werden",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "phpinfo anzeigen",
+ "FPM worker pool" : "FPM-Worker-Pool",
+ "Pool name:" : "Pool-Name:",
+ "Pool type:" : "Pool-Typ:",
+ "Start time:" : "Startzeit:",
+ "Accepted connections:" : "Akzeptierte Verbindungen:",
+ "Total processes:" : "Prozesse insgesamt:",
+ "Active processes:" : "Aktive Prozesse:",
+ "Idle processes:" : "Leerlaufprozesse:",
+ "Listen queue:" : "Warteschlange (Listen-Queue)",
+ "Slow requests:" : "Langsame Anfragen:",
+ "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):",
+ "Max active processes:" : "Maximal aktive Prozesse:",
+ "Max children reached:" : "Maximal erreichte Kindzahl:",
"Database" : "Datenbank",
"Type:" : "Art:",
"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 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.",
- "Load average: {cpu} (last minute)" : "Durchschnittliche Last: {cpu} (letzte Minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Benutzer gesamt:",
- "24 hours:" : "24 Stunden:",
- "1 hour:" : "1 Stunde:",
- "5 mins:" : "5 Minuten:"
+ "Unknown Processor" : "Unbekannter Prozessor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/de_DE.json b/l10n/de_DE.json
index 4f69ec33..3ce238dd 100644
--- a/l10n/de_DE.json
+++ b/l10n/de_DE.json
@@ -13,15 +13,18 @@
"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.",
+ "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:",
- "Unknown Processor" : "Unbekannter Prozessor",
+ "threads" : "Threads",
"Memory:" : "Speicher:",
- "Server time:" : "Server-Zeit:",
+ "Server time:" : "Serverzeit:",
"Uptime:" : "Betriebszeit:",
"Temperature" : "Temperatur",
"Load" : "Auslastung",
@@ -45,11 +48,11 @@
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
"Active users" : "Aktive Benutzer",
- "Last hour" : "Letzte Stunde",
+ "Last hour" : "In der letzten Stunde",
"%s%% of all users" : "%s%% aller Benutzer",
- "Last 24 Hours" : "Letzte 24 Stunden",
- "Last 7 Days" : "Die letzten 7 Tage",
- "Last 30 Days" : "Die letzten 30 Tage",
+ "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:",
@@ -61,27 +64,38 @@
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Speicherlimit:",
+ "MB" : "MB",
"Max execution time:" : "Maximale Ausführungszeit:",
+ "seconds" : "Sekunden",
"Upload max size:" : "Maximale Größe zum Hochladen:",
"OPcache Revalidate Frequency:" : "OPcache-Revalidierungshäufigkeit:",
"Extensions:" : "Erweiterungen:",
"Unable to list extensions" : "Erweiterungen können nicht aufgelistet werden",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "phpinfo anzeigen",
+ "FPM worker pool" : "FPM-Worker-Pool",
+ "Pool name:" : "Pool-Name:",
+ "Pool type:" : "Pool-Typ:",
+ "Start time:" : "Startzeit:",
+ "Accepted connections:" : "Akzeptierte Verbindungen:",
+ "Total processes:" : "Prozesse insgesamt:",
+ "Active processes:" : "Aktive Prozesse:",
+ "Idle processes:" : "Leerlaufprozesse:",
+ "Listen queue:" : "Warteschlange (Listen-Queue)",
+ "Slow requests:" : "Langsame Anfragen:",
+ "Max listen queue:" : "Maximale Warteschlange (Listen-Queue):",
+ "Max active processes:" : "Maximal aktive Prozesse:",
+ "Max children reached:" : "Maximal erreichte Kindzahl:",
"Database" : "Datenbank",
"Type:" : "Art:",
"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 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.",
- "Load average: {cpu} (last minute)" : "Durchschnittliche Last: {cpu} (letzte Minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Benutzer gesamt:",
- "24 hours:" : "24 Stunden:",
- "1 hour:" : "1 Stunde:",
- "5 mins:" : "5 Minuten:"
+ "Unknown Processor" : "Unbekannter Prozessor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/el.js b/l10n/el.js
index a8b0a871..4c4f28d1 100644
--- a/l10n/el.js
+++ b/l10n/el.js
@@ -2,6 +2,11 @@ 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}",
@@ -10,11 +15,14 @@ OC.L10N.register(
"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, RAM, σκληρού δίσκου, αριθμός χρηστών, κλτ.",
"Operating System:" : "Λειτουργικό σύστημα",
+ "CPU:" : "CPU:",
+ "threads" : "νήματα",
"Memory:" : "Μνήμη:",
"Server time:" : "Ώρα διακομιστή:",
"Uptime:" : "Διάρκεια λειτουργίας:",
@@ -35,28 +43,57 @@ OC.L10N.register(
"Gateway:" : "Πύλη:",
"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:",
"PHP" : "PHP",
"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:" : "Όνομα συλλογής:",
+ "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:" : "Φτάστηκε μέγιστος αριθμός παιδιών:",
"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:" : "Για να χρησιμοποιήσετε ένα αναγνωριστικό πρόσβασης (token), δημιουργήστε ένα και ορίστε το χρησιμοποιώντας την ακόλουθη εντολή:",
"Then pass the token with the \"NC-Token\" header when querying the above URL." : "Στη συνέχεια, περάστε το αναγνωριστικό με την κεφαλίδα \"NC-Token\" όταν υποβάλετε ερώτημα στην παραπάνω διεύθυνση URL.",
- "Load average: {cpu} (last minute)" : "Μέσος όρος φόρτου: {cpu} (τελευταίο λεπτό)",
- "Total users:" : "Σύνολο χρηστών:",
- "24 hours:" : "24 ώρες:",
- "1 hour:" : "1 ώρα:",
- "5 mins:" : "5 λεπτά:"
+ "Unknown Processor" : "Άγνωστος Επεξεργαστής"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/el.json b/l10n/el.json
index e6c064e5..8fc53524 100644
--- a/l10n/el.json
+++ b/l10n/el.json
@@ -1,5 +1,10 @@
{ "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}",
@@ -8,11 +13,14 @@
"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, RAM, σκληρού δίσκου, αριθμός χρηστών, κλτ.",
"Operating System:" : "Λειτουργικό σύστημα",
+ "CPU:" : "CPU:",
+ "threads" : "νήματα",
"Memory:" : "Μνήμη:",
"Server time:" : "Ώρα διακομιστή:",
"Uptime:" : "Διάρκεια λειτουργίας:",
@@ -33,28 +41,57 @@
"Gateway:" : "Πύλη:",
"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:",
"PHP" : "PHP",
"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:" : "Όνομα συλλογής:",
+ "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:" : "Φτάστηκε μέγιστος αριθμός παιδιών:",
"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:" : "Για να χρησιμοποιήσετε ένα αναγνωριστικό πρόσβασης (token), δημιουργήστε ένα και ορίστε το χρησιμοποιώντας την ακόλουθη εντολή:",
"Then pass the token with the \"NC-Token\" header when querying the above URL." : "Στη συνέχεια, περάστε το αναγνωριστικό με την κεφαλίδα \"NC-Token\" όταν υποβάλετε ερώτημα στην παραπάνω διεύθυνση URL.",
- "Load average: {cpu} (last minute)" : "Μέσος όρος φόρτου: {cpu} (τελευταίο λεπτό)",
- "Total users:" : "Σύνολο χρηστών:",
- "24 hours:" : "24 ώρες:",
- "1 hour:" : "1 ώρα:",
- "5 mins:" : "5 λεπτά:"
+ "Unknown Processor" : "Άγνωστος Επεξεργαστής"
},"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 7d94c0b7..1aee2bcb 100644
--- a/l10n/en_GB.js
+++ b/l10n/en_GB.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"Not supported!" : "Not supported!",
"Press ⌘-C to copy." : "Press ⌘-C to copy.",
"Press Ctrl-C to copy." : "Press Ctrl-C to copy.",
+ "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:",
- "Unknown Processor" : "Unknown Processor",
+ "threads" : "threads",
"Memory:" : "Memory:",
"Server time:" : "Server time:",
"Uptime:" : "Uptime:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Memory limit:",
+ "MB" : "MB",
"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",
+ "Pool name:" : "Pool name:",
+ "Pool type:" : "Pool type:",
+ "Start time:" : "Start time:",
+ "Accepted connections:" : "Accepted connections:",
+ "Total processes:" : "Total processes:",
+ "Active processes:" : "Active processes:",
+ "Idle processes:" : "Idle processes:",
+ "Listen queue:" : "Listen queue:",
+ "Slow requests:" : "Slow requests:",
+ "Max listen queue:" : "Max listen queue:",
+ "Max active processes:" : "Max active processes:",
+ "Max children reached:" : "Max children reached:",
"Database" : "Database",
"Type:" : "Type:",
"External monitoring tool" : "External monitoring tool",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Load average: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Total users:",
- "24 hours:" : "24 hours:",
- "1 hour:" : "1 hour:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Unknown Processor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/en_GB.json b/l10n/en_GB.json
index b560f08f..4d8f6ff7 100644
--- a/l10n/en_GB.json
+++ b/l10n/en_GB.json
@@ -13,13 +13,16 @@
"Not supported!" : "Not supported!",
"Press ⌘-C to copy." : "Press ⌘-C to copy.",
"Press Ctrl-C to copy." : "Press Ctrl-C to copy.",
+ "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:",
- "Unknown Processor" : "Unknown Processor",
+ "threads" : "threads",
"Memory:" : "Memory:",
"Server time:" : "Server time:",
"Uptime:" : "Uptime:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Memory limit:",
+ "MB" : "MB",
"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",
+ "Pool name:" : "Pool name:",
+ "Pool type:" : "Pool type:",
+ "Start time:" : "Start time:",
+ "Accepted connections:" : "Accepted connections:",
+ "Total processes:" : "Total processes:",
+ "Active processes:" : "Active processes:",
+ "Idle processes:" : "Idle processes:",
+ "Listen queue:" : "Listen queue:",
+ "Slow requests:" : "Slow requests:",
+ "Max listen queue:" : "Max listen queue:",
+ "Max active processes:" : "Max active processes:",
+ "Max children reached:" : "Max children reached:",
"Database" : "Database",
"Type:" : "Type:",
"External monitoring tool" : "External monitoring tool",
@@ -77,11 +96,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Load average: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Total users:",
- "24 hours:" : "24 hours:",
- "1 hour:" : "1 hour:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Unknown Processor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/eo.js b/l10n/eo.js
index aa124103..b61fecbe 100644
--- a/l10n/eo.js
+++ b/l10n/eo.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Observado",
"Monitoring app with useful server information" : "Observa aplikaĵo kun utilaj informoj pri la servilo",
@@ -24,11 +25,11 @@ OC.L10N.register(
"Users:" : "Uzantoj:",
"PHP" : "PHP",
"Version:" : "Versio:",
+ "seconds" : "sekundoj",
"Upload max size:" : "Maksimuma alŝutgrando:",
"Database" : "Datumbazo",
"Type:" : "Tipo:",
"External monitoring tool" : "Ekstera observa ilo",
- "Copy" : "Kopii",
- "Total users:" : "Sumo de uzantoj:"
+ "Copy" : "Kopii"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/eo.json b/l10n/eo.json
index 4ac15b7d..33d5f346 100644
--- a/l10n/eo.json
+++ b/l10n/eo.json
@@ -4,6 +4,7 @@
"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",
"Monitoring" : "Observado",
"Monitoring app with useful server information" : "Observa aplikaĵo kun utilaj informoj pri la servilo",
@@ -22,11 +23,11 @@
"Users:" : "Uzantoj:",
"PHP" : "PHP",
"Version:" : "Versio:",
+ "seconds" : "sekundoj",
"Upload max size:" : "Maksimuma alŝutgrando:",
"Database" : "Datumbazo",
"Type:" : "Tipo:",
"External monitoring tool" : "Ekstera observa ilo",
- "Copy" : "Kopii",
- "Total users:" : "Sumo de uzantoj:"
+ "Copy" : "Kopii"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/es.js b/l10n/es.js
index bc1b43d0..0626b9d4 100644
--- a/l10n/es.js
+++ b/l10n/es.js
@@ -2,47 +2,59 @@ 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" : "Los datos de SWAP no están disponibles",
+ "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.",
+ "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",
+ "Operating System:" : "Sistema Operativo:",
"CPU:" : "CPU:",
- "Unknown Processor" : "Processor desconocido",
+ "threads" : "hilos",
"Memory:" : "Memoria",
- "Server time:" : "Hora del servidor",
- "Uptime:" : "Tiempo activo",
+ "Server time:" : "Hora del servidor:",
+ "Uptime:" : "Tiempo de actividad:",
"Temperature" : "Temperatura",
"Load" : "Carga",
"Memory" : "Memoria",
"Disk" : "Disco",
- "Mount:" : "Montado",
- "Filesystem:" : "Sistema de archivos",
+ "Mount:" : "Punto de montaje:",
+ "Filesystem:" : "Sistema de archivos:",
"Size:" : "Tamaño:",
- "Available:" : "Disponible",
- "Used:" : "Usado",
+ "Available:" : "Disponible:",
+ "Used:" : "Usado:",
"Files:" : "Archivos:",
"Storages:" : "Almacenamientos:",
"Free Space:" : "Espacio libre:",
"Network" : "Red",
- "Hostname:" : "Dirección del servidor",
- "Gateway:" : "Puerta de acceso",
- "Status:" : "Estado",
- "Speed:" : "Velocidad",
+ "Hostname:" : "Nombre del servidor:",
+ "Gateway:" : "Puerta de enlace:",
+ "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:",
@@ -53,27 +65,39 @@ OC.L10N.register(
"Talk conversations:" : "Conversaciones de Talk:",
"PHP" : "PHP",
"Version:" : "Versión:",
- "Memory limit:" : "Límite de memoria",
- "Max execution time:" : "Tiempo máx. de ejecución",
- "Upload max size:" : "Tamaño máximo de subida:",
+ "Memory limit:" : "Límite de memoria:",
+ "MB" : "MB",
+ "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:",
"Extensions:" : "Extensiones:",
"Unable to list extensions" : "No se pueden listar las extensiones",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "Mostrar phpinfo",
+ "FPM worker pool" : "Pool de workers FPM",
+ "Pool name:" : "Nombre del pool:",
+ "Pool type:" : "Tipo del Pool:",
+ "Start time:" : "Hora de inicio:",
+ "Accepted connections:" : "Conexiones aceptadas:",
+ "Total processes:" : "Total de procesos:",
+ "Active processes:" : "Procesos activos:",
+ "Idle processes:" : "Procesos ociosos:",
+ "Listen queue:" : "Cola de atención:",
+ "Slow requests:" : "Solicitudes lentas:",
+ "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:",
"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 establézcalo usando el siguiente comando",
+ "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.",
- "Load average: {cpu} (last minute)" : "Carga media: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Usuarios totales:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Processor desconocido"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
diff --git a/l10n/es.json b/l10n/es.json
index b5d19c12..4f420f41 100644
--- a/l10n/es.json
+++ b/l10n/es.json
@@ -1,46 +1,58 @@
{ "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" : "Los datos de SWAP no están disponibles",
+ "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.",
+ "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",
+ "Operating System:" : "Sistema Operativo:",
"CPU:" : "CPU:",
- "Unknown Processor" : "Processor desconocido",
+ "threads" : "hilos",
"Memory:" : "Memoria",
- "Server time:" : "Hora del servidor",
- "Uptime:" : "Tiempo activo",
+ "Server time:" : "Hora del servidor:",
+ "Uptime:" : "Tiempo de actividad:",
"Temperature" : "Temperatura",
"Load" : "Carga",
"Memory" : "Memoria",
"Disk" : "Disco",
- "Mount:" : "Montado",
- "Filesystem:" : "Sistema de archivos",
+ "Mount:" : "Punto de montaje:",
+ "Filesystem:" : "Sistema de archivos:",
"Size:" : "Tamaño:",
- "Available:" : "Disponible",
- "Used:" : "Usado",
+ "Available:" : "Disponible:",
+ "Used:" : "Usado:",
"Files:" : "Archivos:",
"Storages:" : "Almacenamientos:",
"Free Space:" : "Espacio libre:",
"Network" : "Red",
- "Hostname:" : "Dirección del servidor",
- "Gateway:" : "Puerta de acceso",
- "Status:" : "Estado",
- "Speed:" : "Velocidad",
+ "Hostname:" : "Nombre del servidor:",
+ "Gateway:" : "Puerta de enlace:",
+ "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:",
@@ -51,27 +63,39 @@
"Talk conversations:" : "Conversaciones de Talk:",
"PHP" : "PHP",
"Version:" : "Versión:",
- "Memory limit:" : "Límite de memoria",
- "Max execution time:" : "Tiempo máx. de ejecución",
- "Upload max size:" : "Tamaño máximo de subida:",
+ "Memory limit:" : "Límite de memoria:",
+ "MB" : "MB",
+ "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:",
"Extensions:" : "Extensiones:",
"Unable to list extensions" : "No se pueden listar las extensiones",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "Mostrar phpinfo",
+ "FPM worker pool" : "Pool de workers FPM",
+ "Pool name:" : "Nombre del pool:",
+ "Pool type:" : "Tipo del Pool:",
+ "Start time:" : "Hora de inicio:",
+ "Accepted connections:" : "Conexiones aceptadas:",
+ "Total processes:" : "Total de procesos:",
+ "Active processes:" : "Procesos activos:",
+ "Idle processes:" : "Procesos ociosos:",
+ "Listen queue:" : "Cola de atención:",
+ "Slow requests:" : "Solicitudes lentas:",
+ "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:",
"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 establézcalo usando el siguiente comando",
+ "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.",
- "Load average: {cpu} (last minute)" : "Carga media: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Usuarios totales:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Processor desconocido"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
\ No newline at end of file
diff --git a/l10n/es_419.js b/l10n/es_419.js
index 8ecd9fac..1eb3e606 100644
--- a/l10n/es_419.js
+++ b/l10n/es_419.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_419.json b/l10n/es_419.json
index 4742fda0..ed819148 100644
--- a/l10n/es_419.json
+++ b/l10n/es_419.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_AR.js b/l10n/es_AR.js
index 43fd5982..36808a34 100644
--- a/l10n/es_AR.js
+++ b/l10n/es_AR.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Users:" : "Usuarios:",
"PHP" : "PHP",
"Version:" : "Versión:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamaño máximo de carga:",
"Database" : "Base de datos",
"Type:" : "Tipo:",
diff --git a/l10n/es_AR.json b/l10n/es_AR.json
index d53cfe08..22580f4a 100644
--- a/l10n/es_AR.json
+++ b/l10n/es_AR.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
@@ -13,6 +14,7 @@
"Users:" : "Usuarios:",
"PHP" : "PHP",
"Version:" : "Versión:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamaño máximo de carga:",
"Database" : "Base de datos",
"Type:" : "Tipo:",
diff --git a/l10n/es_CL.js b/l10n/es_CL.js
index d8601eea..b030d13c 100644
--- a/l10n/es_CL.js
+++ b/l10n/es_CL.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_CL.json b/l10n/es_CL.json
index 77a89739..10ae9338 100644
--- a/l10n/es_CL.json
+++ b/l10n/es_CL.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_CO.js b/l10n/es_CO.js
index d8601eea..b030d13c 100644
--- a/l10n/es_CO.js
+++ b/l10n/es_CO.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_CO.json b/l10n/es_CO.json
index 77a89739..10ae9338 100644
--- a/l10n/es_CO.json
+++ b/l10n/es_CO.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_CR.js b/l10n/es_CR.js
index d8601eea..b030d13c 100644
--- a/l10n/es_CR.js
+++ b/l10n/es_CR.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_CR.json b/l10n/es_CR.json
index 77a89739..10ae9338 100644
--- a/l10n/es_CR.json
+++ b/l10n/es_CR.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_DO.js b/l10n/es_DO.js
index d8601eea..b030d13c 100644
--- a/l10n/es_DO.js
+++ b/l10n/es_DO.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_DO.json b/l10n/es_DO.json
index 77a89739..10ae9338 100644
--- a/l10n/es_DO.json
+++ b/l10n/es_DO.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_EC.js b/l10n/es_EC.js
index a7d9d707..8358cff5 100644
--- a/l10n/es_EC.js
+++ b/l10n/es_EC.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Procesador desconocido",
"Memory:" : "Memoria:",
"Server time:" : "Hora del servidor:",
"Uptime:" : "Tiempo de actividad:",
@@ -55,6 +55,7 @@ OC.L10N.register(
"Version:" : "Versión:",
"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:",
@@ -66,11 +67,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Promedio de carga: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuarios:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 minutos:"
+ "Unknown Processor" : "Procesador desconocido"
},
"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 8d1372aa..4773450f 100644
--- a/l10n/es_EC.json
+++ b/l10n/es_EC.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Procesador desconocido",
"Memory:" : "Memoria:",
"Server time:" : "Hora del servidor:",
"Uptime:" : "Tiempo de actividad:",
@@ -53,6 +53,7 @@
"Version:" : "Versión:",
"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:",
@@ -64,11 +65,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Promedio de carga: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuarios:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 minutos:"
+ "Unknown Processor" : "Procesador desconocido"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
\ No newline at end of file
diff --git a/l10n/es_GT.js b/l10n/es_GT.js
index d8601eea..b030d13c 100644
--- a/l10n/es_GT.js
+++ b/l10n/es_GT.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_GT.json b/l10n/es_GT.json
index 77a89739..10ae9338 100644
--- a/l10n/es_GT.json
+++ b/l10n/es_GT.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_HN.js b/l10n/es_HN.js
index d8601eea..b030d13c 100644
--- a/l10n/es_HN.js
+++ b/l10n/es_HN.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_HN.json b/l10n/es_HN.json
index 77a89739..10ae9338 100644
--- a/l10n/es_HN.json
+++ b/l10n/es_HN.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_MX.js b/l10n/es_MX.js
index a2f26f75..b0845997 100644
--- a/l10n/es_MX.js
+++ b/l10n/es_MX.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Procesador desconocido",
"Memory:" : "Memoria:",
"Server time:" : "Hora del servidor:",
"Uptime:" : "Tiempo de actividad:",
@@ -55,6 +55,7 @@ OC.L10N.register(
"Version:" : "Versión:",
"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:",
@@ -70,11 +71,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Promedio de carga: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuarios:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 minutos:"
+ "Unknown Processor" : "Procesador desconocido"
},
"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 3fd1b6df..5c79d9c6 100644
--- a/l10n/es_MX.json
+++ b/l10n/es_MX.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Procesador desconocido",
"Memory:" : "Memoria:",
"Server time:" : "Hora del servidor:",
"Uptime:" : "Tiempo de actividad:",
@@ -53,6 +53,7 @@
"Version:" : "Versión:",
"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:",
@@ -68,11 +69,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Promedio de carga: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuarios:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 minutos:"
+ "Unknown Processor" : "Procesador desconocido"
},"pluralForm" :"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
\ No newline at end of file
diff --git a/l10n/es_NI.js b/l10n/es_NI.js
index d8601eea..b030d13c 100644
--- a/l10n/es_NI.js
+++ b/l10n/es_NI.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_NI.json b/l10n/es_NI.json
index 77a89739..10ae9338 100644
--- a/l10n/es_NI.json
+++ b/l10n/es_NI.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_PA.js b/l10n/es_PA.js
index d8601eea..0740bfe7 100644
--- a/l10n/es_PA.js
+++ b/l10n/es_PA.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Users:" : "Usuarios:",
"PHP" : "PHP",
"Version:" : "Versión:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamaño máximo de carga:",
"Database" : "Base de datos",
"Type:" : "Tipo:",
diff --git a/l10n/es_PA.json b/l10n/es_PA.json
index 77a89739..774a3297 100644
--- a/l10n/es_PA.json
+++ b/l10n/es_PA.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
@@ -13,6 +14,7 @@
"Users:" : "Usuarios:",
"PHP" : "PHP",
"Version:" : "Versión:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamaño máximo de carga:",
"Database" : "Base de datos",
"Type:" : "Tipo:",
diff --git a/l10n/es_PE.js b/l10n/es_PE.js
index d8601eea..0740bfe7 100644
--- a/l10n/es_PE.js
+++ b/l10n/es_PE.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Users:" : "Usuarios:",
"PHP" : "PHP",
"Version:" : "Versión:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamaño máximo de carga:",
"Database" : "Base de datos",
"Type:" : "Tipo:",
diff --git a/l10n/es_PE.json b/l10n/es_PE.json
index 77a89739..774a3297 100644
--- a/l10n/es_PE.json
+++ b/l10n/es_PE.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
@@ -13,6 +14,7 @@
"Users:" : "Usuarios:",
"PHP" : "PHP",
"Version:" : "Versión:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamaño máximo de carga:",
"Database" : "Base de datos",
"Type:" : "Tipo:",
diff --git a/l10n/es_PR.js b/l10n/es_PR.js
index d8601eea..b030d13c 100644
--- a/l10n/es_PR.js
+++ b/l10n/es_PR.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_PR.json b/l10n/es_PR.json
index 77a89739..10ae9338 100644
--- a/l10n/es_PR.json
+++ b/l10n/es_PR.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_SV.js b/l10n/es_SV.js
index 6bbaefa8..a660e426 100644
--- a/l10n/es_SV.js
+++ b/l10n/es_SV.js
@@ -4,6 +4,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_SV.json b/l10n/es_SV.json
index 73ddbce6..ac98550d 100644
--- a/l10n/es_SV.json
+++ b/l10n/es_SV.json
@@ -2,6 +2,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_UY.js b/l10n/es_UY.js
index d8601eea..b030d13c 100644
--- a/l10n/es_UY.js
+++ b/l10n/es_UY.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/es_UY.json b/l10n/es_UY.json
index 77a89739..10ae9338 100644
--- a/l10n/es_UY.json
+++ b/l10n/es_UY.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Monitoreo",
"Temperature" : "Temperatura",
diff --git a/l10n/et_EE.js b/l10n/et_EE.js
index 8a44e65c..96e97450 100644
--- a/l10n/et_EE.js
+++ b/l10n/et_EE.js
@@ -2,19 +2,29 @@ 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.",
+ "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:",
- "Unknown Processor" : "Tundmatu protsessor",
+ "threads" : "lõimesid",
"Memory:" : "Vahemälu:",
"Server time:" : "Serveri aeg:",
"Uptime:" : "Aktiivaeg:",
@@ -22,12 +32,13 @@ OC.L10N.register(
"Load" : "Koormus",
"Memory" : "Vahemälu",
"Disk" : "Ketas",
- "Mount:" : "Maunt:",
+ "Mount:" : "Haakepunkt:",
"Filesystem:" : "Failisüsteem:",
"Size:" : "Suurus:",
"Available:" : "Saadaval:",
"Used:" : "Kasutusel:",
"Files:" : "Faile:",
+ "Storages:" : "Andmeruumid:",
"Free Space:" : "Vaba ruum:",
"Network" : "Võrk",
"Hostname:" : "Hostinimi:",
@@ -39,29 +50,54 @@ OC.L10N.register(
"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:",
"PHP" : "PHP",
"Version:" : "Versioon:",
- "Memory limit:" : "Mälulimiit:",
+ "Memory limit:" : "Mälukasutuse ülempiir:",
+ "MB" : "MB",
"Max execution time:" : "Maksimaalne täitmisaeg:",
+ "seconds" : "sekundit",
"Upload max size:" : "Maksimaalne üleslaadimissuurus:",
+ "OPcache Revalidate Frequency:" : "OPcache'i kordusvalideerimise sagedus:",
"Extensions:" : "Laiendused:",
"Unable to list extensions" : "Laienduste loetlemine ebaõnnestus",
+ "PHP Info:" : "PHP teave:",
+ "Show phpinfo" : "Näita phpinfo väljundit",
+ "FPM worker pool" : "FPM-i ühenduste fond",
+ "Pool name:" : "Ühenduste fondi nimi:",
+ "Pool type:" : "Ühenduste fondi tüüp:",
+ "Start time:" : "Algusaeg:",
+ "Accepted connections:" : "Vastuvõetud ühendusi:",
+ "Total processes:" : "Protsesse kokku:",
+ "Active processes:" : "Aktiivseid protsesse:",
+ "Idle processes:" : "Jõude protsesse:",
+ "Listen queue:" : "Kuulatavate päringute järjekord:",
+ "Slow requests:" : "Aeglaseid päringuid:",
+ "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:",
- "External monitoring tool" : "Väline monitoorimistööriist",
+ "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.",
- "Load average: {cpu} (last minute)" : "Keskmine koormus: {cpu} (last minute)",
- "DNS:" : "Nimeserver:",
- "Total users:" : "Kasutajaid kokku:",
- "24 hours:" : "24 tundi:",
- "1 hour:" : "1 tund:",
- "5 mins:" : "5 minutit:"
+ "Unknown Processor" : "Tundmatu protsessor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/et_EE.json b/l10n/et_EE.json
index e0f49efa..2c2bda7f 100644
--- a/l10n/et_EE.json
+++ b/l10n/et_EE.json
@@ -1,18 +1,28 @@
{ "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.",
+ "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:",
- "Unknown Processor" : "Tundmatu protsessor",
+ "threads" : "lõimesid",
"Memory:" : "Vahemälu:",
"Server time:" : "Serveri aeg:",
"Uptime:" : "Aktiivaeg:",
@@ -20,12 +30,13 @@
"Load" : "Koormus",
"Memory" : "Vahemälu",
"Disk" : "Ketas",
- "Mount:" : "Maunt:",
+ "Mount:" : "Haakepunkt:",
"Filesystem:" : "Failisüsteem:",
"Size:" : "Suurus:",
"Available:" : "Saadaval:",
"Used:" : "Kasutusel:",
"Files:" : "Faile:",
+ "Storages:" : "Andmeruumid:",
"Free Space:" : "Vaba ruum:",
"Network" : "Võrk",
"Hostname:" : "Hostinimi:",
@@ -37,29 +48,54 @@
"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:",
"PHP" : "PHP",
"Version:" : "Versioon:",
- "Memory limit:" : "Mälulimiit:",
+ "Memory limit:" : "Mälukasutuse ülempiir:",
+ "MB" : "MB",
"Max execution time:" : "Maksimaalne täitmisaeg:",
+ "seconds" : "sekundit",
"Upload max size:" : "Maksimaalne üleslaadimissuurus:",
+ "OPcache Revalidate Frequency:" : "OPcache'i kordusvalideerimise sagedus:",
"Extensions:" : "Laiendused:",
"Unable to list extensions" : "Laienduste loetlemine ebaõnnestus",
+ "PHP Info:" : "PHP teave:",
+ "Show phpinfo" : "Näita phpinfo väljundit",
+ "FPM worker pool" : "FPM-i ühenduste fond",
+ "Pool name:" : "Ühenduste fondi nimi:",
+ "Pool type:" : "Ühenduste fondi tüüp:",
+ "Start time:" : "Algusaeg:",
+ "Accepted connections:" : "Vastuvõetud ühendusi:",
+ "Total processes:" : "Protsesse kokku:",
+ "Active processes:" : "Aktiivseid protsesse:",
+ "Idle processes:" : "Jõude protsesse:",
+ "Listen queue:" : "Kuulatavate päringute järjekord:",
+ "Slow requests:" : "Aeglaseid päringuid:",
+ "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:",
- "External monitoring tool" : "Väline monitoorimistööriist",
+ "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.",
- "Load average: {cpu} (last minute)" : "Keskmine koormus: {cpu} (last minute)",
- "DNS:" : "Nimeserver:",
- "Total users:" : "Kasutajaid kokku:",
- "24 hours:" : "24 tundi:",
- "1 hour:" : "1 tund:",
- "5 mins:" : "5 minutit:"
+ "Unknown Processor" : "Tundmatu protsessor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/eu.js b/l10n/eu.js
index 1bf506e4..95ce92c9 100644
--- a/l10n/eu.js
+++ b/l10n/eu.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Prozesatzaile ezezaguna",
"Memory:" : "Memoria:",
"Server time:" : "Zerbitzariaren ordua:",
"Uptime:" : "Denbora aktibo:",
@@ -55,6 +55,7 @@ OC.L10N.register(
"Version:" : "Bertsioa:",
"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",
@@ -65,11 +66,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Batezbesteko karga: {cpu} (azken minutua)",
- "DNS:" : "DNS:",
- "Total users:" : "Erabiltzaileak guztira:",
- "24 hours:" : "24 ordu:",
- "1 hour:" : "ordu 1:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Prozesatzaile ezezaguna"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/eu.json b/l10n/eu.json
index a7c387c3..7b65e747 100644
--- a/l10n/eu.json
+++ b/l10n/eu.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Prozesatzaile ezezaguna",
"Memory:" : "Memoria:",
"Server time:" : "Zerbitzariaren ordua:",
"Uptime:" : "Denbora aktibo:",
@@ -53,6 +53,7 @@
"Version:" : "Bertsioa:",
"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",
@@ -63,11 +64,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Batezbesteko karga: {cpu} (azken minutua)",
- "DNS:" : "DNS:",
- "Total users:" : "Erabiltzaileak guztira:",
- "24 hours:" : "24 ordu:",
- "1 hour:" : "ordu 1:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Prozesatzaile ezezaguna"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/fa.js b/l10n/fa.js
index 64d9428f..c140dee2 100644
--- a/l10n/fa.js
+++ b/l10n/fa.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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:",
- "Unknown Processor" : "Unknown Processor",
"Memory:" : "Memory:",
"Server time:" : "Server time:",
"Uptime:" : "Uptime:",
@@ -55,6 +55,7 @@ OC.L10N.register(
"Version:" : "نسخه:",
"Memory limit:" : "Memory limit:",
"Max execution time:" : "Max execution time:",
+ "seconds" : "ثانیه ها",
"Upload max size:" : "اندازه حداکثر بارگذاری شود:",
"OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:",
"Extensions:" : "Extensions:",
@@ -66,11 +67,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Load average: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "تعداد کل کاربران:",
- "24 hours:" : "24 hours:",
- "1 hour:" : "1 hour:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Unknown Processor"
},
"nplurals=2; plural=(n > 1);");
diff --git a/l10n/fa.json b/l10n/fa.json
index f2df44f2..7cf9d317 100644
--- a/l10n/fa.json
+++ b/l10n/fa.json
@@ -8,13 +8,13 @@
"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:",
- "Unknown Processor" : "Unknown Processor",
"Memory:" : "Memory:",
"Server time:" : "Server time:",
"Uptime:" : "Uptime:",
@@ -53,6 +53,7 @@
"Version:" : "نسخه:",
"Memory limit:" : "Memory limit:",
"Max execution time:" : "Max execution time:",
+ "seconds" : "ثانیه ها",
"Upload max size:" : "اندازه حداکثر بارگذاری شود:",
"OPcache Revalidate Frequency:" : "OPcache Revalidate Frequency:",
"Extensions:" : "Extensions:",
@@ -64,11 +65,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Load average: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "تعداد کل کاربران:",
- "24 hours:" : "24 hours:",
- "1 hour:" : "1 hour:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Unknown Processor"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}
\ No newline at end of file
diff --git a/l10n/fi.js b/l10n/fi.js
index 3d9bdb0a..9c77460e 100644
--- a/l10n/fi.js
+++ b/l10n/fi.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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ä",
"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:",
- "Unknown Processor" : "Tuntematon suoritin",
"Memory:" : "Muisti:",
"Server time:" : "Palvelimen aika:",
"Uptime:" : "Käynnissäoloaika:",
@@ -52,6 +52,7 @@ OC.L10N.register(
"Version:" : "Versio:",
"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",
@@ -59,11 +60,6 @@ OC.L10N.register(
"Type:" : "Tyyppi:",
"External monitoring tool" : "Ulkopuolinen valvontatyökalu",
"Copy" : "Kopioi",
- "Load average: {cpu} (last minute)" : "Keskimääräinen kuorma: {cpu} (viimeisin minuutti)",
- "DNS:" : "Nimipalvelu:",
- "Total users:" : "Käyttäjiä yhteensä:",
- "24 hours:" : "24 tuntia:",
- "1 hour:" : "1 tunti:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Tuntematon suoritin"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/fi.json b/l10n/fi.json
index 922f4830..5dfc22d7 100644
--- a/l10n/fi.json
+++ b/l10n/fi.json
@@ -8,13 +8,13 @@
"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ä",
"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:",
- "Unknown Processor" : "Tuntematon suoritin",
"Memory:" : "Muisti:",
"Server time:" : "Palvelimen aika:",
"Uptime:" : "Käynnissäoloaika:",
@@ -50,6 +50,7 @@
"Version:" : "Versio:",
"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",
@@ -57,11 +58,6 @@
"Type:" : "Tyyppi:",
"External monitoring tool" : "Ulkopuolinen valvontatyökalu",
"Copy" : "Kopioi",
- "Load average: {cpu} (last minute)" : "Keskimääräinen kuorma: {cpu} (viimeisin minuutti)",
- "DNS:" : "Nimipalvelu:",
- "Total users:" : "Käyttäjiä yhteensä:",
- "24 hours:" : "24 tuntia:",
- "1 hour:" : "1 tunti:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Tuntematon suoritin"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/fr.js b/l10n/fr.js
index b4d5ba45..43660472 100644
--- a/l10n/fr.js
+++ b/l10n/fr.js
@@ -1,27 +1,28 @@
OC.L10N.register(
"serverinfo",
{
- "CPU info not available" : "Information CPU non disponible",
- "CPU Usage:" : "Usage CPU:",
- "Load average: {percentage} % ({load}) last minute" : "Moyenne de la charge : {percentage}% ( {load}) dernière minute",
- "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) dernière Minute\n{last5MinutesPercentage} % ({last5Minutes}) 5 dernières Minutes\n{last15MinutesPercentage} % ({last15Minutes}) 15 dernières Minutes",
- "RAM Usage:" : "Usage RAM:",
- "SWAP Usage:" : "Usage SWAP:",
- "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM : Total : {memTotalBytes}/Utilisation actuelle : {memUsageBytes}",
- "RAM info not available" : "Informations sur la RAM non disponibles",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP : Total : {swapTotalBytes}/Utilisation actuelle : {swapUsageBytes}",
- "SWAP info not available" : "L'information SWAP n'est pas disponible",
+ "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." : "Pressez ⌘-C pour copier.",
+ "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",
"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 :",
- "Unknown Processor" : "Processeur inconnu",
+ "threads" : "fil de discussion",
"Memory:" : "Mémoire :",
"Server time:" : "Heure du serveur :",
"Uptime:" : "Durée de fonctionnement :",
@@ -64,11 +65,25 @@ OC.L10N.register(
"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",
"Show phpinfo" : "Afficher phpinfo",
+ "FPM worker pool" : "pool du worker FPM",
+ "Pool name:" : "Nom du pool :",
+ "Pool type:" : "Type de pool :",
+ "Start time:" : "Heure de début :",
+ "Accepted connections:" : "Connexions acceptées :",
+ "Total processes:" : "Nombre total de processus :",
+ "Active processes:" : "Processus actifs :",
+ "Idle processes:" : "Processus inactifs :",
+ "Listen queue:" : "File d'attente d'écoute :",
+ "Slow requests:" : "Requêtes lentes :",
+ "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 :",
"External monitoring tool" : "Outil de surveillance externe",
@@ -79,11 +94,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Moyenne de la charge : {cpu} (dernière minute)",
- "DNS:" : "DNS :",
- "Total users:" : "Nombre total d’utilisateurs :",
- "24 hours:" : "24 heures :",
- "1 hour:" : "1 heure :",
- "5 mins:" : "5 minutes :"
+ "Unknown Processor" : "Processeur inconnu"
},
"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 884cf289..c0d4d819 100644
--- a/l10n/fr.json
+++ b/l10n/fr.json
@@ -1,25 +1,26 @@
{ "translations": {
- "CPU info not available" : "Information CPU non disponible",
- "CPU Usage:" : "Usage CPU:",
- "Load average: {percentage} % ({load}) last minute" : "Moyenne de la charge : {percentage}% ( {load}) dernière minute",
- "{lastMinutePercentage} % ({lastMinute}) last Minute\n{last5MinutesPercentage} % ({last5Minutes}) last 5 Minutes\n{last15MinutesPercentage} % ({last15Minutes}) last 15 Minutes" : "{lastMinutePercentage} % ({lastMinute}) dernière Minute\n{last5MinutesPercentage} % ({last5Minutes}) 5 dernières Minutes\n{last15MinutesPercentage} % ({last15Minutes}) 15 dernières Minutes",
- "RAM Usage:" : "Usage RAM:",
- "SWAP Usage:" : "Usage SWAP:",
- "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM : Total : {memTotalBytes}/Utilisation actuelle : {memUsageBytes}",
- "RAM info not available" : "Informations sur la RAM non disponibles",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP : Total : {swapTotalBytes}/Utilisation actuelle : {swapUsageBytes}",
- "SWAP info not available" : "L'information SWAP n'est pas disponible",
+ "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." : "Pressez ⌘-C pour copier.",
+ "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",
"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 :",
- "Unknown Processor" : "Processeur inconnu",
+ "threads" : "fil de discussion",
"Memory:" : "Mémoire :",
"Server time:" : "Heure du serveur :",
"Uptime:" : "Durée de fonctionnement :",
@@ -62,11 +63,25 @@
"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",
"Show phpinfo" : "Afficher phpinfo",
+ "FPM worker pool" : "pool du worker FPM",
+ "Pool name:" : "Nom du pool :",
+ "Pool type:" : "Type de pool :",
+ "Start time:" : "Heure de début :",
+ "Accepted connections:" : "Connexions acceptées :",
+ "Total processes:" : "Nombre total de processus :",
+ "Active processes:" : "Processus actifs :",
+ "Idle processes:" : "Processus inactifs :",
+ "Listen queue:" : "File d'attente d'écoute :",
+ "Slow requests:" : "Requêtes lentes :",
+ "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 :",
"External monitoring tool" : "Outil de surveillance externe",
@@ -77,11 +92,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Moyenne de la charge : {cpu} (dernière minute)",
- "DNS:" : "DNS :",
- "Total users:" : "Nombre total d’utilisateurs :",
- "24 hours:" : "24 heures :",
- "1 hour:" : "1 heure :",
- "5 mins:" : "5 minutes :"
+ "Unknown Processor" : "Processeur inconnu"
},"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 778c89e6..6dd5c0e8 100644
--- a/l10n/ga.js
+++ b/l10n/ga.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"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.",
+ "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:",
- "Unknown Processor" : "Próiseálaí Anaithnid",
+ "threads" : "snáitheanna",
"Memory:" : "Cuimhne:",
"Server time:" : "Am freastalaí:",
"Uptime:" : "Aga fónaimh:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Leagan:",
"Memory limit:" : "Teorainn chuimhne:",
+ "MB" : "MB",
"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:",
"Extensions:" : "Eisínteachtaí:",
"Unable to list extensions" : "Ní féidir na síntí a liostú",
+ "PHP Info:" : "Eolas PHP:",
"Show phpinfo" : "Taispeáin phpinfo",
+ "FPM worker pool" : "Linn snámha oibrithe FPM",
+ "Pool name:" : "Ainm na stór:",
+ "Pool type:" : "Cineál stór:",
+ "Start time:" : "Am tosaithe:",
+ "Accepted connections:" : "Naisc a nglactar leo:",
+ "Total processes:" : "Próisis iomlána:",
+ "Active processes:" : "Próisis ghníomhacha:",
+ "Idle processes:" : "Próisis díomhaoin:",
+ "Listen queue:" : "Éist scuaine:",
+ "Slow requests:" : "Iarratais mall:",
+ "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:",
"External monitoring tool" : "Uirlis sheachtrach monatóireachta",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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ú.",
- "Load average: {cpu} (last minute)" : "Meán luchtaithe: {cpu} (nóiméad deireanach)",
- "DNS:" : "DNS:",
- "Total users:" : "Úsáideoirí iomlána:",
- "24 hours:" : "24 uair:",
- "1 hour:" : "1 uair:",
- "5 mins:" : "5 nóim:"
+ "Unknown Processor" : "Próiseálaí Anaithnid"
},
"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 659269fd..0db3c420 100644
--- a/l10n/ga.json
+++ b/l10n/ga.json
@@ -13,13 +13,16 @@
"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.",
+ "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:",
- "Unknown Processor" : "Próiseálaí Anaithnid",
+ "threads" : "snáitheanna",
"Memory:" : "Cuimhne:",
"Server time:" : "Am freastalaí:",
"Uptime:" : "Aga fónaimh:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "Leagan:",
"Memory limit:" : "Teorainn chuimhne:",
+ "MB" : "MB",
"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:",
"Extensions:" : "Eisínteachtaí:",
"Unable to list extensions" : "Ní féidir na síntí a liostú",
+ "PHP Info:" : "Eolas PHP:",
"Show phpinfo" : "Taispeáin phpinfo",
+ "FPM worker pool" : "Linn snámha oibrithe FPM",
+ "Pool name:" : "Ainm na stór:",
+ "Pool type:" : "Cineál stór:",
+ "Start time:" : "Am tosaithe:",
+ "Accepted connections:" : "Naisc a nglactar leo:",
+ "Total processes:" : "Próisis iomlána:",
+ "Active processes:" : "Próisis ghníomhacha:",
+ "Idle processes:" : "Próisis díomhaoin:",
+ "Listen queue:" : "Éist scuaine:",
+ "Slow requests:" : "Iarratais mall:",
+ "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:",
"External monitoring tool" : "Uirlis sheachtrach monatóireachta",
@@ -77,11 +96,6 @@
"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ú.",
- "Load average: {cpu} (last minute)" : "Meán luchtaithe: {cpu} (nóiméad deireanach)",
- "DNS:" : "DNS:",
- "Total users:" : "Úsáideoirí iomlána:",
- "24 hours:" : "24 uair:",
- "1 hour:" : "1 uair:",
- "5 mins:" : "5 nóim:"
+ "Unknown Processor" : "Próiseálaí Anaithnid"
},"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 a448a37f..069e0cb4 100644
--- a/l10n/gl.js
+++ b/l10n/gl.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"Not supported!" : "Non admitido!",
"Press ⌘-C to copy." : "Prema ⌘-C para copiar.",
"Press Ctrl-C to copy." : "Prema Ctrl-C para copiar.",
+ "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:",
- "Unknown Processor" : "Procesador descoñecido",
+ "threads" : "fíos",
"Memory:" : "Memoria:",
"Server time:" : "Hora do servidor:",
"Uptime:" : "Tempo de actividade:",
@@ -59,16 +62,32 @@ OC.L10N.register(
"Emails:" : "Correos-e",
"Federated sent:" : "Envíos á federación:",
"Federated received:" : "Recibido da federación:",
- "Talk conversations:" : "Conversas en Parlar:",
+ "Talk conversations:" : "Conversas no Parladoiro:",
"PHP" : "PHP",
"Version:" : "Versión:",
"Memory limit:" : "Límite de memoria:",
+ "MB" : "MB",
"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",
+ "Pool name:" : "Nome do agrupamento:",
+ "Pool type:" : "Tipo de agrupamento:",
+ "Start time:" : "Hora de comezo:",
+ "Accepted connections:" : "Conexións aceptadas:",
+ "Total processes:" : "Total de procesos:",
+ "Active processes:" : "Procesos activos:",
+ "Idle processes:" : "Procesos inactivos:",
+ "Listen queue:" : "Cola de escoita:",
+ "Slow requests:" : "Solicitudes lentas:",
+ "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:",
"External monitoring tool" : "Ferramenta externa de supervisión",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Carga media: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuarios:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Procesador descoñecido"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/gl.json b/l10n/gl.json
index eadd0ebe..ccae3bf5 100644
--- a/l10n/gl.json
+++ b/l10n/gl.json
@@ -13,13 +13,16 @@
"Not supported!" : "Non admitido!",
"Press ⌘-C to copy." : "Prema ⌘-C para copiar.",
"Press Ctrl-C to copy." : "Prema Ctrl-C para copiar.",
+ "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:",
- "Unknown Processor" : "Procesador descoñecido",
+ "threads" : "fíos",
"Memory:" : "Memoria:",
"Server time:" : "Hora do servidor:",
"Uptime:" : "Tempo de actividade:",
@@ -57,16 +60,32 @@
"Emails:" : "Correos-e",
"Federated sent:" : "Envíos á federación:",
"Federated received:" : "Recibido da federación:",
- "Talk conversations:" : "Conversas en Parlar:",
+ "Talk conversations:" : "Conversas no Parladoiro:",
"PHP" : "PHP",
"Version:" : "Versión:",
"Memory limit:" : "Límite de memoria:",
+ "MB" : "MB",
"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",
+ "Pool name:" : "Nome do agrupamento:",
+ "Pool type:" : "Tipo de agrupamento:",
+ "Start time:" : "Hora de comezo:",
+ "Accepted connections:" : "Conexións aceptadas:",
+ "Total processes:" : "Total de procesos:",
+ "Active processes:" : "Procesos activos:",
+ "Idle processes:" : "Procesos inactivos:",
+ "Listen queue:" : "Cola de escoita:",
+ "Slow requests:" : "Solicitudes lentas:",
+ "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:",
"External monitoring tool" : "Ferramenta externa de supervisión",
@@ -77,11 +96,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Carga media: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuarios:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Procesador descoñecido"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/he.js b/l10n/he.js
index 6d448306..56ea76ac 100644
--- a/l10n/he.js
+++ b/l10n/he.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"Not supported!" : "אין תמיכה!",
"Press ⌘-C to copy." : "להעתקה: ⌘-C.",
"Press Ctrl-C to copy." : "להעתקה: Ctrl-C.",
+ "Unknown" : "לא ידוע",
"System" : "מערכת",
"Monitoring" : "מעקב",
"Monitoring app with useful server information" : "יישום מעקב עם פרטים חשובים על השרת",
@@ -25,12 +26,12 @@ OC.L10N.register(
"Users:" : "משתמשים:",
"PHP" : "PHP",
"Version:" : "גרסה:",
+ "seconds" : "שניות",
"Upload max size:" : "גודל העלאה מרבי:",
"Database" : "מסד נתונים",
"Type:" : "סוג:",
"External monitoring tool" : "כלי מעקב חיצוני",
"Copy" : "העתקה",
- "Then pass the token with the \"NC-Token\" header when querying the above URL." : "לאחר מכן יש להעביר את האסימון עם כותרת „NC-Token” בעת תשאול הכתובת שלעיל.",
- "Total users:" : "סך כל המשתמשים:"
+ "Then pass the token with the \"NC-Token\" header when querying the above URL." : "לאחר מכן יש להעביר את האסימון עם כותרת „NC-Token” בעת תשאול הכתובת שלעיל."
},
"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;");
diff --git a/l10n/he.json b/l10n/he.json
index a05eb178..8d98eec2 100644
--- a/l10n/he.json
+++ b/l10n/he.json
@@ -4,6 +4,7 @@
"Not supported!" : "אין תמיכה!",
"Press ⌘-C to copy." : "להעתקה: ⌘-C.",
"Press Ctrl-C to copy." : "להעתקה: Ctrl-C.",
+ "Unknown" : "לא ידוע",
"System" : "מערכת",
"Monitoring" : "מעקב",
"Monitoring app with useful server information" : "יישום מעקב עם פרטים חשובים על השרת",
@@ -23,12 +24,12 @@
"Users:" : "משתמשים:",
"PHP" : "PHP",
"Version:" : "גרסה:",
+ "seconds" : "שניות",
"Upload max size:" : "גודל העלאה מרבי:",
"Database" : "מסד נתונים",
"Type:" : "סוג:",
"External monitoring tool" : "כלי מעקב חיצוני",
"Copy" : "העתקה",
- "Then pass the token with the \"NC-Token\" header when querying the above URL." : "לאחר מכן יש להעביר את האסימון עם כותרת „NC-Token” בעת תשאול הכתובת שלעיל.",
- "Total users:" : "סך כל המשתמשים:"
+ "Then pass the token with the \"NC-Token\" header when querying the above URL." : "לאחר מכן יש להעביר את האסימון עם כותרת „NC-Token” בעת תשאול הכתובת שלעיל."
},"pluralForm" :"nplurals=3; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: 2;"
}
\ No newline at end of file
diff --git a/l10n/hr.js b/l10n/hr.js
index 8237611f..f965fe0f 100644
--- a/l10n/hr.js
+++ b/l10n/hr.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Praćenje",
"Monitoring app with useful server information" : "Aplikacija za praćenje s korisnim informacijama o poslužitelju",
@@ -25,12 +26,12 @@ OC.L10N.register(
"Users:" : "Korisnici:",
"PHP" : "PHP",
"Version:" : "Inačica:",
+ "seconds" : "sekunda",
"Upload max size:" : "Maksimalna veličina za otpremu:",
"Database" : "Baza podataka",
"Type:" : "Vrsta:",
"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.",
- "Total users:" : "Ukupno korisnika:"
+ "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."
},
"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/hr.json b/l10n/hr.json
index e89dc924..d2658f5f 100644
--- a/l10n/hr.json
+++ b/l10n/hr.json
@@ -4,6 +4,7 @@
"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",
"Monitoring" : "Praćenje",
"Monitoring app with useful server information" : "Aplikacija za praćenje s korisnim informacijama o poslužitelju",
@@ -23,12 +24,12 @@
"Users:" : "Korisnici:",
"PHP" : "PHP",
"Version:" : "Inačica:",
+ "seconds" : "sekunda",
"Upload max size:" : "Maksimalna veličina za otpremu:",
"Database" : "Baza podataka",
"Type:" : "Vrsta:",
"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.",
- "Total users:" : "Ukupno korisnika:"
+ "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."
},"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/hu.js b/l10n/hu.js
index 4a4c36bb..da787a06 100644
--- a/l10n/hu.js
+++ b/l10n/hu.js
@@ -2,21 +2,27 @@ OC.L10N.register(
"serverinfo",
{
"CPU info not available" : "A CPU információk nem érhetők el",
- "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Összesen: {memTotalBytes}/Jelenlegi használat: {memUsageBytes}",
- "RAM info not available" : "A RAM információk nem érhetők el",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "CSEREHELY: Összesen: {swapTotalBytes}/Jelenlegi használat: {swapUsageBytes}",
- "SWAP info not available" : "A cserehely információk nem érhetők el",
- "Copied!" : "Másolva.",
+ "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.",
+ "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",
"Monitoring" : "Rendszerfelügyelet",
"Monitoring app with useful server information" : "Rendszerfelügyeleti alkalmazás hasznos kiszolgálóinformációkkal",
- "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hasznos kiszolgálóinformációk nyújtása, mint a CPU terhelés, RAM foglaltság, felhasználók száma, stb.",
+ "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:",
- "Unknown Processor" : "Ismeretlen processzor",
+ "threads" : "szál",
"Memory:" : "Memória:",
"Server time:" : "Kiszolgálóidő:",
"Uptime:" : "Működési idő:",
@@ -43,6 +49,10 @@ OC.L10N.register(
"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:",
@@ -55,11 +65,25 @@ OC.L10N.register(
"Version:" : "Verzió:",
"Memory limit:" : "Memóriakorlá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",
- "Show phpinfo" : "phpinfo mutatása",
+ "Show phpinfo" : "A phpinfo megjelenítése",
+ "FPM worker pool" : "FPM futtatókészlet",
+ "Pool name:" : "Készlet neve:",
+ "Pool type:" : "Készlet típusa:",
+ "Start time:" : "Kezdési idő:",
+ "Accepted connections:" : "Fogadott kapcsolatok:",
+ "Total processes:" : "Összes folyamat:",
+ "Active processes:" : "Aktív folyamatok:",
+ "Idle processes:" : "Tétlen folyamatok:",
+ "Listen queue:" : "Figyelési sor:",
+ "Slow requests:" : "Lassú kérések:",
+ "Max listen queue:" : "Legnagyobb figyelési sor:",
+ "Max active processes:" : "Legtöbb aktív folyamat:",
+ "Max children reached:" : "Legtöbb elért gyermekfolyamat:",
"Database" : "Adatbázis:",
"Type:" : "Típus:",
"External monitoring tool" : "Külső rendszerfelügyeleti eszköz",
@@ -67,14 +91,9 @@ OC.L10N.register(
"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",
+ "Skip server update" : "Kiszolgálófrissítés kihagyása",
"To use an access token, please generate one then set it using the following command:" : "A hozzáférési token használatához hozzon létre egyet, majd állítsa be a következő paranccsal:",
- "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ezután adja át a tokent az „NC-Token” fejléccel, amikor lekérdezi a fenti URL-t.",
- "Load average: {cpu} (last minute)" : "Terhelési átlag: {cpu} (utolsó perc)",
- "DNS:" : "DNS:",
- "Total users:" : "Összes felhasználó:",
- "24 hours:" : "24 óra:",
- "1 hour:" : "1 óra:",
- "5 mins:" : "5 perc:"
+ "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"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/hu.json b/l10n/hu.json
index b2834c96..ec54c99f 100644
--- a/l10n/hu.json
+++ b/l10n/hu.json
@@ -1,20 +1,26 @@
{ "translations": {
"CPU info not available" : "A CPU információk nem érhetők el",
- "RAM: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "RAM: Összesen: {memTotalBytes}/Jelenlegi használat: {memUsageBytes}",
- "RAM info not available" : "A RAM információk nem érhetők el",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "CSEREHELY: Összesen: {swapTotalBytes}/Jelenlegi használat: {swapUsageBytes}",
- "SWAP info not available" : "A cserehely információk nem érhetők el",
- "Copied!" : "Másolva.",
+ "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.",
+ "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",
"Monitoring" : "Rendszerfelügyelet",
"Monitoring app with useful server information" : "Rendszerfelügyeleti alkalmazás hasznos kiszolgálóinformációkkal",
- "Provides useful server information, such as CPU load, RAM usage, disk usage, number of users, etc." : "Hasznos kiszolgálóinformációk nyújtása, mint a CPU terhelés, RAM foglaltság, felhasználók száma, stb.",
+ "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:",
- "Unknown Processor" : "Ismeretlen processzor",
+ "threads" : "szál",
"Memory:" : "Memória:",
"Server time:" : "Kiszolgálóidő:",
"Uptime:" : "Működési idő:",
@@ -41,6 +47,10 @@
"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:",
@@ -53,11 +63,25 @@
"Version:" : "Verzió:",
"Memory limit:" : "Memóriakorlá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",
- "Show phpinfo" : "phpinfo mutatása",
+ "Show phpinfo" : "A phpinfo megjelenítése",
+ "FPM worker pool" : "FPM futtatókészlet",
+ "Pool name:" : "Készlet neve:",
+ "Pool type:" : "Készlet típusa:",
+ "Start time:" : "Kezdési idő:",
+ "Accepted connections:" : "Fogadott kapcsolatok:",
+ "Total processes:" : "Összes folyamat:",
+ "Active processes:" : "Aktív folyamatok:",
+ "Idle processes:" : "Tétlen folyamatok:",
+ "Listen queue:" : "Figyelési sor:",
+ "Slow requests:" : "Lassú kérések:",
+ "Max listen queue:" : "Legnagyobb figyelési sor:",
+ "Max active processes:" : "Legtöbb aktív folyamat:",
+ "Max children reached:" : "Legtöbb elért gyermekfolyamat:",
"Database" : "Adatbázis:",
"Type:" : "Típus:",
"External monitoring tool" : "Külső rendszerfelügyeleti eszköz",
@@ -65,14 +89,9 @@
"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",
+ "Skip server update" : "Kiszolgálófrissítés kihagyása",
"To use an access token, please generate one then set it using the following command:" : "A hozzáférési token használatához hozzon létre egyet, majd állítsa be a következő paranccsal:",
- "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Ezután adja át a tokent az „NC-Token” fejléccel, amikor lekérdezi a fenti URL-t.",
- "Load average: {cpu} (last minute)" : "Terhelési átlag: {cpu} (utolsó perc)",
- "DNS:" : "DNS:",
- "Total users:" : "Összes felhasználó:",
- "24 hours:" : "24 óra:",
- "1 hour:" : "1 óra:",
- "5 mins:" : "5 perc:"
+ "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"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/hy.js b/l10n/hy.js
index e3bb913b..59b3623a 100644
--- a/l10n/hy.js
+++ b/l10n/hy.js
@@ -5,7 +5,9 @@ OC.L10N.register(
"Not supported!" : "Չի՛ սպասարկվում։",
"Press ⌘-C to copy." : "Սեղմել ⌘-C պատճենելու համար։",
"Press Ctrl-C to copy." : "Սեղմել Ctrl-C պատճենելու համար։",
+ "Unknown" : "Անհայտ",
"Size:" : "Չափս.",
+ "seconds" : "վայրկյան",
"Type:" : "Տիպ.",
"Copy" : "պատճենահանել"
},
diff --git a/l10n/hy.json b/l10n/hy.json
index ab2d4060..9293681c 100644
--- a/l10n/hy.json
+++ b/l10n/hy.json
@@ -3,7 +3,9 @@
"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);"
diff --git a/l10n/ia.js b/l10n/ia.js
index aeff2842..b4912242 100644
--- a/l10n/ia.js
+++ b/l10n/ia.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Controlante",
"Size:" : "Dimension:",
@@ -14,6 +15,7 @@ OC.L10N.register(
"Users:" : "Usatores:",
"PHP" : "PHP",
"Version:" : "Version:",
+ "seconds" : "secundas",
"Upload max size:" : "Dimension maxime de incarga:",
"Database" : "Base de datos",
"Type:" : "Typo:",
diff --git a/l10n/ia.json b/l10n/ia.json
index f2e07b81..250f6ebc 100644
--- a/l10n/ia.json
+++ b/l10n/ia.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Controlante",
"Size:" : "Dimension:",
@@ -12,6 +13,7 @@
"Users:" : "Usatores:",
"PHP" : "PHP",
"Version:" : "Version:",
+ "seconds" : "secundas",
"Upload max size:" : "Dimension maxime de incarga:",
"Database" : "Base de datos",
"Type:" : "Typo:",
diff --git a/l10n/id.js b/l10n/id.js
index 3b10c2df..e1b2d23d 100644
--- a/l10n/id.js
+++ b/l10n/id.js
@@ -1,24 +1,103 @@
OC.L10N.register(
"serverinfo",
{
+ "CPU info not available" : "Info CPU tidak tersedia",
+ "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}",
+ "RAM info not available" : "Info RAM tidak tersedia",
+ "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.",
+ "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.",
+ "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",
"System" : "Sistem",
"Monitoring" : "Pemantauan",
+ "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.",
+ "Operating System:" : "Sistem Operasi:",
+ "CPU:" : "CPU:",
+ "threads" : "thread",
+ "Memory:" : "Memori:",
+ "Server time:" : "Waktu server:",
+ "Uptime:" : "Waktu aktif:",
"Temperature" : "Suhu",
+ "Load" : "Beban",
+ "Memory" : "Memori",
+ "Disk" : "Disk",
+ "Mount:" : "Mount:",
+ "Filesystem:" : "Sistem file:",
"Size:" : "Ukuran:",
- "Files:" : "Berkas:",
+ "Available:" : "Tersedia:",
+ "Used:" : "Digunakan:",
+ "Files:" : "File:",
+ "Storages:" : "Penyimpanan:",
+ "Free Space:" : "Ruang kosong:",
+ "Network" : "Jaringan",
+ "Hostname:" : "Nama host:",
+ "Gateway:" : "Gateway:",
+ "Status:" : "Status:",
+ "Speed:" : "Kecepatan:",
+ "Duplex:" : "Dupleks:",
+ "MAC:" : "MAC:",
+ "IPv4:" : "IPv4:",
+ "IPv6:" : "IPv6:",
"Active users" : "Pengguna aktif",
- "Shares" : "Dibagikan",
+ "Last hour" : "1 jam terakhir",
+ "%s%% of all users" : "%s%% dari semua pengguna",
+ "Last 24 Hours" : "24 Jam Terakhir",
+ "Last 7 Days" : "7 Hari Terakhir",
+ "Last 30 Days" : "30 Hari Terakhir",
+ "Shares" : "Pembagian",
"Users:" : "Pengguna:",
+ "Groups:" : "Grup:",
+ "Links:" : "Tautan:",
+ "Emails:" : "Email:",
+ "Federated sent:" : "Federasi dikirim:",
+ "Federated received:" : "Federasi diterima:",
+ "Talk conversations:" : "Percakapan Talk:",
"PHP" : "PHP",
"Version:" : "Versi:",
- "Upload max size:" : "Ukuran maksimal unggah",
- "Database" : "Database",
- "Type:" : "Tipe",
+ "Memory limit:" : "Batas memori:",
+ "MB" : "MB",
+ "Max execution time:" : "Waktu eksekusi maks.:",
+ "seconds" : "detik",
+ "Upload max size:" : "Ukuran unggah maks.:",
+ "OPcache Revalidate Frequency:" : "Frekuensi Validasi Ulang OPcache:",
+ "Extensions:" : "Ekstensi:",
+ "Unable to list extensions" : "Tidak dapat menampilkan daftar 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:",
+ "Database" : "Basis data",
+ "Type:" : "Jenis:",
"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",
+ "Output in JSON" : "Keluaran dalam JSON",
+ "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)",
+ "Skip server update" : "Lewati pembaruan server",
+ "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.",
+ "Unknown Processor" : "Prosesor Tidak Dikenal"
},
"nplurals=1; plural=0;");
diff --git a/l10n/id.json b/l10n/id.json
index 2b584bfe..3f4780bf 100644
--- a/l10n/id.json
+++ b/l10n/id.json
@@ -1,22 +1,101 @@
{ "translations": {
+ "CPU info not available" : "Info CPU tidak tersedia",
+ "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}",
+ "RAM info not available" : "Info RAM tidak tersedia",
+ "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.",
+ "Press Ctrl-C to copy." : "Tekan Ctrl-C untuk menyalin.",
+ "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",
"System" : "Sistem",
"Monitoring" : "Pemantauan",
+ "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.",
+ "Operating System:" : "Sistem Operasi:",
+ "CPU:" : "CPU:",
+ "threads" : "thread",
+ "Memory:" : "Memori:",
+ "Server time:" : "Waktu server:",
+ "Uptime:" : "Waktu aktif:",
"Temperature" : "Suhu",
+ "Load" : "Beban",
+ "Memory" : "Memori",
+ "Disk" : "Disk",
+ "Mount:" : "Mount:",
+ "Filesystem:" : "Sistem file:",
"Size:" : "Ukuran:",
- "Files:" : "Berkas:",
+ "Available:" : "Tersedia:",
+ "Used:" : "Digunakan:",
+ "Files:" : "File:",
+ "Storages:" : "Penyimpanan:",
+ "Free Space:" : "Ruang kosong:",
+ "Network" : "Jaringan",
+ "Hostname:" : "Nama host:",
+ "Gateway:" : "Gateway:",
+ "Status:" : "Status:",
+ "Speed:" : "Kecepatan:",
+ "Duplex:" : "Dupleks:",
+ "MAC:" : "MAC:",
+ "IPv4:" : "IPv4:",
+ "IPv6:" : "IPv6:",
"Active users" : "Pengguna aktif",
- "Shares" : "Dibagikan",
+ "Last hour" : "1 jam terakhir",
+ "%s%% of all users" : "%s%% dari semua pengguna",
+ "Last 24 Hours" : "24 Jam Terakhir",
+ "Last 7 Days" : "7 Hari Terakhir",
+ "Last 30 Days" : "30 Hari Terakhir",
+ "Shares" : "Pembagian",
"Users:" : "Pengguna:",
+ "Groups:" : "Grup:",
+ "Links:" : "Tautan:",
+ "Emails:" : "Email:",
+ "Federated sent:" : "Federasi dikirim:",
+ "Federated received:" : "Federasi diterima:",
+ "Talk conversations:" : "Percakapan Talk:",
"PHP" : "PHP",
"Version:" : "Versi:",
- "Upload max size:" : "Ukuran maksimal unggah",
- "Database" : "Database",
- "Type:" : "Tipe",
+ "Memory limit:" : "Batas memori:",
+ "MB" : "MB",
+ "Max execution time:" : "Waktu eksekusi maks.:",
+ "seconds" : "detik",
+ "Upload max size:" : "Ukuran unggah maks.:",
+ "OPcache Revalidate Frequency:" : "Frekuensi Validasi Ulang OPcache:",
+ "Extensions:" : "Ekstensi:",
+ "Unable to list extensions" : "Tidak dapat menampilkan daftar 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:",
+ "Database" : "Basis data",
+ "Type:" : "Jenis:",
"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",
+ "Output in JSON" : "Keluaran dalam JSON",
+ "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)",
+ "Skip server update" : "Lewati pembaruan server",
+ "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.",
+ "Unknown Processor" : "Prosesor Tidak Dikenal"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/is.js b/l10n/is.js
index a4dfd191..584fb89a 100644
--- a/l10n/is.js
+++ b/l10n/is.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"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ð",
"Monitoring" : "Vöktun",
"Monitoring app with useful server information" : "Vöktunarforrit sem nær í ýmsar notadrjúgar upplýsingar um þjón",
@@ -24,11 +25,11 @@ OC.L10N.register(
"Users:" : "Notendur:",
"PHP" : "PHP",
"Version:" : "Útgáfa:",
+ "seconds" : "sekúndum",
"Upload max size:" : "Hámarksstærð innsendingar:",
"Database" : "Gagnagrunnur",
"Type:" : "Tegund:",
"External monitoring tool" : "Utanaðkomandi vöktunartól",
- "Copy" : "Afrita",
- "Total users:" : "Heildarfjöldi notenda:"
+ "Copy" : "Afrita"
},
"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);");
diff --git a/l10n/is.json b/l10n/is.json
index 213e489a..3abf81a9 100644
--- a/l10n/is.json
+++ b/l10n/is.json
@@ -4,6 +4,7 @@
"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ð",
"Monitoring" : "Vöktun",
"Monitoring app with useful server information" : "Vöktunarforrit sem nær í ýmsar notadrjúgar upplýsingar um þjón",
@@ -22,11 +23,11 @@
"Users:" : "Notendur:",
"PHP" : "PHP",
"Version:" : "Útgáfa:",
+ "seconds" : "sekúndum",
"Upload max size:" : "Hámarksstærð innsendingar:",
"Database" : "Gagnagrunnur",
"Type:" : "Tegund:",
"External monitoring tool" : "Utanaðkomandi vöktunartól",
- "Copy" : "Afrita",
- "Total users:" : "Heildarfjöldi notenda:"
+ "Copy" : "Afrita"
},"pluralForm" :"nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);"
}
\ No newline at end of file
diff --git a/l10n/it.js b/l10n/it.js
index a04f8b15..b5cdc0e0 100644
--- a/l10n/it.js
+++ b/l10n/it.js
@@ -15,13 +15,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Processore sconosciuto",
"Memory:" : "Memoria:",
"Server time:" : "Ora del server:",
"Uptime:" : "Tempo di attività:",
@@ -64,11 +64,16 @@ OC.L10N.register(
"Version:" : "Versione:",
"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",
@@ -79,11 +84,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Carico medio: {cpu} (ultimo minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Utenti totali:",
- "24 hours:" : "24 ore:",
- "1 hour:" : "1 ora:",
- "5 mins:" : "5 min.:"
+ "Unknown Processor" : "Processore sconosciuto"
},
"nplurals=3; plural=n == 1 ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;");
diff --git a/l10n/it.json b/l10n/it.json
index f420afac..ada0820a 100644
--- a/l10n/it.json
+++ b/l10n/it.json
@@ -13,13 +13,13 @@
"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",
"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:",
- "Unknown Processor" : "Processore sconosciuto",
"Memory:" : "Memoria:",
"Server time:" : "Ora del server:",
"Uptime:" : "Tempo di attività:",
@@ -62,11 +62,16 @@
"Version:" : "Versione:",
"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",
@@ -77,11 +82,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Carico medio: {cpu} (ultimo minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Utenti totali:",
- "24 hours:" : "24 ore:",
- "1 hour:" : "1 ora:",
- "5 mins:" : "5 min.:"
+ "Unknown Processor" : "Processore sconosciuto"
},"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 43079565..d2bb2a34 100644
--- a/l10n/ja.js
+++ b/l10n/ja.js
@@ -2,6 +2,11 @@ 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}",
@@ -10,13 +15,14 @@ OC.L10N.register(
"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:" : "OS:",
"CPU:" : "CPU:",
- "Unknown Processor" : "不明なプロセッサー",
+ "threads" : "スレッド",
"Memory:" : "メモリ:",
"Server time:" : "サーバーの時間:",
"Uptime:" : "稼働時間:",
@@ -37,27 +43,57 @@ OC.L10N.register(
"Gateway:" : "ゲートウェイ:",
"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:" : "会話:",
"PHP" : "PHP",
"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:" : "プール名:",
+ "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:" : "最大の子数に達した:",
"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\" ヘッダーでトークンを渡します。",
- "Load average: {cpu} (last minute)" : "平均ロード: {cpu} (最終11分)",
- "DNS:" : "DNS:",
- "Total users:" : "総ユーザー数:"
+ "Unknown Processor" : "不明なプロセッサー"
},
"nplurals=1; plural=0;");
diff --git a/l10n/ja.json b/l10n/ja.json
index e7504dea..2b63b2c2 100644
--- a/l10n/ja.json
+++ b/l10n/ja.json
@@ -1,5 +1,10 @@
{ "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}",
@@ -8,13 +13,14 @@
"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:" : "OS:",
"CPU:" : "CPU:",
- "Unknown Processor" : "不明なプロセッサー",
+ "threads" : "スレッド",
"Memory:" : "メモリ:",
"Server time:" : "サーバーの時間:",
"Uptime:" : "稼働時間:",
@@ -35,27 +41,57 @@
"Gateway:" : "ゲートウェイ:",
"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:" : "会話:",
"PHP" : "PHP",
"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:" : "プール名:",
+ "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:" : "最大の子数に達した:",
"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\" ヘッダーでトークンを渡します。",
- "Load average: {cpu} (last minute)" : "平均ロード: {cpu} (最終11分)",
- "DNS:" : "DNS:",
- "Total users:" : "総ユーザー数:"
+ "Unknown Processor" : "不明なプロセッサー"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/ka.js b/l10n/ka.js
index 400078c4..d54a1439 100644
--- a/l10n/ka.js
+++ b/l10n/ka.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Unknown Processor",
"Memory:" : "Memory:",
"Server time:" : "Server time:",
"Uptime:" : "Uptime:",
@@ -54,6 +54,7 @@ OC.L10N.register(
"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:",
@@ -68,11 +69,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Load average: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Total users:",
- "24 hours:" : "24 hours:",
- "1 hour:" : "1 hour:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Unknown Processor"
},
"nplurals=2; plural=(n!=1);");
diff --git a/l10n/ka.json b/l10n/ka.json
index 8ed7060a..19a0aa0c 100644
--- a/l10n/ka.json
+++ b/l10n/ka.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Unknown Processor",
"Memory:" : "Memory:",
"Server time:" : "Server time:",
"Uptime:" : "Uptime:",
@@ -52,6 +52,7 @@
"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:",
@@ -66,11 +67,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Load average: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Total users:",
- "24 hours:" : "24 hours:",
- "1 hour:" : "1 hour:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Unknown Processor"
},"pluralForm" :"nplurals=2; plural=(n!=1);"
}
\ No newline at end of file
diff --git a/l10n/ka_GE.js b/l10n/ka_GE.js
index 1981f190..7017c60b 100644
--- a/l10n/ka_GE.js
+++ b/l10n/ka_GE.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"Not supported!" : "არაა მხარდაჭერილი",
"Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.",
"Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.",
+ "Unknown" : "უცნობია",
"System" : "სისტემა",
"Monitoring" : "მონიტორინგი",
"Temperature" : "ტემპერატურა",
diff --git a/l10n/ka_GE.json b/l10n/ka_GE.json
index 13b70391..336ec7e1 100644
--- a/l10n/ka_GE.json
+++ b/l10n/ka_GE.json
@@ -3,6 +3,7 @@
"Not supported!" : "არაა მხარდაჭერილი",
"Press ⌘-C to copy." : "კოპირებისთვის დააჭირეთ ⌘-C-ს.",
"Press Ctrl-C to copy." : "კოპირებისთვის დააჭირეთ Ctrl-C-ს.",
+ "Unknown" : "უცნობია",
"System" : "სისტემა",
"Monitoring" : "მონიტორინგი",
"Temperature" : "ტემპერატურა",
diff --git a/l10n/kab.js b/l10n/kab.js
index c76d05a7..32290c1e 100644
--- a/l10n/kab.js
+++ b/l10n/kab.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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"
},
diff --git a/l10n/kab.json b/l10n/kab.json
index 93e45686..b2611397 100644
--- a/l10n/kab.json
+++ b/l10n/kab.json
@@ -3,6 +3,7 @@
"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);"
diff --git a/l10n/ko.js b/l10n/ko.js
index d3812f44..e64ded9a 100644
--- a/l10n/ko.js
+++ b/l10n/ko.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"Not supported!" : "지원하지 않음!",
"Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.",
"Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.",
+ "Unknown" : "알 수 없음",
"System" : "시스템",
"Monitoring" : "모니터링",
"Monitoring app with useful server information" : "서버 정보를 표시하는 모니터링 앱",
@@ -24,11 +25,11 @@ OC.L10N.register(
"Users:" : "사용자:",
"PHP" : "PHP",
"Version:" : "버전:",
+ "seconds" : "초",
"Upload max size:" : "업로드 최대 크기:",
"Database" : "데이터베이스",
"Type:" : "종류:",
"External monitoring tool" : "외부 모니터링 도구",
- "Copy" : "복사",
- "Total users:" : "총 사용자:"
+ "Copy" : "복사"
},
"nplurals=1; plural=0;");
diff --git a/l10n/ko.json b/l10n/ko.json
index 999593d1..149d913d 100644
--- a/l10n/ko.json
+++ b/l10n/ko.json
@@ -4,6 +4,7 @@
"Not supported!" : "지원하지 않음!",
"Press ⌘-C to copy." : "복사하려면 ⌘-C 키를 누르십시오.",
"Press Ctrl-C to copy." : "복사하려면 Ctrl-C 키를 누르십시오.",
+ "Unknown" : "알 수 없음",
"System" : "시스템",
"Monitoring" : "모니터링",
"Monitoring app with useful server information" : "서버 정보를 표시하는 모니터링 앱",
@@ -22,11 +23,11 @@
"Users:" : "사용자:",
"PHP" : "PHP",
"Version:" : "버전:",
+ "seconds" : "초",
"Upload max size:" : "업로드 최대 크기:",
"Database" : "데이터베이스",
"Type:" : "종류:",
"External monitoring tool" : "외부 모니터링 도구",
- "Copy" : "복사",
- "Total users:" : "총 사용자:"
+ "Copy" : "복사"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/lb.js b/l10n/lb.js
index aaadd191..f63834ce 100644
--- a/l10n/lb.js
+++ b/l10n/lb.js
@@ -5,8 +5,10 @@ OC.L10N.register(
"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"
},
diff --git a/l10n/lb.json b/l10n/lb.json
index c80df457..346fecb8 100644
--- a/l10n/lb.json
+++ b/l10n/lb.json
@@ -3,8 +3,10 @@
"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);"
diff --git a/l10n/lo.js b/l10n/lo.js
index f9a56d46..d3897ea9 100644
--- a/l10n/lo.js
+++ b/l10n/lo.js
@@ -1,10 +1,99 @@
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",
+ "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",
+ "Load" : "Load",
+ "Memory" : "Memory",
+ "Disk" : "Disk",
+ "Mount:" : "Mount:",
+ "Filesystem:" : "Filesystem:",
+ "Size:" : "Size:",
+ "Available:" : "Available:",
+ "Used:" : "Used:",
+ "Files:" : "Files:",
+ "Storages:" : "Storages:",
+ "Free Space:" : "Free Space:",
+ "Network" : "Network",
+ "Hostname:" : "Hostname:",
+ "Gateway:" : "Gateway:",
+ "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" : "ການແບ່ງປັນ",
- "Copy" : "ສຳເນົາ"
+ "Users:" : "Users:",
+ "Groups:" : "Groups:",
+ "Links:" : "Links:",
+ "Emails:" : "Emails:",
+ "Federated sent:" : "Federated sent:",
+ "Federated received:" : "Federated received:",
+ "Talk conversations:" : "Talk conversations:",
+ "PHP" : "PHP",
+ "Version:" : "Version:",
+ "Memory limit:" : "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:",
+ "Pool type:" : "Pool type:",
+ "Start time:" : "Start time:",
+ "Accepted connections:" : "Accepted connections:",
+ "Total processes:" : "Total processes:",
+ "Active processes:" : "Active processes:",
+ "Idle processes:" : "Idle processes:",
+ "Listen queue:" : "Listen queue:",
+ "Slow requests:" : "Slow requests:",
+ "Max listen queue:" : "Max listen queue:",
+ "Max active processes:" : "Max active processes:",
+ "Max children reached:" : "Max children reached:",
+ "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" : "ສຳເນົາ",
+ "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"
},
"nplurals=1; plural=0;");
diff --git a/l10n/lo.json b/l10n/lo.json
index 8fd74fd0..3dfa617f 100644
--- a/l10n/lo.json
+++ b/l10n/lo.json
@@ -1,8 +1,97 @@
{ "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",
+ "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",
+ "Load" : "Load",
+ "Memory" : "Memory",
+ "Disk" : "Disk",
+ "Mount:" : "Mount:",
+ "Filesystem:" : "Filesystem:",
+ "Size:" : "Size:",
+ "Available:" : "Available:",
+ "Used:" : "Used:",
+ "Files:" : "Files:",
+ "Storages:" : "Storages:",
+ "Free Space:" : "Free Space:",
+ "Network" : "Network",
+ "Hostname:" : "Hostname:",
+ "Gateway:" : "Gateway:",
+ "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" : "ການແບ່ງປັນ",
- "Copy" : "ສຳເນົາ"
+ "Users:" : "Users:",
+ "Groups:" : "Groups:",
+ "Links:" : "Links:",
+ "Emails:" : "Emails:",
+ "Federated sent:" : "Federated sent:",
+ "Federated received:" : "Federated received:",
+ "Talk conversations:" : "Talk conversations:",
+ "PHP" : "PHP",
+ "Version:" : "Version:",
+ "Memory limit:" : "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:",
+ "Pool type:" : "Pool type:",
+ "Start time:" : "Start time:",
+ "Accepted connections:" : "Accepted connections:",
+ "Total processes:" : "Total processes:",
+ "Active processes:" : "Active processes:",
+ "Idle processes:" : "Idle processes:",
+ "Listen queue:" : "Listen queue:",
+ "Slow requests:" : "Slow requests:",
+ "Max listen queue:" : "Max listen queue:",
+ "Max active processes:" : "Max active processes:",
+ "Max children reached:" : "Max children reached:",
+ "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" : "ສຳເນົາ",
+ "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"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/lt_LT.js b/l10n/lt_LT.js
index e1090cc9..61dcceb7 100644
--- a/l10n/lt_LT.js
+++ b/l10n/lt_LT.js
@@ -2,17 +2,26 @@ 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.",
+ "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:",
- "Unknown Processor" : "Nežinomas procesorius",
"Memory:" : "Atmintis:",
+ "Server time:" : "Serverio laikas:",
"Temperature" : "Temperatūra",
"Load" : "Apkrova",
"Memory" : "Atmintis",
@@ -20,6 +29,7 @@ OC.L10N.register(
"Filesystem:" : "Failų sistema:",
"Size:" : "Dydis:",
"Available:" : "Prieinama:",
+ "Used:" : "Panaudota:",
"Files:" : "Failai:",
"Storages:" : "Saugyklos:",
"Free Space:" : "Laisva vieta:",
@@ -31,22 +41,29 @@ OC.L10N.register(
"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:",
"PHP" : "PHP",
"Version:" : "Versija:",
+ "Memory limit:" : "Atminties limitas:",
+ "Max execution time:" : "Maksimalus vykdymo laikas:",
+ "seconds" : "sekundes",
"Upload max size:" : "Maksimalus įkeliamo failo dydis:",
+ "Extensions:" : "Priedai:",
"Show phpinfo" : "Rodyti phpinfo",
"Database" : "Duomenų bazė",
"Type:" : "Tipas:",
"External monitoring tool" : "Išorinis stebėjimo įrankis",
"Copy" : "Kopijuoti",
- "Load average: {cpu} (last minute)" : "Apkrovos vidurkis: {cpu} (paskutinė minutė)",
- "DNS:" : "DNS:",
- "Total users:" : "Iš viso naudotojų:",
- "24 hours:" : "24 valandos:",
- "1 hour:" : "1 valanda:",
- "5 mins:" : "5 minutės:"
+ "Output in JSON" : "JSON išvedimas",
+ "Skip server update" : "Praleisti serverio atnaujinimą",
+ "Unknown Processor" : "Nežinomas procesorius"
},
"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 1827c84c..098037f3 100644
--- a/l10n/lt_LT.json
+++ b/l10n/lt_LT.json
@@ -1,16 +1,25 @@
{ "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.",
+ "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:",
- "Unknown Processor" : "Nežinomas procesorius",
"Memory:" : "Atmintis:",
+ "Server time:" : "Serverio laikas:",
"Temperature" : "Temperatūra",
"Load" : "Apkrova",
"Memory" : "Atmintis",
@@ -18,6 +27,7 @@
"Filesystem:" : "Failų sistema:",
"Size:" : "Dydis:",
"Available:" : "Prieinama:",
+ "Used:" : "Panaudota:",
"Files:" : "Failai:",
"Storages:" : "Saugyklos:",
"Free Space:" : "Laisva vieta:",
@@ -29,22 +39,29 @@
"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:",
"PHP" : "PHP",
"Version:" : "Versija:",
+ "Memory limit:" : "Atminties limitas:",
+ "Max execution time:" : "Maksimalus vykdymo laikas:",
+ "seconds" : "sekundes",
"Upload max size:" : "Maksimalus įkeliamo failo dydis:",
+ "Extensions:" : "Priedai:",
"Show phpinfo" : "Rodyti phpinfo",
"Database" : "Duomenų bazė",
"Type:" : "Tipas:",
"External monitoring tool" : "Išorinis stebėjimo įrankis",
"Copy" : "Kopijuoti",
- "Load average: {cpu} (last minute)" : "Apkrovos vidurkis: {cpu} (paskutinė minutė)",
- "DNS:" : "DNS:",
- "Total users:" : "Iš viso naudotojų:",
- "24 hours:" : "24 valandos:",
- "1 hour:" : "1 valanda:",
- "5 mins:" : "5 minutės:"
+ "Output in JSON" : "JSON išvedimas",
+ "Skip server update" : "Praleisti serverio atnaujinimą",
+ "Unknown Processor" : "Nežinomas procesorius"
},"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 aaee2fc7..5f2dbdb5 100644
--- a/l10n/lv.js
+++ b/l10n/lv.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"Monitoring" : "Uzraudzība",
- "Monitoring app with useful server information" : "Monitoringa lietotne ar noderīgu servera informāciju",
+ "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:",
- "Unknown Processor" : "Nezināms procesors",
"Memory:" : "Atmiņa:",
"Server time:" : "Servera laiks:",
"Uptime:" : "Darba laiks:",
@@ -47,6 +47,7 @@ OC.L10N.register(
"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",
@@ -54,10 +55,8 @@ OC.L10N.register(
"Type:" : "Veids:",
"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 talonu, lūdzu, ģenerējiet to un iestatiet to, izmantojot šādu komandu:",
- "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pēc tam nododiet marķieri ar galveni \"NC-Token\", veicot vaicājumu iepriekš norādītajam URL.",
- "Load average: {cpu} (last minute)" : "Vidējā slodze: {cpu} (pēdējā minūte)",
- "DNS:" : "DNS:",
- "Total users:" : "Kopējais lietotāju skaits:"
+ "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"
},
"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 c00713ca..36c619d6 100644
--- a/l10n/lv.json
+++ b/l10n/lv.json
@@ -8,13 +8,13 @@
"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",
"Monitoring" : "Uzraudzība",
- "Monitoring app with useful server information" : "Monitoringa lietotne ar noderīgu servera informāciju",
+ "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:",
- "Unknown Processor" : "Nezināms procesors",
"Memory:" : "Atmiņa:",
"Server time:" : "Servera laiks:",
"Uptime:" : "Darba laiks:",
@@ -45,6 +45,7 @@
"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",
@@ -52,10 +53,8 @@
"Type:" : "Veids:",
"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 talonu, lūdzu, ģenerējiet to un iestatiet to, izmantojot šādu komandu:",
- "Then pass the token with the \"NC-Token\" header when querying the above URL." : "Pēc tam nododiet marķieri ar galveni \"NC-Token\", veicot vaicājumu iepriekš norādītajam URL.",
- "Load average: {cpu} (last minute)" : "Vidējā slodze: {cpu} (pēdējā minūte)",
- "DNS:" : "DNS:",
- "Total users:" : "Kopējais lietotāju skaits:"
+ "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"
},"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 81d257fb..e4a9e9d6 100644
--- a/l10n/mk.js
+++ b/l10n/mk.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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." : "Овозможува корисни информации за серверот, како искористеност на процесорот, искористеност на меморијата, искористеност на просторот на дискот, број на корисници, итн.",
"Operating System:" : "Оперативен систем",
"CPU:" : "Процесор:",
- "Unknown Processor" : "Непознат процесор",
"Memory:" : "Меморија:",
"Server time:" : "Време на серверот:",
"Uptime:" : "Време на работа:",
@@ -54,6 +54,7 @@ OC.L10N.register(
"Version:" : "Верзија:",
"Memory limit:" : "Лимит на меморијата:",
"Max execution time:" : "Максимално време на извршување:",
+ "seconds" : "секунди",
"Upload max size:" : "Максимална големина на прикачување:",
"OPcache Revalidate Frequency:" : "Фреквенција на ревалидација на OPcache:",
"Extensions:" : "Екстензија:",
@@ -65,11 +66,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Просечно искористување: {cpu} (последна минута)",
- "DNS:" : "DNS:",
- "Total users:" : "Вкупно корисници:",
- "24 hours:" : "24 часа:",
- "1 hour:" : "1 час:",
- "5 mins:" : "5 минути:"
+ "Unknown Processor" : "Непознат процесор"
},
"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;");
diff --git a/l10n/mk.json b/l10n/mk.json
index 5d7cf33d..a57f4c5e 100644
--- a/l10n/mk.json
+++ b/l10n/mk.json
@@ -8,13 +8,13 @@
"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." : "Овозможува корисни информации за серверот, како искористеност на процесорот, искористеност на меморијата, искористеност на просторот на дискот, број на корисници, итн.",
"Operating System:" : "Оперативен систем",
"CPU:" : "Процесор:",
- "Unknown Processor" : "Непознат процесор",
"Memory:" : "Меморија:",
"Server time:" : "Време на серверот:",
"Uptime:" : "Време на работа:",
@@ -52,6 +52,7 @@
"Version:" : "Верзија:",
"Memory limit:" : "Лимит на меморијата:",
"Max execution time:" : "Максимално време на извршување:",
+ "seconds" : "секунди",
"Upload max size:" : "Максимална големина на прикачување:",
"OPcache Revalidate Frequency:" : "Фреквенција на ревалидација на OPcache:",
"Extensions:" : "Екстензија:",
@@ -63,11 +64,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Просечно искористување: {cpu} (последна минута)",
- "DNS:" : "DNS:",
- "Total users:" : "Вкупно корисници:",
- "24 hours:" : "24 часа:",
- "1 hour:" : "1 час:",
- "5 mins:" : "5 минути:"
+ "Unknown Processor" : "Непознат процесор"
},"pluralForm" :"nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;"
}
\ No newline at end of file
diff --git a/l10n/mn.js b/l10n/mn.js
index d064e6f2..66544641 100644
--- a/l10n/mn.js
+++ b/l10n/mn.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"Not supported!" : "Дэмжигдэхгүй",
"Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.",
"Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.",
+ "Unknown" : "Үл танигдах зүйл",
"System" : "сисмем",
"Monitoring" : "Хяналт",
"Size:" : "Хэмжээ:",
@@ -14,6 +15,7 @@ OC.L10N.register(
"Users:" : "Хэрэглэгчид:",
"PHP" : "PHP",
"Version:" : "Хувилбар:",
+ "seconds" : "секунд",
"Database" : "Өгөгдлийн сан",
"Type:" : "Төрөл:",
"Copy" : "Хуулах"
diff --git a/l10n/mn.json b/l10n/mn.json
index f1ebc360..10283370 100644
--- a/l10n/mn.json
+++ b/l10n/mn.json
@@ -3,6 +3,7 @@
"Not supported!" : "Дэмжигдэхгүй",
"Press ⌘-C to copy." : "Хуулахын тулд ⌘-C дарна уу.",
"Press Ctrl-C to copy." : "Хуулахын тулд Ctrl-C дарна уу.",
+ "Unknown" : "Үл танигдах зүйл",
"System" : "сисмем",
"Monitoring" : "Хяналт",
"Size:" : "Хэмжээ:",
@@ -12,6 +13,7 @@
"Users:" : "Хэрэглэгчид:",
"PHP" : "PHP",
"Version:" : "Хувилбар:",
+ "seconds" : "секунд",
"Database" : "Өгөгдлийн сан",
"Type:" : "Төрөл:",
"Copy" : "Хуулах"
diff --git a/l10n/nb.js b/l10n/nb.js
index 53b2fae8..0b2c83a6 100644
--- a/l10n/nb.js
+++ b/l10n/nb.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Ukjent prosessor",
"Memory:" : "Minne:",
"Server time:" : "Servertid:",
"Uptime:" : "Oppetid:",
@@ -55,6 +55,7 @@ OC.L10N.register(
"Version:" : "Versjon:",
"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:",
@@ -70,11 +71,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Gjennomsnittslast: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Totalt antall brukere:",
- "24 hours:" : "24 timer:",
- "1 hour:" : "1 time:",
- "5 mins:" : "5 minutter:"
+ "Unknown Processor" : "Ukjent prosessor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/nb.json b/l10n/nb.json
index 671dc0f7..480601b5 100644
--- a/l10n/nb.json
+++ b/l10n/nb.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Ukjent prosessor",
"Memory:" : "Minne:",
"Server time:" : "Servertid:",
"Uptime:" : "Oppetid:",
@@ -53,6 +53,7 @@
"Version:" : "Versjon:",
"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:",
@@ -68,11 +69,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Gjennomsnittslast: {cpu} (last minute)",
- "DNS:" : "DNS:",
- "Total users:" : "Totalt antall brukere:",
- "24 hours:" : "24 timer:",
- "1 hour:" : "1 time:",
- "5 mins:" : "5 minutter:"
+ "Unknown Processor" : "Ukjent prosessor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/nl.js b/l10n/nl.js
index 3561acde..46154ecc 100644
--- a/l10n/nl.js
+++ b/l10n/nl.js
@@ -2,6 +2,11 @@ OC.L10N.register(
"serverinfo",
{
"CPU info not available" : "CPU info niet beschikbaar",
+ "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}",
"RAM info not available" : "RAM-info niet beschikbaar",
"SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totaal: {swapTotalBytes}/Huidig gebruik: {swapUsageBytes}",
@@ -10,13 +15,16 @@ OC.L10N.register(
"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",
+ "%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",
"System" : "Systeem",
"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:",
- "Unknown Processor" : "Onbekende Processor",
+ "threads" : "lijnen",
"Memory:" : "Geheugen:",
"Server time:" : "Servertijd:",
"Uptime:" : "Bedrijfstijd:",
@@ -43,6 +51,10 @@ OC.L10N.register(
"IPv6:" : "IPv6:",
"Active users" : "Actieve gebruikers",
"Last hour" : "Laatste uur",
+ "%s%% of all users" : "%s %% van alle gebruikers",
+ "Last 24 Hours" : "Laatste 24 uur",
+ "Last 7 Days" : "Laatste 7 dagen",
+ "Last 30 Days" : "Laatste 30 dagen",
"Shares" : "Delen",
"Users:" : "Gebruikers:",
"Groups:" : "Groepen:",
@@ -54,26 +66,38 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Versie:",
"Memory limit:" : "Geheugen limiet:",
+ "MB" : "MB",
"Max execution time:" : "Maximale uitvoeringstijd:",
+ "seconds" : "seconden",
"Upload max size:" : "Max. uploadgrootte:",
"OPcache Revalidate Frequency:" : "Frequentie OPcache opnieuw valideren:",
"Extensions:" : "Extensies:",
"Unable to list extensions" : "Kan extensies niet weergeven",
+ "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:",
"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 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)",
"Skip server update" : "Serverupdate overslaan",
"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.",
- "Load average: {cpu} (last minute)" : "Gemiddelde belasting: {cpu} (laatste minuut)",
- "DNS:" : "DNS:",
- "Total users:" : "Totaal aantal gebruikers:",
- "24 hours:" : "24 uur:",
- "1 hour:" : "1 uur:",
- "5 mins:" : "5 min.:"
+ "Unknown Processor" : "Onbekende Processor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/nl.json b/l10n/nl.json
index 70800928..264f027d 100644
--- a/l10n/nl.json
+++ b/l10n/nl.json
@@ -1,5 +1,10 @@
{ "translations": {
"CPU info not available" : "CPU info niet beschikbaar",
+ "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}",
"RAM info not available" : "RAM-info niet beschikbaar",
"SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Totaal: {swapTotalBytes}/Huidig gebruik: {swapUsageBytes}",
@@ -8,13 +13,16 @@
"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",
+ "%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",
"System" : "Systeem",
"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:",
- "Unknown Processor" : "Onbekende Processor",
+ "threads" : "lijnen",
"Memory:" : "Geheugen:",
"Server time:" : "Servertijd:",
"Uptime:" : "Bedrijfstijd:",
@@ -41,6 +49,10 @@
"IPv6:" : "IPv6:",
"Active users" : "Actieve gebruikers",
"Last hour" : "Laatste uur",
+ "%s%% of all users" : "%s %% van alle gebruikers",
+ "Last 24 Hours" : "Laatste 24 uur",
+ "Last 7 Days" : "Laatste 7 dagen",
+ "Last 30 Days" : "Laatste 30 dagen",
"Shares" : "Delen",
"Users:" : "Gebruikers:",
"Groups:" : "Groepen:",
@@ -52,26 +64,38 @@
"PHP" : "PHP",
"Version:" : "Versie:",
"Memory limit:" : "Geheugen limiet:",
+ "MB" : "MB",
"Max execution time:" : "Maximale uitvoeringstijd:",
+ "seconds" : "seconden",
"Upload max size:" : "Max. uploadgrootte:",
"OPcache Revalidate Frequency:" : "Frequentie OPcache opnieuw valideren:",
"Extensions:" : "Extensies:",
"Unable to list extensions" : "Kan extensies niet weergeven",
+ "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:",
"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 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)",
"Skip server update" : "Serverupdate overslaan",
"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.",
- "Load average: {cpu} (last minute)" : "Gemiddelde belasting: {cpu} (laatste minuut)",
- "DNS:" : "DNS:",
- "Total users:" : "Totaal aantal gebruikers:",
- "24 hours:" : "24 uur:",
- "1 hour:" : "1 uur:",
- "5 mins:" : "5 min.:"
+ "Unknown Processor" : "Onbekende Processor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/nn_NO.js b/l10n/nn_NO.js
index 5ecd77ed..60755f18 100644
--- a/l10n/nn_NO.js
+++ b/l10n/nn_NO.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Overvåker",
"Size:" : "Storleik:",
diff --git a/l10n/nn_NO.json b/l10n/nn_NO.json
index b7448785..7e7c6b4e 100644
--- a/l10n/nn_NO.json
+++ b/l10n/nn_NO.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Overvåker",
"Size:" : "Storleik:",
diff --git a/l10n/oc.js b/l10n/oc.js
index e36fb1b1..f7cff6b4 100644
--- a/l10n/oc.js
+++ b/l10n/oc.js
@@ -5,10 +5,12 @@ OC.L10N.register(
"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"
},
diff --git a/l10n/oc.json b/l10n/oc.json
index a608077c..c788d316 100644
--- a/l10n/oc.json
+++ b/l10n/oc.json
@@ -3,10 +3,12 @@
"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);"
diff --git a/l10n/pl.js b/l10n/pl.js
index 5a4be077..8d877b00 100644
--- a/l10n/pl.js
+++ b/l10n/pl.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Procesor nieznany",
"Memory:" : "Pamięć:",
"Server time:" : "Czas serwera:",
"Uptime:" : "Czas pracy:",
@@ -59,6 +59,7 @@ OC.L10N.register(
"Version:" : "Wersja:",
"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:",
@@ -70,15 +71,10 @@ OC.L10N.register(
"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 tym sekcja aplikacji wyśle zewnętrzne żądanie do sklepu z aplikacjami)",
+ "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.",
- "Load average: {cpu} (last minute)" : "Średnie obciążenie: {cpu} (ostatnia minuta)",
- "DNS:" : "DNS:",
- "Total users:" : "Ilość użytkowników:",
- "24 hours:" : "24 godziny:",
- "1 hour:" : "1 godzina:",
- "5 mins:" : "5 minut:"
+ "Unknown Processor" : "Procesor nieznany"
},
"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 2e30ba49..95cd1bdf 100644
--- a/l10n/pl.json
+++ b/l10n/pl.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Procesor nieznany",
"Memory:" : "Pamięć:",
"Server time:" : "Czas serwera:",
"Uptime:" : "Czas pracy:",
@@ -57,6 +57,7 @@
"Version:" : "Wersja:",
"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:",
@@ -68,15 +69,10 @@
"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 tym sekcja aplikacji wyśle zewnętrzne żądanie do sklepu z aplikacjami)",
+ "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.",
- "Load average: {cpu} (last minute)" : "Średnie obciążenie: {cpu} (ostatnia minuta)",
- "DNS:" : "DNS:",
- "Total users:" : "Ilość użytkowników:",
- "24 hours:" : "24 godziny:",
- "1 hour:" : "1 godzina:",
- "5 mins:" : "5 minut:"
+ "Unknown Processor" : "Procesor nieznany"
},"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/pt_BR.js b/l10n/pt_BR.js
index 79f0c62c..94cf016a 100644
--- a/l10n/pt_BR.js
+++ b/l10n/pt_BR.js
@@ -3,28 +3,31 @@ OC.L10N.register(
{
"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}) ú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",
+ "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ção de RAM não disponível",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes} / Uso atual: {swapUsageBytes}",
- "SWAP info not available" : "Informação SWAP não disponível",
+ "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.",
+ "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:",
- "Unknown Processor" : "Processador Desconhecido",
+ "threads" : "threads",
"Memory:" : "Memoria:",
"Server time:" : "Horário do servidor:",
- "Uptime:" : "Tempo de atividade:",
+ "Uptime:" : "Tempo de operação:",
"Temperature" : "Temperatura",
"Load" : "Carga",
"Memory" : "Memória",
@@ -36,9 +39,9 @@ OC.L10N.register(
"Used:" : "Usado:",
"Files:" : "Arquivos:",
"Storages:" : "Armazenamentos:",
- "Free Space:" : "Espaço livre:",
+ "Free Space:" : "Espaço Livre:",
"Network" : "Rede",
- "Hostname:" : "Hostname:",
+ "Hostname:" : "Nome do host:",
"Gateway:" : "Gateway:",
"Status:" : "Status:",
"Speed:" : "Velocidade:",
@@ -47,43 +50,54 @@ OC.L10N.register(
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
"Active users" : "Usuários ativos",
- "Last hour" : "Última hora",
+ "Last hour" : "Na última hora",
"%s%% of all users" : "%s%% de todos os usuários",
- "Last 24 Hours" : "Últimas 24 Horas",
- "Last 7 Days" : "Últimos 7 Dias",
- "Last 30 Days" : "Últimos 30 Dias",
+ "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:" : "Emails:",
- "Federated sent:" : "Federado enviado:",
- "Federated received:" : "Federado recebeu:",
+ "Emails:" : "E-mails:",
+ "Federated sent:" : "Envio federado:",
+ "Federated received:" : "Recebimento federado:",
"Talk conversations:" : "Conversas do Talk:",
"PHP" : "PHP",
"Version:" : "Versão:",
"Memory limit:" : "Limite de memória:",
+ "MB" : "MB",
"Max execution time:" : "Tempo máximo de execução:",
- "Upload max size:" : "Tamanho máximo para envio:",
- "OPcache Revalidate Frequency:" : "Frequência de revalidação do OPcache:",
+ "seconds" : "segundos",
+ "Upload max size:" : "Tamanho máximo para uploads:",
+ "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:",
"Extensions:" : "Extensões:",
"Unable to list extensions" : "Não foi possível listar as extensões",
+ "PHP Info:" : "Informações do PHP:",
"Show phpinfo" : "Mostrar phpinfo",
+ "FPM worker pool" : "Pool de trabalhadores FPM",
+ "Pool name:" : "Nome do pool:",
+ "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 active processes:" : "Máximo de processes ativos:",
+ "Max children reached:" : "Máximo de processos filhos atingido:",
"Database" : "Banco de Dados",
"Type:" : "Tipo:",
"External monitoring tool" : "Ferramenta de monitoramento externo",
- "Use this end point to connect an external monitoring tool:" : "Use este ponto final para conectar uma ferramenta de monitoramento externa:",
+ "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 seção de aplicativos (incluindo a seção de aplicativos enviará uma solicitação externa para a loja de aplicativos)",
+ "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.",
- "Load average: {cpu} (last minute)" : "Média de carga: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuários:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Processador Desconhecido"
},
"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 7747bf50..5ea4479d 100644
--- a/l10n/pt_BR.json
+++ b/l10n/pt_BR.json
@@ -1,28 +1,31 @@
{ "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}) ú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",
+ "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ção de RAM não disponível",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "SWAP: Total: {swapTotalBytes} / Uso atual: {swapUsageBytes}",
- "SWAP info not available" : "Informação SWAP não disponível",
+ "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.",
+ "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:",
- "Unknown Processor" : "Processador Desconhecido",
+ "threads" : "threads",
"Memory:" : "Memoria:",
"Server time:" : "Horário do servidor:",
- "Uptime:" : "Tempo de atividade:",
+ "Uptime:" : "Tempo de operação:",
"Temperature" : "Temperatura",
"Load" : "Carga",
"Memory" : "Memória",
@@ -34,9 +37,9 @@
"Used:" : "Usado:",
"Files:" : "Arquivos:",
"Storages:" : "Armazenamentos:",
- "Free Space:" : "Espaço livre:",
+ "Free Space:" : "Espaço Livre:",
"Network" : "Rede",
- "Hostname:" : "Hostname:",
+ "Hostname:" : "Nome do host:",
"Gateway:" : "Gateway:",
"Status:" : "Status:",
"Speed:" : "Velocidade:",
@@ -45,43 +48,54 @@
"IPv4:" : "IPv4:",
"IPv6:" : "IPv6:",
"Active users" : "Usuários ativos",
- "Last hour" : "Última hora",
+ "Last hour" : "Na última hora",
"%s%% of all users" : "%s%% de todos os usuários",
- "Last 24 Hours" : "Últimas 24 Horas",
- "Last 7 Days" : "Últimos 7 Dias",
- "Last 30 Days" : "Últimos 30 Dias",
+ "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:" : "Emails:",
- "Federated sent:" : "Federado enviado:",
- "Federated received:" : "Federado recebeu:",
+ "Emails:" : "E-mails:",
+ "Federated sent:" : "Envio federado:",
+ "Federated received:" : "Recebimento federado:",
"Talk conversations:" : "Conversas do Talk:",
"PHP" : "PHP",
"Version:" : "Versão:",
"Memory limit:" : "Limite de memória:",
+ "MB" : "MB",
"Max execution time:" : "Tempo máximo de execução:",
- "Upload max size:" : "Tamanho máximo para envio:",
- "OPcache Revalidate Frequency:" : "Frequência de revalidação do OPcache:",
+ "seconds" : "segundos",
+ "Upload max size:" : "Tamanho máximo para uploads:",
+ "OPcache Revalidate Frequency:" : "Frequência de Revalidação do OPcache:",
"Extensions:" : "Extensões:",
"Unable to list extensions" : "Não foi possível listar as extensões",
+ "PHP Info:" : "Informações do PHP:",
"Show phpinfo" : "Mostrar phpinfo",
+ "FPM worker pool" : "Pool de trabalhadores FPM",
+ "Pool name:" : "Nome do pool:",
+ "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 active processes:" : "Máximo de processes ativos:",
+ "Max children reached:" : "Máximo de processos filhos atingido:",
"Database" : "Banco de Dados",
"Type:" : "Tipo:",
"External monitoring tool" : "Ferramenta de monitoramento externo",
- "Use this end point to connect an external monitoring tool:" : "Use este ponto final para conectar uma ferramenta de monitoramento externa:",
+ "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 seção de aplicativos (incluindo a seção de aplicativos enviará uma solicitação externa para a loja de aplicativos)",
+ "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.",
- "Load average: {cpu} (last minute)" : "Média de carga: {cpu} (último minuto)",
- "DNS:" : "DNS:",
- "Total users:" : "Total de usuários:",
- "24 hours:" : "24 horas:",
- "1 hour:" : "1 hora:",
- "5 mins:" : "5 mins:"
+ "Unknown Processor" : "Processador Desconhecido"
},"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 5869e3b6..ee360b36 100644
--- a/l10n/pt_PT.js
+++ b/l10n/pt_PT.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitorização",
"Monitoring app with useful server information" : "Aplicação de monitorização com informação útil do servidor",
@@ -19,17 +20,17 @@ OC.L10N.register(
"Storages:" : "Armazenamentos:",
"Free Space:" : "Espaço livre:",
"Network" : "Rede",
- "Active users" : "Utilizadores activos",
+ "Active users" : "Utilizadores ativos",
"Last hour" : "Ultima hora",
"Shares" : "Partilhas",
"Users:" : "Utilizadores:",
"PHP" : "PHP",
"Version:" : "Versão:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamanho máximo de carregamento:",
"Database" : "Base de dados",
"Type:" : "Tipo:",
"External monitoring tool" : "Ferramenta externa de monitorização",
- "Copy" : "Copiar",
- "Total users:" : "Total de utilizadores:"
+ "Copy" : "Copiar"
},
"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 f5535bc5..7de217dc 100644
--- a/l10n/pt_PT.json
+++ b/l10n/pt_PT.json
@@ -4,6 +4,7 @@
"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",
"Monitoring" : "Monitorização",
"Monitoring app with useful server information" : "Aplicação de monitorização com informação útil do servidor",
@@ -17,17 +18,17 @@
"Storages:" : "Armazenamentos:",
"Free Space:" : "Espaço livre:",
"Network" : "Rede",
- "Active users" : "Utilizadores activos",
+ "Active users" : "Utilizadores ativos",
"Last hour" : "Ultima hora",
"Shares" : "Partilhas",
"Users:" : "Utilizadores:",
"PHP" : "PHP",
"Version:" : "Versão:",
+ "seconds" : "segundos",
"Upload max size:" : "Tamanho máximo de carregamento:",
"Database" : "Base de dados",
"Type:" : "Tipo:",
"External monitoring tool" : "Ferramenta externa de monitorização",
- "Copy" : "Copiar",
- "Total users:" : "Total de utilizadores:"
+ "Copy" : "Copiar"
},"pluralForm" :"nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;"
}
\ No newline at end of file
diff --git a/l10n/ro.js b/l10n/ro.js
index ab225e3e..b57c7d36 100644
--- a/l10n/ro.js
+++ b/l10n/ro.js
@@ -5,10 +5,12 @@ OC.L10N.register(
"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",
"Monitoring" : "Monitorizare",
"Size:" : "Mărime:",
"Shares" : "Partajări",
+ "seconds" : "secunde",
"Database" : "Baza de date",
"Type:" : "Tip:",
"Copy" : "Copiază"
diff --git a/l10n/ro.json b/l10n/ro.json
index 438376c3..496b368e 100644
--- a/l10n/ro.json
+++ b/l10n/ro.json
@@ -3,10 +3,12 @@
"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",
"Monitoring" : "Monitorizare",
"Size:" : "Mărime:",
"Shares" : "Partajări",
+ "seconds" : "secunde",
"Database" : "Baza de date",
"Type:" : "Tip:",
"Copy" : "Copiază"
diff --git a/l10n/ru.js b/l10n/ru.js
index c61bc8e0..cbc4a016 100644
--- a/l10n/ru.js
+++ b/l10n/ru.js
@@ -15,13 +15,13 @@ OC.L10N.register(
"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." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.",
"Operating System:" : "Операционная система:",
"CPU:" : "CPU:",
- "Unknown Processor" : "Неизвестный процессор",
"Memory:" : "Память:",
"Server time:" : "Серверное время:",
"Uptime:" : "Время работы:",
@@ -64,6 +64,7 @@ OC.L10N.register(
"Version:" : "Версия:",
"Memory limit:" : "Лимит памяти:",
"Max execution time:" : "Максимальное время выполнения:",
+ "seconds" : "секунд",
"Upload max size:" : "Максимальный размер для отправки:",
"OPcache Revalidate Frequency:" : "Частота повторной проверки OPcache:",
"Extensions:" : "Расширения:",
@@ -79,11 +80,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Загрузка процессора: {cpu} (средняя за минуту)",
- "DNS:" : "DNS:",
- "Total users:" : "Всего пользователей:",
- "24 hours:" : "24 часа:",
- "1 hour:" : "1 час:",
- "5 mins:" : "5 минут:"
+ "Unknown Processor" : "Неизвестный процессор"
},
"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 0b1eee6a..67bc2229 100644
--- a/l10n/ru.json
+++ b/l10n/ru.json
@@ -13,13 +13,13 @@
"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." : "Предоставляет полезную информацию о сервере, такую как загрузка процессора, использование ОЗУ, диска, количество пользователей и т.д.",
"Operating System:" : "Операционная система:",
"CPU:" : "CPU:",
- "Unknown Processor" : "Неизвестный процессор",
"Memory:" : "Память:",
"Server time:" : "Серверное время:",
"Uptime:" : "Время работы:",
@@ -62,6 +62,7 @@
"Version:" : "Версия:",
"Memory limit:" : "Лимит памяти:",
"Max execution time:" : "Максимальное время выполнения:",
+ "seconds" : "секунд",
"Upload max size:" : "Максимальный размер для отправки:",
"OPcache Revalidate Frequency:" : "Частота повторной проверки OPcache:",
"Extensions:" : "Расширения:",
@@ -77,11 +78,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Загрузка процессора: {cpu} (средняя за минуту)",
- "DNS:" : "DNS:",
- "Total users:" : "Всего пользователей:",
- "24 hours:" : "24 часа:",
- "1 hour:" : "1 час:",
- "5 mins:" : "5 минут:"
+ "Unknown Processor" : "Неизвестный процессор"
},"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 ecc0ac9e..84fe6561 100644
--- a/l10n/sc.js
+++ b/l10n/sc.js
@@ -6,6 +6,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Controllende",
"Monitoring app with useful server information" : "Aplicatzione pro controllu cun informatziones ùtiles subra de su serbidore",
@@ -24,12 +25,12 @@ OC.L10N.register(
"Shares" : "Cumpartziduras",
"PHP" : "PHP",
"Version:" : "Versione:",
+ "seconds" : "segundos",
"Upload max size:" : "Mannària màssima de carrigamentu",
"Database" : "Base de datos",
"Type:" : "Genia:",
"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.",
- "Total users:" : "Utèntzias totales:"
+ "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."
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/sc.json b/l10n/sc.json
index b089d6ec..36fd98fd 100644
--- a/l10n/sc.json
+++ b/l10n/sc.json
@@ -4,6 +4,7 @@
"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",
"Monitoring" : "Controllende",
"Monitoring app with useful server information" : "Aplicatzione pro controllu cun informatziones ùtiles subra de su serbidore",
@@ -22,12 +23,12 @@
"Shares" : "Cumpartziduras",
"PHP" : "PHP",
"Version:" : "Versione:",
+ "seconds" : "segundos",
"Upload max size:" : "Mannària màssima de carrigamentu",
"Database" : "Base de datos",
"Type:" : "Genia:",
"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.",
- "Total users:" : "Utèntzias totales:"
+ "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."
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/sk.js b/l10n/sk.js
index 99b2243e..94d74504 100644
--- a/l10n/sk.js
+++ b/l10n/sk.js
@@ -15,13 +15,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Neznámy procesor",
"Memory:" : "Pamäť:",
"Server time:" : "Čas na serveri:",
"Uptime:" : "Doba behu:",
@@ -64,11 +64,25 @@ OC.L10N.register(
"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:",
+ "Pool type:" : "Typ skupiny:",
+ "Start time:" : "Čas štartu:",
+ "Accepted connections:" : "Akceptovať pripojenia:",
+ "Total processes:" : "Celkový počet procesov:",
+ "Active processes:" : "Aktívne procesy:",
+ "Idle processes:" : "Nečinné procesy:",
+ "Listen queue:" : "Fronta čakajúca na spojenia:",
+ "Slow requests:" : "Pomalé požiadavky:",
+ "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:",
"External monitoring tool" : "Externý sledovací nástroj",
@@ -79,11 +93,6 @@ OC.L10N.register(
"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“.",
- "Load average: {cpu} (last minute)" : "Priemerné zaťaženie: {cpu} (za poslednú minútu)",
- "DNS:" : "DNS:",
- "Total users:" : "Používateľov celkom:",
- "24 hours:" : "24 hodín:",
- "1 hour:" : "1 hodina:",
- "5 mins:" : "5 minút:"
+ "Unknown Processor" : "Neznámy procesor"
},
"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 c20bb613..ee824c2c 100644
--- a/l10n/sk.json
+++ b/l10n/sk.json
@@ -13,13 +13,13 @@
"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",
"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:",
- "Unknown Processor" : "Neznámy procesor",
"Memory:" : "Pamäť:",
"Server time:" : "Čas na serveri:",
"Uptime:" : "Doba behu:",
@@ -62,11 +62,25 @@
"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:",
+ "Pool type:" : "Typ skupiny:",
+ "Start time:" : "Čas štartu:",
+ "Accepted connections:" : "Akceptovať pripojenia:",
+ "Total processes:" : "Celkový počet procesov:",
+ "Active processes:" : "Aktívne procesy:",
+ "Idle processes:" : "Nečinné procesy:",
+ "Listen queue:" : "Fronta čakajúca na spojenia:",
+ "Slow requests:" : "Pomalé požiadavky:",
+ "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:",
"External monitoring tool" : "Externý sledovací nástroj",
@@ -77,11 +91,6 @@
"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“.",
- "Load average: {cpu} (last minute)" : "Priemerné zaťaženie: {cpu} (za poslednú minútu)",
- "DNS:" : "DNS:",
- "Total users:" : "Používateľov celkom:",
- "24 hours:" : "24 hodín:",
- "1 hour:" : "1 hodina:",
- "5 mins:" : "5 minút:"
+ "Unknown Processor" : "Neznámy procesor"
},"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 7eaf5a0e..37728408 100644
--- a/l10n/sl.js
+++ b/l10n/sl.js
@@ -10,13 +10,13 @@ OC.L10N.register(
"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",
"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:",
- "Unknown Processor" : "Neznan processor",
"Memory:" : "Pomnilnik:",
"Server time:" : "Čas strežnika:",
"Uptime:" : "Čas delovanja:",
@@ -55,6 +55,7 @@ OC.L10N.register(
"Version:" : "Različica:",
"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:",
@@ -70,11 +71,6 @@ OC.L10N.register(
"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«.",
- "Load average: {cpu} (last minute)" : "Povprečje obremenitve: {cpu} (zadnja minuta)",
- "DNS:" : "DNS:",
- "Total users:" : "Število uporabnikov:",
- "24 hours:" : "24 ur:",
- "1 hour:" : "1 ura:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Neznan processor"
},
"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 0ebcbe25..91dba986 100644
--- a/l10n/sl.json
+++ b/l10n/sl.json
@@ -8,13 +8,13 @@
"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",
"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:",
- "Unknown Processor" : "Neznan processor",
"Memory:" : "Pomnilnik:",
"Server time:" : "Čas strežnika:",
"Uptime:" : "Čas delovanja:",
@@ -53,6 +53,7 @@
"Version:" : "Različica:",
"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:",
@@ -68,11 +69,6 @@
"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«.",
- "Load average: {cpu} (last minute)" : "Povprečje obremenitve: {cpu} (zadnja minuta)",
- "DNS:" : "DNS:",
- "Total users:" : "Število uporabnikov:",
- "24 hours:" : "24 ur:",
- "1 hour:" : "1 ura:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Neznan processor"
},"pluralForm" :"nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);"
}
\ No newline at end of file
diff --git a/l10n/sq.js b/l10n/sq.js
index b1b46497..f22dfe33 100644
--- a/l10n/sq.js
+++ b/l10n/sq.js
@@ -5,6 +5,7 @@ OC.L10N.register(
"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",
"Monitoring" : "Vëzhgim",
"Temperature" : "Temperatura",
@@ -15,6 +16,7 @@ OC.L10N.register(
"Users:" : "Përdoruesit:",
"PHP" : "PHP",
"Version:" : "Versioni: ",
+ "seconds" : "sekonda",
"Upload max size:" : "Ngarkoni madhësinë maksimale: ",
"Database" : "Databazë",
"Type:" : "Lloji:",
diff --git a/l10n/sq.json b/l10n/sq.json
index d198690c..85bf9d8e 100644
--- a/l10n/sq.json
+++ b/l10n/sq.json
@@ -3,6 +3,7 @@
"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",
"Monitoring" : "Vëzhgim",
"Temperature" : "Temperatura",
@@ -13,6 +14,7 @@
"Users:" : "Përdoruesit:",
"PHP" : "PHP",
"Version:" : "Versioni: ",
+ "seconds" : "sekonda",
"Upload max size:" : "Ngarkoni madhësinë maksimale: ",
"Database" : "Databazë",
"Type:" : "Lloji:",
diff --git a/l10n/sr.js b/l10n/sr.js
index 10c45934..c46f8bc8 100644
--- a/l10n/sr.js
+++ b/l10n/sr.js
@@ -15,13 +15,14 @@ OC.L10N.register(
"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." : "Даје корисне информације о серверу, као што су оптерећење процесора, употреба RAM-а, употреба диска, број корисника, итд.",
"Operating System:" : "Оперативни систем:",
"CPU:" : "CPU:",
- "Unknown Processor" : "Непознати процесор",
+ "threads" : "низови",
"Memory:" : "Меморија:",
"Server time:" : "Време сервера:",
"Uptime:" : "Време од стартовања система:",
@@ -64,11 +65,25 @@ OC.L10N.register(
"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:" : "Име резервоара:",
+ "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:" : "Достигнуто максимално деце:",
"Database" : "База података",
"Type:" : "Тип:",
"External monitoring tool" : "Спољни алати за праћење система",
@@ -79,11 +94,6 @@ OC.L10N.register(
"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 адресу.",
- "Load average: {cpu} (last minute)" : "Просечно оптерећење: {cpu} (у последњем минуту)",
- "DNS:" : "DNS:",
- "Total users:" : "Укупно корисника:",
- "24 hours:" : "24 сата:",
- "1 hour:" : "1 сат:",
- "5 mins:" : "5 минута:"
+ "Unknown Processor" : "Непознати процесор"
},
"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 f334edd6..af55dbf8 100644
--- a/l10n/sr.json
+++ b/l10n/sr.json
@@ -13,13 +13,14 @@
"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." : "Даје корисне информације о серверу, као што су оптерећење процесора, употреба RAM-а, употреба диска, број корисника, итд.",
"Operating System:" : "Оперативни систем:",
"CPU:" : "CPU:",
- "Unknown Processor" : "Непознати процесор",
+ "threads" : "низови",
"Memory:" : "Меморија:",
"Server time:" : "Време сервера:",
"Uptime:" : "Време од стартовања система:",
@@ -62,11 +63,25 @@
"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:" : "Име резервоара:",
+ "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:" : "Достигнуто максимално деце:",
"Database" : "База података",
"Type:" : "Тип:",
"External monitoring tool" : "Спољни алати за праћење система",
@@ -77,11 +92,6 @@
"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 адресу.",
- "Load average: {cpu} (last minute)" : "Просечно оптерећење: {cpu} (у последњем минуту)",
- "DNS:" : "DNS:",
- "Total users:" : "Укупно корисника:",
- "24 hours:" : "24 сата:",
- "1 hour:" : "1 сат:",
- "5 mins:" : "5 минута:"
+ "Unknown Processor" : "Непознати процесор"
},"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 6099b2dc..1d1ea09f 100644
--- a/l10n/sv.js
+++ b/l10n/sv.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"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",
+ "%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",
"System" : "System",
"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:",
- "Unknown Processor" : "Okänd processor",
+ "threads" : "trådar",
"Memory:" : "Minne:",
"Server time:" : "Servertid:",
"Uptime:" : "Upptid:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Minnesgräns:",
+ "MB" : "MB",
"Max execution time:" : "Max körningstid:",
+ "seconds" : "sekunder",
"Upload max size:" : "Största uppladdningsstorlek:",
"OPcache Revalidate Frequency:" : "Frekvens för återvalidering av OPcache:",
"Extensions:" : "Tillägg:",
"Unable to list extensions" : "Det går inte att lista tillägg",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "Visa phpinfo",
+ "FPM worker pool" : "FPM-arbetspool",
+ "Pool name:" : "Poolnamn:",
+ "Pool type:" : "Pooltyp:",
+ "Start time:" : "Starttid:",
+ "Accepted connections:" : "Accepterade anslutningar:",
+ "Total processes:" : "Totalt antal processer:",
+ "Active processes:" : "Aktiva processer:",
+ "Idle processes:" : "Inaktiva processer:",
+ "Listen queue:" : "Lyssningskö:",
+ "Slow requests:" : "Långsamma förfrågningar:",
+ "Max listen queue:" : "Maximal lyssningskö:",
+ "Max active processes:" : "Maximalt antal aktiva processer:",
+ "Max children reached:" : "Maximalt antal underprocesser uppnått:",
"Database" : "Databas",
"Type:" : "Typ:",
"External monitoring tool" : "Externt övervakningsverktyg",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Belastning genomsnitt: {cpu} (senaste minuten)",
- "DNS:" : "DNS:",
- "Total users:" : "Antal användare:",
- "24 hours:" : "24 timmar:",
- "1 hour:" : "1 timme:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Okänd processor"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/sv.json b/l10n/sv.json
index 7962b44d..9dda0aac 100644
--- a/l10n/sv.json
+++ b/l10n/sv.json
@@ -13,13 +13,16 @@
"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",
+ "%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",
"System" : "System",
"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:",
- "Unknown Processor" : "Okänd processor",
+ "threads" : "trådar",
"Memory:" : "Minne:",
"Server time:" : "Servertid:",
"Uptime:" : "Upptid:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "Version:",
"Memory limit:" : "Minnesgräns:",
+ "MB" : "MB",
"Max execution time:" : "Max körningstid:",
+ "seconds" : "sekunder",
"Upload max size:" : "Största uppladdningsstorlek:",
"OPcache Revalidate Frequency:" : "Frekvens för återvalidering av OPcache:",
"Extensions:" : "Tillägg:",
"Unable to list extensions" : "Det går inte att lista tillägg",
+ "PHP Info:" : "PHP Info:",
"Show phpinfo" : "Visa phpinfo",
+ "FPM worker pool" : "FPM-arbetspool",
+ "Pool name:" : "Poolnamn:",
+ "Pool type:" : "Pooltyp:",
+ "Start time:" : "Starttid:",
+ "Accepted connections:" : "Accepterade anslutningar:",
+ "Total processes:" : "Totalt antal processer:",
+ "Active processes:" : "Aktiva processer:",
+ "Idle processes:" : "Inaktiva processer:",
+ "Listen queue:" : "Lyssningskö:",
+ "Slow requests:" : "Långsamma förfrågningar:",
+ "Max listen queue:" : "Maximal lyssningskö:",
+ "Max active processes:" : "Maximalt antal aktiva processer:",
+ "Max children reached:" : "Maximalt antal underprocesser uppnått:",
"Database" : "Databas",
"Type:" : "Typ:",
"External monitoring tool" : "Externt övervakningsverktyg",
@@ -77,11 +96,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Belastning genomsnitt: {cpu} (senaste minuten)",
- "DNS:" : "DNS:",
- "Total users:" : "Antal användare:",
- "24 hours:" : "24 timmar:",
- "1 hour:" : "1 timme:",
- "5 mins:" : "5 min:"
+ "Unknown Processor" : "Okänd processor"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/sw.js b/l10n/sw.js
new file mode 100644
index 00000000..2ffa1d9e
--- /dev/null
+++ b/l10n/sw.js
@@ -0,0 +1,99 @@
+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",
+ "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",
+ "Load" : "Pakia",
+ "Memory" : "Kumbukumbu",
+ "Disk" : "Diski",
+ "Mount:" : "Mlima",
+ "Filesystem:" : "Mfumo wa faili:",
+ "Size:" : "Ukubwa:",
+ "Available:" : "Inayopatikana:",
+ "Used:" : "Iliyotumika:",
+ "Files:" : "Faili:",
+ "Storages:" : "Hifadhi:",
+ "Free Space:" : "Nafasi ya Bure:",
+ "Network" : "Mtandao",
+ "Hostname:" : "Jina la mwenyeji:",
+ "Gateway:" : "Lango:",
+ "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",
+ "PHP" : "PHP",
+ "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:",
+ "Pool type:" : "Aina ya bwawa:",
+ "Start time:" : "Start time:",
+ "Accepted connections:" : "Miunganisho inayokubalika:",
+ "Total processes:" : "Michakato ya jumla:",
+ "Active processes:" : "Michakato inayotumika:",
+ "Idle processes:" : "Michakato isiyofanya kazi:",
+ "Listen queue:" : "Foleni ya kusikiliza:",
+ "Slow requests:" : "Maombi ya polepole:",
+ "Max listen queue:" : "Upeo wa foleni ya kusikiliza:",
+ "Max active processes:" : "Upeo wa michakato inayotumika:",
+ "Max children reached:" : "Idadi ya juu ya watoto imefikiwa:",
+ "Database" : "Kanzidata",
+ "Type:" : "Aina:",
+ "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"
+},
+"nplurals=2; plural=(n != 1);");
diff --git a/l10n/sw.json b/l10n/sw.json
new file mode 100644
index 00000000..d3b8bdc0
--- /dev/null
+++ b/l10n/sw.json
@@ -0,0 +1,97 @@
+{ "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",
+ "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",
+ "Load" : "Pakia",
+ "Memory" : "Kumbukumbu",
+ "Disk" : "Diski",
+ "Mount:" : "Mlima",
+ "Filesystem:" : "Mfumo wa faili:",
+ "Size:" : "Ukubwa:",
+ "Available:" : "Inayopatikana:",
+ "Used:" : "Iliyotumika:",
+ "Files:" : "Faili:",
+ "Storages:" : "Hifadhi:",
+ "Free Space:" : "Nafasi ya Bure:",
+ "Network" : "Mtandao",
+ "Hostname:" : "Jina la mwenyeji:",
+ "Gateway:" : "Lango:",
+ "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",
+ "PHP" : "PHP",
+ "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:",
+ "Pool type:" : "Aina ya bwawa:",
+ "Start time:" : "Start time:",
+ "Accepted connections:" : "Miunganisho inayokubalika:",
+ "Total processes:" : "Michakato ya jumla:",
+ "Active processes:" : "Michakato inayotumika:",
+ "Idle processes:" : "Michakato isiyofanya kazi:",
+ "Listen queue:" : "Foleni ya kusikiliza:",
+ "Slow requests:" : "Maombi ya polepole:",
+ "Max listen queue:" : "Upeo wa foleni ya kusikiliza:",
+ "Max active processes:" : "Upeo wa michakato inayotumika:",
+ "Max children reached:" : "Idadi ya juu ya watoto imefikiwa:",
+ "Database" : "Kanzidata",
+ "Type:" : "Aina:",
+ "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"
+},"pluralForm" :"nplurals=2; plural=(n != 1);"
+}
\ No newline at end of file
diff --git a/l10n/th.js b/l10n/th.js
index 07e8f575..abbcde44 100644
--- a/l10n/th.js
+++ b/l10n/th.js
@@ -5,10 +5,12 @@ OC.L10N.register(
"Not supported!" : "ไม่สนับสนุน",
"Press ⌘-C to copy." : "กด ⌘-C เพื่อคัดลอก",
"Press Ctrl-C to copy." : "กด Ctrl-C เพื่อคัดลอก",
+ "Unknown" : "ไม่ทราบ",
"System" : "ระบบ",
"Size:" : "ขนาด:",
"Active users" : "ผู้ใช้ที่ใช้งานอยู่",
"Shares" : "การแชร์",
+ "seconds" : "วินาที",
"Type:" : "ชนิด:",
"Copy" : "คัดลอก"
},
diff --git a/l10n/th.json b/l10n/th.json
index 8934dc5c..ef595823 100644
--- a/l10n/th.json
+++ b/l10n/th.json
@@ -3,10 +3,12 @@
"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;"
diff --git a/l10n/tr.js b/l10n/tr.js
index a77af4a4..83c90ccf 100644
--- a/l10n/tr.js
+++ b/l10n/tr.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"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.",
+ "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",
- "Unknown Processor" : "İşlemci bilinmiyor",
+ "threads" : "işlem",
"Memory:" : "Bellek:",
"Server time:" : "Sunucu zamanı:",
"Uptime:" : "Çalışma süresi:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Sürüm:",
"Memory limit:" : "Bellek sınırı:",
+ "MB" : "MB",
"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ığı:",
"Extensions:" : "Eklentiler:",
"Unable to list extensions" : "Eklentiler listelenemedi",
+ "PHP Info:" : "PHP Bilgileri:",
"Show phpinfo" : "PHP bilgilerini görüntüle",
+ "FPM worker pool" : "FPM işleyici havuzu",
+ "Pool name:" : "Havuz adı:",
+ "Pool type:" : "Havuz türü:",
+ "Start time:" : "Başlangıç zamanı:",
+ "Accepted connections:" : "Kabul edilen bağlantılar:",
+ "Total processes:" : "Toplam işlem sayısı:",
+ "Active processes:" : "Etkin işlem sayısı:",
+ "Idle processes:" : "Boştaki işlem sayısı:",
+ "Listen queue:" : "Kuyruk dinleme:",
+ "Slow requests:" : "Yavaş istek sayısı:",
+ "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:",
"External monitoring tool" : "Dış izleme aracı",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Ortalama yük: {cpu} (son bir dakika)",
- "DNS:" : "DNS:",
- "Total users:" : "Kullanıcı sayısı:",
- "24 hours:" : "24 saat:",
- "1 hour:" : "1 saat:",
- "5 mins:" : "5 dakika:"
+ "Unknown Processor" : "İşlemci bilinmiyor"
},
"nplurals=2; plural=(n > 1);");
diff --git a/l10n/tr.json b/l10n/tr.json
index c2017e4d..86cd58ce 100644
--- a/l10n/tr.json
+++ b/l10n/tr.json
@@ -13,13 +13,16 @@
"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.",
+ "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",
- "Unknown Processor" : "İşlemci bilinmiyor",
+ "threads" : "işlem",
"Memory:" : "Bellek:",
"Server time:" : "Sunucu zamanı:",
"Uptime:" : "Çalışma süresi:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "Sürüm:",
"Memory limit:" : "Bellek sınırı:",
+ "MB" : "MB",
"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ığı:",
"Extensions:" : "Eklentiler:",
"Unable to list extensions" : "Eklentiler listelenemedi",
+ "PHP Info:" : "PHP Bilgileri:",
"Show phpinfo" : "PHP bilgilerini görüntüle",
+ "FPM worker pool" : "FPM işleyici havuzu",
+ "Pool name:" : "Havuz adı:",
+ "Pool type:" : "Havuz türü:",
+ "Start time:" : "Başlangıç zamanı:",
+ "Accepted connections:" : "Kabul edilen bağlantılar:",
+ "Total processes:" : "Toplam işlem sayısı:",
+ "Active processes:" : "Etkin işlem sayısı:",
+ "Idle processes:" : "Boştaki işlem sayısı:",
+ "Listen queue:" : "Kuyruk dinleme:",
+ "Slow requests:" : "Yavaş istek sayısı:",
+ "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:",
"External monitoring tool" : "Dış izleme aracı",
@@ -77,11 +96,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Ortalama yük: {cpu} (son bir dakika)",
- "DNS:" : "DNS:",
- "Total users:" : "Kullanıcı sayısı:",
- "24 hours:" : "24 saat:",
- "1 hour:" : "1 saat:",
- "5 mins:" : "5 dakika:"
+ "Unknown Processor" : "İşlemci bilinmiyor"
},"pluralForm" :"nplurals=2; plural=(n > 1);"
}
\ No newline at end of file
diff --git a/l10n/ug.js b/l10n/ug.js
index e3d68da5..3f24ab57 100644
--- a/l10n/ug.js
+++ b/l10n/ug.js
@@ -2,6 +2,11 @@ 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}",
@@ -10,18 +15,19 @@ OC.L10N.register(
"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 يۈكى ، RAM ئىشلىتىش ، دىسكا ئىشلىتىش ، ئىشلەتكۈچى سانى قاتارلىق پايدىلىق مۇلازىمېتىر ئۇچۇرلىرى بىلەن تەمىنلەيدۇ.",
"Operating System:" : "مەشغۇلات سىستېمىسى:",
"CPU:" : "CPU:",
- "Unknown Processor" : "نامەلۇم بىر تەرەپ قىلغۇچ",
+ "threads" : "يىپلار",
"Memory:" : "ئەستە ساقلاش:",
"Server time:" : "مۇلازىمېتىر ۋاقتى:",
- "Uptime:" : "Uptime:",
+ "Uptime:" : "ئىشلەش ۋاقتى:",
"Temperature" : "تېمپېراتۇرا",
- "Load" : "Load",
+ "Load" : "يۈك",
"Memory" : "ئەستە ساقلاش",
"Disk" : "دىسكا",
"Mount:" : "تاغ:",
@@ -43,11 +49,11 @@ OC.L10N.register(
"IPv6:" : "IPv6:",
"Active users" : "ئاكتىپ ئىشلەتكۈچىلەر",
"Last hour" : "ئالدىنقى سائەت",
- "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ% s %%",
+ "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ %%%s ",
"Last 24 Hours" : "ئاخىرقى 24 سائەت",
"Last 7 Days" : "ئاخىرقى 7 كۈن",
"Last 30 Days" : "ئاخىرقى 30 كۈن",
- "Shares" : "Shares",
+ "Shares" : "ھەمبەھىرلەر",
"Users:" : "ئىشلەتكۈچىلەر:",
"Groups:" : "گۇرۇپپىلار:",
"Links:" : "ئۇلىنىشلار:",
@@ -59,26 +65,35 @@ OC.L10N.register(
"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:" : "يىغىندا نامى:",
+ "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:" : "ئەڭ چوڭ تارماقلارغا يەتكىنى:",
"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 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» ماۋزۇسى ئارقىلىق بەلگە يوللاڭ.",
- "Load average: {cpu} (last minute)" : "ئوتتۇرىچە يۈك: {cpu} (ئاخىرقى مىنۇت)",
- "DNS:" : "DNS:",
- "Total users:" : "ئومۇمىي ئىشلەتكۈچى:",
- "24 hours:" : "24 سائەت:",
- "1 hour:" : "1 سائەت:",
- "5 mins:" : "5 مىنۇت:"
+ "Unknown Processor" : "نامەلۇم بىر تەرەپ قىلغۇچ"
},
"nplurals=2; plural=(n != 1);");
diff --git a/l10n/ug.json b/l10n/ug.json
index 8c4d7d30..abefc1df 100644
--- a/l10n/ug.json
+++ b/l10n/ug.json
@@ -1,5 +1,10 @@
{ "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}",
@@ -8,18 +13,19 @@
"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 يۈكى ، RAM ئىشلىتىش ، دىسكا ئىشلىتىش ، ئىشلەتكۈچى سانى قاتارلىق پايدىلىق مۇلازىمېتىر ئۇچۇرلىرى بىلەن تەمىنلەيدۇ.",
"Operating System:" : "مەشغۇلات سىستېمىسى:",
"CPU:" : "CPU:",
- "Unknown Processor" : "نامەلۇم بىر تەرەپ قىلغۇچ",
+ "threads" : "يىپلار",
"Memory:" : "ئەستە ساقلاش:",
"Server time:" : "مۇلازىمېتىر ۋاقتى:",
- "Uptime:" : "Uptime:",
+ "Uptime:" : "ئىشلەش ۋاقتى:",
"Temperature" : "تېمپېراتۇرا",
- "Load" : "Load",
+ "Load" : "يۈك",
"Memory" : "ئەستە ساقلاش",
"Disk" : "دىسكا",
"Mount:" : "تاغ:",
@@ -41,11 +47,11 @@
"IPv6:" : "IPv6:",
"Active users" : "ئاكتىپ ئىشلەتكۈچىلەر",
"Last hour" : "ئالدىنقى سائەت",
- "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ% s %%",
+ "%s%% of all users" : "بارلىق ئىشلەتكۈچىلەرنىڭ %%%s ",
"Last 24 Hours" : "ئاخىرقى 24 سائەت",
"Last 7 Days" : "ئاخىرقى 7 كۈن",
"Last 30 Days" : "ئاخىرقى 30 كۈن",
- "Shares" : "Shares",
+ "Shares" : "ھەمبەھىرلەر",
"Users:" : "ئىشلەتكۈچىلەر:",
"Groups:" : "گۇرۇپپىلار:",
"Links:" : "ئۇلىنىشلار:",
@@ -57,26 +63,35 @@
"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:" : "يىغىندا نامى:",
+ "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:" : "ئەڭ چوڭ تارماقلارغا يەتكىنى:",
"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 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» ماۋزۇسى ئارقىلىق بەلگە يوللاڭ.",
- "Load average: {cpu} (last minute)" : "ئوتتۇرىچە يۈك: {cpu} (ئاخىرقى مىنۇت)",
- "DNS:" : "DNS:",
- "Total users:" : "ئومۇمىي ئىشلەتكۈچى:",
- "24 hours:" : "24 سائەت:",
- "1 hour:" : "1 سائەت:",
- "5 mins:" : "5 مىنۇت:"
+ "Unknown Processor" : "نامەلۇم بىر تەرەپ قىلغۇچ"
},"pluralForm" :"nplurals=2; plural=(n != 1);"
}
\ No newline at end of file
diff --git a/l10n/uk.js b/l10n/uk.js
index 366aac54..726d9ccd 100644
--- a/l10n/uk.js
+++ b/l10n/uk.js
@@ -7,21 +7,24 @@ OC.L10N.register(
"{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: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Оперативна пам’ять: використано {memUsageBytes} із {memTotalBytes}",
"RAM info not available" : "Інформація про оперативну пам'ять недоступна",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Файл підкачки: використовується {swapUsageBytes} із {swapTotalBytes}",
+ "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, щоб скопіювати.",
+ "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:" : "ЦП:",
- "Unknown Processor" : "Невідомий процесор",
+ "threads" : "нитки",
"Memory:" : "Пам'ять:",
"Server time:" : "Час сервера:",
"Uptime:" : "Час роботи:",
@@ -33,7 +36,7 @@ OC.L10N.register(
"Filesystem:" : "Файлова система:",
"Size:" : "Розмір:",
"Available:" : "Доступно:",
- "Used:" : "Використовується:",
+ "Used:" : "Використано:",
"Files:" : "Файлів:",
"Storages:" : "Сховищ:",
"Free Space:" : "Вільно:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "Версія:",
"Memory limit:" : "Обмеження пам'яті:",
+ "MB" : "МБ",
"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",
+ "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:" : "Макс. досягнуто дочірніх процесів:",
"Database" : "База даних",
"Type:" : "Тип:",
"External monitoring tool" : "Моніторинг сторонніми засобами",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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.",
- "Load average: {cpu} (last minute)" : "Середнє навантаження: {cpu} (за останню хвилину)",
- "DNS:" : "DNS:",
- "Total users:" : "Разом користувачів:",
- "24 hours:" : "За добу:",
- "1 hour:" : "За останню годину:",
- "5 mins:" : "За останні 5 хв.:"
+ "Unknown Processor" : "Невідомий процесор"
},
"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 a870f9b4..897ed56c 100644
--- a/l10n/uk.json
+++ b/l10n/uk.json
@@ -5,21 +5,24 @@
"{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: Total: {memTotalBytes}/Current usage: {memUsageBytes}" : "Оперативна пам’ять: використано {memUsageBytes} із {memTotalBytes}",
"RAM info not available" : "Інформація про оперативну пам'ять недоступна",
- "SWAP: Total: {swapTotalBytes}/Current usage: {swapUsageBytes}" : "Файл підкачки: використовується {swapUsageBytes} із {swapTotalBytes}",
+ "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, щоб скопіювати.",
+ "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:" : "ЦП:",
- "Unknown Processor" : "Невідомий процесор",
+ "threads" : "нитки",
"Memory:" : "Пам'ять:",
"Server time:" : "Час сервера:",
"Uptime:" : "Час роботи:",
@@ -31,7 +34,7 @@
"Filesystem:" : "Файлова система:",
"Size:" : "Розмір:",
"Available:" : "Доступно:",
- "Used:" : "Використовується:",
+ "Used:" : "Використано:",
"Files:" : "Файлів:",
"Storages:" : "Сховищ:",
"Free Space:" : "Вільно:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "Версія:",
"Memory limit:" : "Обмеження пам'яті:",
+ "MB" : "МБ",
"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",
+ "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:" : "Макс. досягнуто дочірніх процесів:",
"Database" : "База даних",
"Type:" : "Тип:",
"External monitoring tool" : "Моніторинг сторонніми засобами",
@@ -77,11 +96,6 @@
"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.",
- "Load average: {cpu} (last minute)" : "Середнє навантаження: {cpu} (за останню хвилину)",
- "DNS:" : "DNS:",
- "Total users:" : "Разом користувачів:",
- "24 hours:" : "За добу:",
- "1 hour:" : "За останню годину:",
- "5 mins:" : "За останні 5 хв.:"
+ "Unknown Processor" : "Невідомий процесор"
},"pluralForm" :"nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);"
}
\ No newline at end of file
diff --git a/l10n/uz.js b/l10n/uz.js
index a98a7750..26e6cff9 100644
--- a/l10n/uz.js
+++ b/l10n/uz.js
@@ -1,11 +1,103 @@
OC.L10N.register(
"serverinfo",
{
- "Copied!" : "Copied!",
- "Not supported!" : "Not supported!",
- "Press ⌘-C to copy." : "Press ⌘-C to copy.",
- "Press Ctrl-C to copy." : "Press Ctrl-C to copy.",
- "System" : "System",
- "Copy" : "Copy"
+ "CPU info not available" : "CPU haqida ma'lumot mavjud emas",
+ "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}",
+ "RAM info not available" : "Operativ xotira haqida ma'lumot mavjud emas",
+ "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.",
+ "Unknown" : "Noma'lum",
+ "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d kun, %2$d soat, %3$d daqiqa, %4$d soniya",
+ "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d soat, %2$d daqiqa, %3$d soniya",
+ "System" : "Tizim",
+ "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.",
+ "Operating System:" : "Operatsion tizim:",
+ "CPU:" : "CPU:",
+ "threads" : "yo'nalishlar",
+ "Memory:" : "Xotira:",
+ "Server time:" : "Server vaqti:",
+ "Uptime:" : "Ish vaqti:",
+ "Temperature" : "Harorat",
+ "Load" : "Yuklamoq",
+ "Memory" : "Xotira",
+ "Disk" : "Disk",
+ "Mount:" : "O'rnatish:",
+ "Filesystem:" : "Fayl tizimi:",
+ "Size:" : "Hajmi:",
+ "Available:" : "Mavjud:",
+ "Used:" : "Ishlatilgan:",
+ "Files:" : "Fayllar:",
+ "Storages:" : "Omborlar:",
+ "Free Space:" : "Bo'sh joy:",
+ "Network" : "Tarmoq",
+ "Hostname:" : "Xost nomi:",
+ "Gateway:" : "Darvoza:",
+ "Status:" : "Holati:",
+ "Speed:" : "Tezlik:",
+ "Duplex:" : "Dupleks:",
+ "MAC:" : "MAC:",
+ "IPv4:" : "IPv4:",
+ "IPv6:" : "IPv6:",
+ "Active users" : "Faol foydalanuvchilar",
+ "Last hour" : "So'nggi soat",
+ "%s%% of all users" : "Barcha foydalanuvchilarning %s%%",
+ "Last 24 Hours" : "So'nggi 24 soat",
+ "Last 7 Days" : "So'nggi 7 kun",
+ "Last 30 Days" : "Oxirgi 30 kun",
+ "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:",
+ "PHP" : "PHP",
+ "Version:" : "Versiya:",
+ "Memory limit:" : "Xotira chegarasi:",
+ "MB" : "MB",
+ "Max execution time:" : "Maksimal bajarish vaqti:",
+ "seconds" : "sekundlar",
+ "Upload max size:" : "Maksimal hajmni yuklash:",
+ "OPcache Revalidate Frequency:" : "OPcache qayta tasdiqlash chastotasi:",
+ "Extensions:" : "Kengaytmalar:",
+ "Unable to list extensions" : "Kengaytmalarni ro'yxatga kiritish imkoni yo'q",
+ "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:",
+ "Database" : "Ma'lumotlar bazasi",
+ "Type:" : "Turi:",
+ "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",
+ "Output in JSON" : "JSON formatida chiqish",
+ "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)",
+ "Skip server update" : "Server yangilanishini o'tkazib yuborish",
+ "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.",
+ "Unknown Processor" : "Noma'lum protsessor"
},
"nplurals=1; plural=0;");
diff --git a/l10n/uz.json b/l10n/uz.json
index bd1a4959..afc715f6 100644
--- a/l10n/uz.json
+++ b/l10n/uz.json
@@ -1,9 +1,101 @@
{ "translations": {
- "Copied!" : "Copied!",
- "Not supported!" : "Not supported!",
- "Press ⌘-C to copy." : "Press ⌘-C to copy.",
- "Press Ctrl-C to copy." : "Press Ctrl-C to copy.",
- "System" : "System",
- "Copy" : "Copy"
+ "CPU info not available" : "CPU haqida ma'lumot mavjud emas",
+ "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}",
+ "RAM info not available" : "Operativ xotira haqida ma'lumot mavjud emas",
+ "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.",
+ "Unknown" : "Noma'lum",
+ "%1$d days, %2$d hours, %3$d minutes, %4$d seconds" : "%1$d kun, %2$d soat, %3$d daqiqa, %4$d soniya",
+ "%1$d hours, %2$d minutes, %3$d seconds" : "%1$d soat, %2$d daqiqa, %3$d soniya",
+ "System" : "Tizim",
+ "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.",
+ "Operating System:" : "Operatsion tizim:",
+ "CPU:" : "CPU:",
+ "threads" : "yo'nalishlar",
+ "Memory:" : "Xotira:",
+ "Server time:" : "Server vaqti:",
+ "Uptime:" : "Ish vaqti:",
+ "Temperature" : "Harorat",
+ "Load" : "Yuklamoq",
+ "Memory" : "Xotira",
+ "Disk" : "Disk",
+ "Mount:" : "O'rnatish:",
+ "Filesystem:" : "Fayl tizimi:",
+ "Size:" : "Hajmi:",
+ "Available:" : "Mavjud:",
+ "Used:" : "Ishlatilgan:",
+ "Files:" : "Fayllar:",
+ "Storages:" : "Omborlar:",
+ "Free Space:" : "Bo'sh joy:",
+ "Network" : "Tarmoq",
+ "Hostname:" : "Xost nomi:",
+ "Gateway:" : "Darvoza:",
+ "Status:" : "Holati:",
+ "Speed:" : "Tezlik:",
+ "Duplex:" : "Dupleks:",
+ "MAC:" : "MAC:",
+ "IPv4:" : "IPv4:",
+ "IPv6:" : "IPv6:",
+ "Active users" : "Faol foydalanuvchilar",
+ "Last hour" : "So'nggi soat",
+ "%s%% of all users" : "Barcha foydalanuvchilarning %s%%",
+ "Last 24 Hours" : "So'nggi 24 soat",
+ "Last 7 Days" : "So'nggi 7 kun",
+ "Last 30 Days" : "Oxirgi 30 kun",
+ "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:",
+ "PHP" : "PHP",
+ "Version:" : "Versiya:",
+ "Memory limit:" : "Xotira chegarasi:",
+ "MB" : "MB",
+ "Max execution time:" : "Maksimal bajarish vaqti:",
+ "seconds" : "sekundlar",
+ "Upload max size:" : "Maksimal hajmni yuklash:",
+ "OPcache Revalidate Frequency:" : "OPcache qayta tasdiqlash chastotasi:",
+ "Extensions:" : "Kengaytmalar:",
+ "Unable to list extensions" : "Kengaytmalarni ro'yxatga kiritish imkoni yo'q",
+ "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:",
+ "Database" : "Ma'lumotlar bazasi",
+ "Type:" : "Turi:",
+ "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",
+ "Output in JSON" : "JSON formatida chiqish",
+ "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)",
+ "Skip server update" : "Server yangilanishini o'tkazib yuborish",
+ "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.",
+ "Unknown Processor" : "Noma'lum protsessor"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/vi.js b/l10n/vi.js
index 99203996..a5686fd3 100644
--- a/l10n/vi.js
+++ b/l10n/vi.js
@@ -10,6 +10,7 @@ OC.L10N.register(
"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:",
@@ -19,11 +20,11 @@ OC.L10N.register(
"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",
- "Load average: {cpu} (last minute)" : "Tải trung bình:{cpu} (phút trước)"
+ "Copy" : "Sao chép"
},
"nplurals=1; plural=0;");
diff --git a/l10n/vi.json b/l10n/vi.json
index 65246e55..652bc5b0 100644
--- a/l10n/vi.json
+++ b/l10n/vi.json
@@ -8,6 +8,7 @@
"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:",
@@ -17,11 +18,11 @@
"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",
- "Load average: {cpu} (last minute)" : "Tải trung bình:{cpu} (phút trước)"
+ "Copy" : "Sao chép"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/zh_CN.js b/l10n/zh_CN.js
index 1ff46c10..9c259867 100644
--- a/l10n/zh_CN.js
+++ b/l10n/zh_CN.js
@@ -2,6 +2,9 @@ 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}",
@@ -10,13 +13,13 @@ OC.L10N.register(
"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:" : "操作系统:",
"CPU:" : "CPU:",
- "Unknown Processor" : "未知处理器",
"Memory:" : "内存:",
"Server time:" : "服务器时间:",
"Uptime:" : "运行时长:",
@@ -44,6 +47,9 @@ OC.L10N.register(
"Active users" : "活跃用户",
"Last hour" : "上个小时",
"%s%% of all users" : "%s%% 所有用户",
+ "Last 24 Hours" : "最近24小时",
+ "Last 7 Days" : "过去7天",
+ "Last 30 Days" : "过去30天",
"Shares" : "共享",
"Users:" : "用户:",
"Groups:" : "组别:",
@@ -56,11 +62,14 @@ OC.L10N.register(
"Version:" : "版本:",
"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" : "外部监视工具",
@@ -71,11 +80,6 @@ OC.L10N.register(
"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” 头的令牌。",
- "Load average: {cpu} (last minute)" : "负载平均值: {cpu} (上一分钟)",
- "DNS:" : "DNS:",
- "Total users:" : "总用户:",
- "24 hours:" : "24小时:",
- "1 hour:" : "1小时:",
- "5 mins:" : "5分钟:"
+ "Unknown Processor" : "未知处理器"
},
"nplurals=1; plural=0;");
diff --git a/l10n/zh_CN.json b/l10n/zh_CN.json
index c74a3e26..23c511bb 100644
--- a/l10n/zh_CN.json
+++ b/l10n/zh_CN.json
@@ -1,5 +1,8 @@
{ "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}",
@@ -8,13 +11,13 @@
"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:" : "操作系统:",
"CPU:" : "CPU:",
- "Unknown Processor" : "未知处理器",
"Memory:" : "内存:",
"Server time:" : "服务器时间:",
"Uptime:" : "运行时长:",
@@ -42,6 +45,9 @@
"Active users" : "活跃用户",
"Last hour" : "上个小时",
"%s%% of all users" : "%s%% 所有用户",
+ "Last 24 Hours" : "最近24小时",
+ "Last 7 Days" : "过去7天",
+ "Last 30 Days" : "过去30天",
"Shares" : "共享",
"Users:" : "用户:",
"Groups:" : "组别:",
@@ -54,11 +60,14 @@
"Version:" : "版本:",
"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" : "外部监视工具",
@@ -69,11 +78,6 @@
"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” 头的令牌。",
- "Load average: {cpu} (last minute)" : "负载平均值: {cpu} (上一分钟)",
- "DNS:" : "DNS:",
- "Total users:" : "总用户:",
- "24 hours:" : "24小时:",
- "1 hour:" : "1小时:",
- "5 mins:" : "5分钟:"
+ "Unknown Processor" : "未知处理器"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/zh_HK.js b/l10n/zh_HK.js
index 1ab1bce8..30801825 100644
--- a/l10n/zh_HK.js
+++ b/l10n/zh_HK.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"Not supported!" : "不支援!",
"Press ⌘-C to copy." : "請按【⌘-C】以複製。",
"Press Ctrl-C to copy." : "請按【Ctrl-C】以複製。",
+ "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:",
- "Unknown Processor" : "處理器不詳",
+ "threads" : "主題",
"Memory:" : "記憶體:",
"Server time:" : "伺服器時間:",
"Uptime:" : "運行時間:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "版本:",
"Memory limit:" : "記憶體限制:",
+ "MB" : "MB",
"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 共用人員",
+ "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:" : "達到最大子進程數:",
"Database" : "數據庫",
"Type:" : "類型:",
"External monitoring tool" : "外部監控工具",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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” 標頭一起傳遞。",
- "Load average: {cpu} (last minute)" : "平均負載:{cpu}(上一分鐘)",
- "DNS:" : "DNS:",
- "Total users:" : "總用戶:",
- "24 hours:" : "24 小時︰",
- "1 hour:" : "1 小時︰",
- "5 mins:" : "5 分鐘︰"
+ "Unknown Processor" : "處理器不詳"
},
"nplurals=1; plural=0;");
diff --git a/l10n/zh_HK.json b/l10n/zh_HK.json
index 793b3486..46aa4ebf 100644
--- a/l10n/zh_HK.json
+++ b/l10n/zh_HK.json
@@ -13,13 +13,16 @@
"Not supported!" : "不支援!",
"Press ⌘-C to copy." : "請按【⌘-C】以複製。",
"Press Ctrl-C to copy." : "請按【Ctrl-C】以複製。",
+ "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:",
- "Unknown Processor" : "處理器不詳",
+ "threads" : "主題",
"Memory:" : "記憶體:",
"Server time:" : "伺服器時間:",
"Uptime:" : "運行時間:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "版本:",
"Memory limit:" : "記憶體限制:",
+ "MB" : "MB",
"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 共用人員",
+ "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:" : "達到最大子進程數:",
"Database" : "數據庫",
"Type:" : "類型:",
"External monitoring tool" : "外部監控工具",
@@ -77,11 +96,6 @@
"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” 標頭一起傳遞。",
- "Load average: {cpu} (last minute)" : "平均負載:{cpu}(上一分鐘)",
- "DNS:" : "DNS:",
- "Total users:" : "總用戶:",
- "24 hours:" : "24 小時︰",
- "1 hour:" : "1 小時︰",
- "5 mins:" : "5 分鐘︰"
+ "Unknown Processor" : "處理器不詳"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/l10n/zh_TW.js b/l10n/zh_TW.js
index 8c86b9bb..ce425e48 100644
--- a/l10n/zh_TW.js
+++ b/l10n/zh_TW.js
@@ -15,13 +15,16 @@ OC.L10N.register(
"Not supported!" : "不支援!",
"Press ⌘-C to copy." : "請按⌘-C以複製。",
"Press Ctrl-C to copy." : "請按Ctrl-C以複製。",
+ "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:",
- "Unknown Processor" : "未知的處理器",
+ "threads" : "執行緒",
"Memory:" : "記憶體:",
"Server time:" : "伺服器時間:",
"Uptime:" : "運作時間:",
@@ -63,12 +66,28 @@ OC.L10N.register(
"PHP" : "PHP",
"Version:" : "版本:",
"Memory limit:" : "記憶體限制:",
+ "MB" : "MB",
"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 worker pool",
+ "Pool name:" : "Pool 名稱:",
+ "Pool type:" : "Pool 類型:",
+ "Start time:" : "開始時間:",
+ "Accepted connections:" : "接受的連線:",
+ "Total processes:" : "總處理程序:",
+ "Active processes:" : "作用中的處理程序:",
+ "Idle processes:" : "閒置的處理程序:",
+ "Listen queue:" : "監聽佇列:",
+ "Slow requests:" : "慢請求:",
+ "Max listen queue:" : "最大監聽佇列:",
+ "Max active processes:" : "最大作用中處理程序:",
+ "Max children reached:" : "最大子處理程序數:",
"Database" : "資料庫",
"Type:" : "類型:",
"External monitoring tool" : "外部監控工具",
@@ -79,11 +98,6 @@ OC.L10N.register(
"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」標頭一起傳遞。",
- "Load average: {cpu} (last minute)" : "平均負載:{cpu}(前ㄧ分鐘)",
- "DNS:" : "DNS:",
- "Total users:" : "總使用者:",
- "24 hours:" : "24小時:",
- "1 hour:" : "1小時:",
- "5 mins:" : "5分鐘:"
+ "Unknown Processor" : "未知的處理器"
},
"nplurals=1; plural=0;");
diff --git a/l10n/zh_TW.json b/l10n/zh_TW.json
index f26ee574..24b055e5 100644
--- a/l10n/zh_TW.json
+++ b/l10n/zh_TW.json
@@ -13,13 +13,16 @@
"Not supported!" : "不支援!",
"Press ⌘-C to copy." : "請按⌘-C以複製。",
"Press Ctrl-C to copy." : "請按Ctrl-C以複製。",
+ "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:",
- "Unknown Processor" : "未知的處理器",
+ "threads" : "執行緒",
"Memory:" : "記憶體:",
"Server time:" : "伺服器時間:",
"Uptime:" : "運作時間:",
@@ -61,12 +64,28 @@
"PHP" : "PHP",
"Version:" : "版本:",
"Memory limit:" : "記憶體限制:",
+ "MB" : "MB",
"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 worker pool",
+ "Pool name:" : "Pool 名稱:",
+ "Pool type:" : "Pool 類型:",
+ "Start time:" : "開始時間:",
+ "Accepted connections:" : "接受的連線:",
+ "Total processes:" : "總處理程序:",
+ "Active processes:" : "作用中的處理程序:",
+ "Idle processes:" : "閒置的處理程序:",
+ "Listen queue:" : "監聽佇列:",
+ "Slow requests:" : "慢請求:",
+ "Max listen queue:" : "最大監聽佇列:",
+ "Max active processes:" : "最大作用中處理程序:",
+ "Max children reached:" : "最大子處理程序數:",
"Database" : "資料庫",
"Type:" : "類型:",
"External monitoring tool" : "外部監控工具",
@@ -77,11 +96,6 @@
"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」標頭一起傳遞。",
- "Load average: {cpu} (last minute)" : "平均負載:{cpu}(前ㄧ分鐘)",
- "DNS:" : "DNS:",
- "Total users:" : "總使用者:",
- "24 hours:" : "24小時:",
- "1 hour:" : "1小時:",
- "5 mins:" : "5分鐘:"
+ "Unknown Processor" : "未知的處理器"
},"pluralForm" :"nplurals=1; plural=0;"
}
\ No newline at end of file
diff --git a/lib/SessionStatistics.php b/lib/SessionStatistics.php
index 2402b487..e253d7dd 100644
--- a/lib/SessionStatistics.php
+++ b/lib/SessionStatistics.php
@@ -11,6 +11,7 @@
namespace OCA\ServerInfo;
use OCP\AppFramework\Utility\ITimeFactory;
+use OCP\DB\QueryBuilder\IQueryBuilder;
use OCP\IDBConnection;
/**
@@ -58,18 +59,21 @@ public function getSessionStatistics(): array {
* @param int $offset seconds
*/
private function getNumberOfActiveUsers(int $offset): int {
- $query = $this->connection->getQueryBuilder();
- $query->select('uid')
- ->from('authtoken')
- ->where($query->expr()->gte(
- 'last_activity',
- $query->createNamedParameter($this->timeFactory->getTime() - $offset)
- ))->groupBy('uid');
+ $queryBuilder = $this->connection->getQueryBuilder();
+ $queryBuilder->select($queryBuilder->func()->count('userid'))
+ ->from('preferences')
+ ->where($queryBuilder->expr()->eq('appid', $queryBuilder->createNamedParameter('login')))
+ ->andWhere($queryBuilder->expr()->eq('configkey', $queryBuilder->createNamedParameter('lastLogin')))
+ ->andwhere($queryBuilder->expr()->gte(
+ $queryBuilder->expr()->castColumn('configvalue', IQueryBuilder::PARAM_INT),
+ $queryBuilder->createNamedParameter($this->timeFactory->getTime() - $offset, IQueryBuilder::PARAM_INT),
+ IQueryBuilder::PARAM_INT,
+ ));
- $result = $query->executeQuery();
- $activeUsers = $result->fetchAll();
+ $result = $queryBuilder->executeQuery();
+ $activeUsers = (int)$result->fetchOne();
$result->closeCursor();
- return count($activeUsers);
+ return $activeUsers;
}
}
diff --git a/psalm.xml b/psalm.xml
index ec813cd6..228c4239 100644
--- a/psalm.xml
+++ b/psalm.xml
@@ -28,36 +28,4 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/tests/lib/SessionStatisticsTest.php b/tests/lib/SessionStatisticsTest.php
index 57744194..3c83d898 100644
--- a/tests/lib/SessionStatisticsTest.php
+++ b/tests/lib/SessionStatisticsTest.php
@@ -27,16 +27,15 @@ class SessionStatisticsTest extends TestCase {
private ITimeFactory&MockObject $timeFactory;
private IDBConnection $connection;
private SessionStatistics $instance;
- private const TABLE = 'authtoken';
+ private int $currentTime;
+ private const TABLE = 'preferences';
private const OFFSET_5MIN = 300;
private const OFFSET_1HOUR = 3600;
private const OFFSET_1DAY = 86400;
- private const OFFSET_7DAYS = 604800;
private const OFFSET_1MONTH = 2592000;
private const OFFSET_3MONTHS = 7776000;
private const OFFSET_6MONTHS = 15552000;
private const OFFSET_1YEAR = 31536000;
- private const CURRENT_TIME = 100000000;
protected function setUp(): void {
@@ -47,54 +46,74 @@ protected function setUp(): void {
$this->connection = Server::get(IDBConnection::class);
$this->instance = new SessionStatistics($this->connection, $this->timeFactory);
+
+ // when running the tests locally, you may have other lastLogin values in the database.
+ // using a timestamp in the future to workaround.
+ $this->currentTime = time() + (400 * 24 * 60 * 60);
+
+ $this->removeDummyValues();
+ $this->addDummyValues();
+ }
+
+ protected function tearDown(): void {
+ $this->removeDummyValues();
+ }
+
+ protected function removeDummyValues(): void {
+ $qb = $this->connection->getQueryBuilder();
+ $qb->delete('preferences')
+ ->where($qb->expr()->eq('appid', $qb->createNamedParameter('login')))
+ ->andWhere($qb->expr()->eq('configkey', $qb->createNamedParameter('lastLogin')))
+ ->andWhere($qb->expr()->like('userid', $qb->createNamedParameter('session-statistics-test%')));
+ $qb->executeStatement();
}
private function addDummyValues(): void {
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_5MIN + 1, 10);
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_1HOUR + 1, 20);
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_1DAY + 1, 30);
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_7DAYS + 1, 40);
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_1MONTH + 1, 50);
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_3MONTHS + 1, 60);
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_6MONTHS + 1, 70);
- $this->addDummyValuesWithLastLogin(self::CURRENT_TIME - self::OFFSET_1YEAR + 1, 80);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_5MIN, 10);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_5MIN, 11);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1HOUR, 20);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1HOUR, 21);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1HOUR, 22);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1DAY, 30);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1MONTH, 50);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_3MONTHS, 60);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_6MONTHS, 70);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1YEAR, 80);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1YEAR, 81);
+ $this->addDummyValuesWithLastLogin(self::OFFSET_1YEAR, 82);
}
- private function addDummyValuesWithLastLogin($lastActivity, $numOfEntries): void {
- for ($i = 0; $i < $numOfEntries; $i++) {
- $query = $this->connection->getQueryBuilder();
- $query->insert(self::TABLE)
- ->values(
- [
- 'uid' => $query->createNamedParameter('user-' . ($numOfEntries + $i % 2)),
- 'login_name' => $query->createNamedParameter('user-' . ($numOfEntries + $i % 2)),
- 'password' => $query->createNamedParameter('password'),
- 'name' => $query->createNamedParameter('user agent'),
- 'token' => $query->createNamedParameter('token-' . $this->getUniqueID()),
- 'type' => $query->createNamedParameter(0),
- 'last_activity' => $query->createNamedParameter($lastActivity),
- 'last_check' => $query->createNamedParameter($lastActivity),
- ]
- );
- $query->executeStatement();
- }
+ private function addDummyValuesWithLastLogin(int $offset, int $id): void {
+ $query = $this->connection->getQueryBuilder();
+ $query->insert(self::TABLE)
+ ->values(
+ [
+ 'userid' => $query->createNamedParameter("session-statistics-test$id"),
+ 'appid' => $query->createNamedParameter('login'),
+ 'configkey' => $query->createNamedParameter('lastLogin'),
+ 'configvalue' => $query->createNamedParameter((string)($this->currentTime - $offset + 1)),
+ 'lazy' => $query->createNamedParameter(0),
+ 'type' => $query->createNamedParameter(0),
+ 'flags' => $query->createNamedParameter(0),
+ ]
+ );
+ $query->executeStatement();
}
public function testGetSessionStatistics() {
- $this->addDummyValues();
$this->timeFactory->expects($this->any())->method('getTime')
- ->willReturn(self::CURRENT_TIME);
+ ->willReturn($this->currentTime);
$result = $this->instance->getSessionStatistics();
$this->assertSame(8, count($result));
- $this->assertSame(2, $result['last5minutes']);
- $this->assertSame(4, $result['last1hour']);
- $this->assertSame(6, $result['last24hours']);
- $this->assertSame(8, $result['last7days']);
- $this->assertSame(10, $result['last1month']);
- $this->assertSame(12, $result['last3months']);
- $this->assertSame(14, $result['last6months']);
- $this->assertSame(16, $result['lastyear']);
+ $this->assertSame(2, $result['last5minutes']); // 2 users in last 5 minutes
+ $this->assertSame(5, $result['last1hour']); // 2 + 3 users in last hour
+ $this->assertSame(6, $result['last24hours']); // 2 + 3 + 1 users in last day
+ $this->assertSame(6, $result['last7days']); // 2 + 3 + 1 + 0 users in last week
+ $this->assertSame(7, $result['last1month']); // 2 + 3 + 1 + 0 + 1 users in last month
+ $this->assertSame(8, $result['last3months']); // 2 + 3 + 1 + 0 + 1 + 1 users in last 3 months
+ $this->assertSame(9, $result['last6months']); // 2 + 3 + 1 + 0 + 1 + 1 + 1 users in last 6 months
+ $this->assertSame(12, $result['lastyear']); // 2 + 3 + 1 + 0 + 1 + 1 + 1 + 3 users in last year
}
}
diff --git a/tests/psalm-baseline.xml b/tests/psalm-baseline.xml
index 03be60e5..02706faf 100644
--- a/tests/psalm-baseline.xml
+++ b/tests/psalm-baseline.xml
@@ -1,21 +1,228 @@
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- getInner
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
- $loadavg === false
-
-
- $this->installer
- Installer
- Installer
+
+
+
+
+
+
+
+
+
+
+ installer]]>
+
+
-
- free_space
+
+