From f2dd32b5674c5f8ee8eb0eb3f63afac171051a67 Mon Sep 17 00:00:00 2001 From: Afreen Misbah Date: Wed, 14 May 2025 22:46:05 +0530 Subject: [PATCH] squid: mgr/dashboard: deprecate transifex-i18ntool and support transifex cli Fixes https://tracker.ceph.com/issues/71292 - backport of https://github.com/ceph/ceph/pull/63039 for squid Signed-off-by: Afreen Misbah --- doc/dev/developer_guide/dash-devel.rst | 55 +- src/pybind/mgr/dashboard/frontend/.tx/config | 12 + .../mgr/dashboard/frontend/package-lock.json | 42 +- .../mgr/dashboard/frontend/package.json | 1 - .../frontend/src/locale/messages.cs.xlf | 22984 ++++++++++++--- .../frontend/src/locale/messages.de-DE.xlf | 23844 ++++++++++++---- .../frontend/src/locale/messages.es-ES.xlf | 18664 +++++++++--- .../frontend/src/locale/messages.fr-FR.xlf | 18547 +++++++++--- .../frontend/src/locale/messages.id-ID.xlf | 17871 +++++++++--- .../frontend/src/locale/messages.it-IT.xlf | 18595 +++++++++--- .../frontend/src/locale/messages.ja-JP.xlf | 18579 +++++++++--- .../frontend/src/locale/messages.ko-KR.xlf | 18304 +++++++++--- .../frontend/src/locale/messages.pl-PL.xlf | 17826 +++++++++--- .../frontend/src/locale/messages.pt-BR.xlf | 18353 +++++++++--- .../frontend/src/locale/messages.zh-CN.xlf | 18391 +++++++++--- .../frontend/src/locale/messages.zh-TW.xlf | 18339 +++++++++--- 16 files changed, 176310 insertions(+), 54097 deletions(-) create mode 100755 src/pybind/mgr/dashboard/frontend/.tx/config diff --git a/doc/dev/developer_guide/dash-devel.rst b/doc/dev/developer_guide/dash-devel.rst index 4fa992b8d55..26ca83c306a 100644 --- a/doc/dev/developer_guide/dash-devel.rst +++ b/doc/dev/developer_guide/dash-devel.rst @@ -1038,9 +1038,6 @@ scenarios. For example - ``throw new DashboardNotFoundError()``. -Internationalization (i18n) ---------------------------- - How to extract messages from source code? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -1086,31 +1083,23 @@ All translations will then be reviewed and later pushed upstream. Updating translated messages ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -Any time there are new messages translated and reviewed in a specific language -we should update the translation file upstream. +1. Download the `transifex CLI tool `_ + +2. Create an `API token `_. -To do that, check the settings in the i18n config file -``src/pybind/mgr/dashboard/frontend/i18n.config.json``:: and make sure that the -organization is *ceph*, the project is *ceph-dashboard* and the resource is -the one you want to pull from and push to e.g. *Master:master*. To find a list -of available resources visit ``_. +3. Pushing translation: -After you checked the config go to the directory ``src/pybind/mgr/dashboard/frontend`` and run:: + $ tx push -s - $ npm run i18n + This will push the source file in transifex. -This command will extract all marked messages from the HTML templates and -TypeScript files. Once the source file has been created it will push it to -transifex and pull the latest translations. It will also fill all the -untranslated strings with the source string. -The tool will ask you for an api token, unless you added it by running: +4. Pulling translation: - $ npm run i18n:token + $ tx pull -r ceph-dashboard. -f -To create a transifex api token visit ``_. + e.g `tx pull -r ceph-dashboard.main` -After the command ran successfully, build the UI and check if everything is -working as expected. You also might want to run the frontend tests. + This will pull all translations of the resource. Add a new release resource to transifex ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ @@ -1118,24 +1107,32 @@ Add a new release resource to transifex In order to organize the translations, we create a `transifex resource `_ for every Ceph release. This means, once a new version has been released, the -``src/pybind/mgr/dashboard/frontend/i18n.config.json`` needs to be updated on +``src/pybind/mgr/dashboard/frontend/.tx/config`` needs to be updated on the release branch. Please replace:: - -"resource": "Master:master" +`resource_name = Main` by:: +`resource_name = ` -"resource": ":" +E.g. the resource definition for the Reef release:: +`resource_name = Reef` + +And replace:: +`[o:ceph:p:ceph-dashboard:r:main]` + +by:: +`[o:ceph:p:ceph-dashboard:r:]` -E.g. the resource definition for the pacific release:: +E.g. the resource definition for the Reef release:: +`[o:ceph:p:ceph-dashboard:r:reef]` -"resource": "Pacific:pacific" +Once done push the translations:: + $ tx push -s Note: - The first part of the resource definition (before the colon) needs to be - written with a capital letter. + Only the is capitalized. Suggestions ~~~~~~~~~~~ diff --git a/src/pybind/mgr/dashboard/frontend/.tx/config b/src/pybind/mgr/dashboard/frontend/.tx/config new file mode 100755 index 00000000000..42b7d71be58 --- /dev/null +++ b/src/pybind/mgr/dashboard/frontend/.tx/config @@ -0,0 +1,12 @@ +[main] +host = https://app.transifex.com + +[o:ceph:p:ceph-dashboard:r:squid] +file_filter = src/locale/messages..xlf +source_file = src/locale/messages.xlf +type = XLIFF +minimum_perc = 0 +resource_name = Squid +replace_edited_strings = false +keep_translations = false +lang_map = de_DE: de-DE, es_ES: es-ES, fr_FR: fr-FR, id_ID: id-ID, it_IT: it-IT, ja_JP: ja-JP, ko_KR: ko-KR, pl_PL: pl-PL, pt_BR: pt-BR, zh_CN: zh-CN, zh_TW: zh-TW diff --git a/src/pybind/mgr/dashboard/frontend/package-lock.json b/src/pybind/mgr/dashboard/frontend/package-lock.json index 97a4cb172a1..5eafda9150a 100644 --- a/src/pybind/mgr/dashboard/frontend/package-lock.json +++ b/src/pybind/mgr/dashboard/frontend/package-lock.json @@ -99,7 +99,6 @@ "stylelint-config-sass-guidelines": "7.1.0", "stylelint-declaration-use-variable": "1.7.3", "table": "6.8.0", - "transifex-i18ntool": "1.1.0", "ts-node": "9.0.0", "typescript": "4.9.5", "validator": "13.12.0" @@ -8397,6 +8396,12 @@ "integrity": "sha512-pAeZeUbLE4Z9Vi9wsWV2bYPTweEHeJJy0G4pEjOA/FSvy1Ad5U5Km8iDV6TKre1mjBiVNfAdVHKruP8bAh4Q5A==", "dev": true }, + "node_modules/@types/validator": { + "version": "13.12.2", + "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.12.2.tgz", + "integrity": "sha512-6SlHBzUW8Jhf3liqrGGXyTJSIFe4nqlJ5A5KaMZ2l/vbM3Wh3KSybots/wfWVzNLK4D1NZluDlSQIbIEPx6oyA==", + "dev": true + }, "node_modules/@types/ws": { "version": "8.5.9", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.9.tgz", @@ -8406,12 +8411,6 @@ "@types/node": "*" } }, - "node_modules/@types/validator": { - "version": "13.12.2", - "resolved": "https://registry.npmjs.org/@types/validator/-/validator-13.12.2.tgz", - "integrity": "sha512-6SlHBzUW8Jhf3liqrGGXyTJSIFe4nqlJ5A5KaMZ2l/vbM3Wh3KSybots/wfWVzNLK4D1NZluDlSQIbIEPx6oyA==", - "dev": true - }, "node_modules/@types/xml2js": { "version": "0.4.14", "resolved": "https://registry.npmjs.org/@types/xml2js/-/xml2js-0.4.14.tgz", @@ -32296,23 +32295,6 @@ "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", "dev": true }, - "node_modules/transifex-i18ntool": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/transifex-i18ntool/-/transifex-i18ntool-1.1.0.tgz", - "integrity": "sha512-W1FIGosZJ3cxbYk238QgsJvKPq12dPDIMn3rg37ZHNtoNAGrUAV6wKp+YSFwnMcqk3igZcAEPlLW1jFjBFC95Q==", - "dev": true, - "dependencies": { - "colors": "^1.0.3", - "minimist": "^1.2.0", - "prompts": "^2.0.4", - "request": "^2.88.0", - "request-promise-native": "^1.0.7", - "xliff": "^4.2.0" - }, - "bin": { - "i18ntool": "bin/i18ntool.js" - } - }, "node_modules/traverse": { "version": "0.6.7", "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.7.tgz", @@ -34375,18 +34357,6 @@ } } }, - "node_modules/xliff": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/xliff/-/xliff-4.4.0.tgz", - "integrity": "sha512-SVzjB3hTHJ/CbsIJtbQg2BAxhvVJqbZ3OluMS7u6JnCbf0/twuj2KASghYHiKHz2sJqZo42dGjydp0URKmWWoA==", - "dev": true, - "dependencies": { - "xml-js": "1.6.11" - }, - "engines": { - "node": ">=6.0.0" - } - }, "node_modules/xml": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/xml/-/xml-1.0.1.tgz", diff --git a/src/pybind/mgr/dashboard/frontend/package.json b/src/pybind/mgr/dashboard/frontend/package.json index 6251e43fc3f..145501b822e 100644 --- a/src/pybind/mgr/dashboard/frontend/package.json +++ b/src/pybind/mgr/dashboard/frontend/package.json @@ -133,7 +133,6 @@ "stylelint-config-sass-guidelines": "7.1.0", "stylelint-declaration-use-variable": "1.7.3", "table": "6.8.0", - "transifex-i18ntool": "1.1.0", "ts-node": "9.0.0", "typescript": "4.9.5", "validator": "13.12.0" diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.cs.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.cs.xlf index 20bff20f257..cd71ce0cb35 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.cs.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.cs.xlf @@ -1,6113 +1,19597 @@ - - + + - - Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + + Close + Zavřít + + node_modules/src/ngb-config.ts + 13 + + + + HH + + node_modules/src/ngb-config.ts + 13 + + + + Close + Zavřít + + node_modules/src/ngb-config.ts + 13 + + + + «« + + node_modules/src/ngb-config.ts + 13 + + + + Select month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + Previous month + Předchozí měsíc + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader + + + Hours + + node_modules/src/ngb-config.ts + 13 + + + + « + + node_modules/src/ngb-config.ts + 13 + + + + Previous + + node_modules/src/ngb-config.ts + 13 + + + + MM + + node_modules/src/ngb-config.ts + 13 + + + + » + + node_modules/src/ngb-config.ts + 13 + + + + Select year + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + Next month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + Next + + node_modules/src/ngb-config.ts + 13 + + + + Minutes + + node_modules/src/ngb-config.ts + 13 + + + + »» + + node_modules/src/ngb-config.ts + 13 + + + + Increment hours + + node_modules/src/ngb-config.ts + 13 + + + + First + + node_modules/src/ngb-config.ts + 13 + + + + Previous + + node_modules/src/ngb-config.ts + 13 + + + + Decrement hours + + node_modules/src/ngb-config.ts + 13 + + + + Next + + node_modules/src/ngb-config.ts + 13 + + + + Increment minutes + + node_modules/src/ngb-config.ts + 13 + + + + Last + + node_modules/src/ngb-config.ts + 13 + + + + Decrement minutes + + node_modules/src/ngb-config.ts + 13 + + + + SS + + node_modules/src/ngb-config.ts + 13 + + + + Seconds + + node_modules/src/ngb-config.ts + 13 + + + + Increment seconds + + node_modules/src/ngb-config.ts + 13 + + + + Decrement seconds + + node_modules/src/ngb-config.ts + 13 + + + + + + node_modules/src/ngb-config.ts + 13 + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + + + + Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + + + + Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + + + + Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + + + + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + + + + NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + + + + Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - - Access Denied - Access Denied + + Must be greater than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - - Name - Name + + Must be less than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + - - Created - Created + + Overview + Přehled + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + - - Enabled - Enabled + + Targets + Cíle + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + - - Updated config option - - - Updated config option - - + + iSCSI Topology + Topologie iSCSI + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + - + Name Název + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + - - Values - Hodnoty - - - Description - Popis - - - Long description - Podrobnější popis + + Current + Stávající + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + - + Default Výchozí + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + - - Daemon default - Výchozí pro proces služby + + Discovery Authentication + Ověřování pro objevování + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + - - Services - Služby + + User + Uživatele + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + - - -- Default -- - -- Default -- + + This field is required. + Tuto kolonku je třeba vyplnit. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + - - true - true + + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + - - false - false + + Password + Heslo + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + - - The entered value is too high! It must not be greater than - . - - Zadaná hodnota je příliš vysoká! Nemůže být vyšší než - . - + + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + - - The entered value is too low! It must not be lower than - . - - Zadaná hodnota je příliš nízká! Nemůže být nižší než - . - + + Mutual User + Uživatel pro vzájemné ověření + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + - - Level - Level + + Mutual Password + Heslo pro vzájemné ověření + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + - - Service - Service + + Updated discovery authentication + Aktualizováno ověřování pro objevování + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + + + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title - - Source - Source + + Target IQN + IQN cíle + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + - - Modified - Modified + + IQN has wrong pattern. + IQN nemá správný formát. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + - - Description - Description + + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + IQN má následující formu zápisu „iqn.$rok-$měsíc.$adresaObráceně:$určenýNázev' + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + - - Current value - Current value + + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Například: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + - - Default - Default + + More information + Další informace + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + - - Editable - Editable + + This target has modified advanced settings. + Tento cíl má změněná pokročilá nastavení. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + - - CRUSH map viewer - prohlížeč CRUSH mapy + + Portals + Portály + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + - - host - host + + Add portal + Přidat portál + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - - - - - - - - - - form title + + At least gateways are required. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + - - Hostname - Název stroje + + Images + Obrazy + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - - This field is required. - Tuto kolonku je třeba vyplnit. + + Backstore: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + - - The chosen hostname is already in use. - Zvolený název stroje už je používán. + + This image has modified settings. + Tento obraz má změněná nastavení. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + - - The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + + Duplicated LUN numbers. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + - - Hostname - Hostname + + Duplicated WWN. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + - - Labels - Labels + + Add image + Přidat obraz + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + - - Version - Version + + ACL authentication + ACL ověřování + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + - - Edit Host: - - - Edit Host: - - + + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + - - There are no labels. - There are no labels. + + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + - - Filter or add labels - Filter or add labels + + Initiators + Iniciátory + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + - - Add label - Add label + + Initiator + Iniciátor + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + - - Edit Host - Edit Host + + Client IQN + IQN klienta + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + - - Updated Host " - " - - Updated Host " - " - + + Initiator IQN needs to be unique. + Je třeba, aby se IQN iniciátoru neopakovalo. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + - - Hosts List - Seznam strojů + + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + - - Overall Performance - Celková výkonnost + + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + - - Devices - Zařízení + + Initiator belongs to a group. Images will be configure in the group. + Iniciátor spadá do skupiny. Obrazy budou nastaveny ve skupině. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + - - Cluster Logs - Záznamy událostí v klastra + + No items added. + Nepřidány žádné položky. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + - - Audit Logs - Auditní záznamy událostí + + Add initiator + Přidat iniciátor + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + - - Priority: - Priorita: + + Groups + Skupiny + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + - - Keyword: - Klíčové slovo: + + Group + Skupina + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + - - Date: - Datum: + + Name + Název + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + - - Time range: - Časový rozsah: + + Add group + Přidat skupinu + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + - - No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + + There are no portals available. + Nejsou k dispozici žádné portály. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + - - Reset filter. - Reset filter. + + There are no images available. + Nejsou k dispozici žádné obrazy. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + - - Updated options for module ' - '. - - Updated options for module ' - '. - + + There are no images available. Please make sure you add an image to the target. + Nejsou k dispozici žádné obrazy. Ověřte, že jste cíli přidali obraz. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + - - Edit Manager module - Upravit modul správy - - - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - Zadaná hodnota není platné UUID, např.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - - - The entered value needs to be a valid IP address. - Je třeba, aby zadaná hodnota byla platnou IP adresou. - - - The entered value is too high! It must be lower or equal to - . - - Zadaná hodnota je příliš vysoká! Je třeba, aby byla nižší nebo rovná - . - - - - The entered value is too low! It must be greater or equal to - . - - Zadaná hodnota je příliš nízká! Je třeba, aby byla vyšší než nebo rovná - . - + + There are no initiators available. Please make sure you add an initiator to the target. + Nejsou k dispozici žádné iniciátory. Ověřte, že jste cíli přidali iniciátor. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + - - The entered value needs to be a number. - Je třeba, aby zadaná hodnota byla číslo. + + target + cíl + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + - - The entered value needs to be a number or decimal. - Je třeba, aby zadaná hodnota byla číslo nebo desítkové. + + Configure + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + - - Always-On - Always-On + + Changing these parameters from their default values is usually not necessary. + Měnit tyto parametry z jejich výchozích hodnot obvykle není potřeba. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + - - Edit - Edit + + Identifier + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + - - Enable - Enable + + lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + - - Disable - Disable + + wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + - - This Manager module is always on. - This Manager module is always on. + + Settings + Nastavení + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + - - Reconnecting, please wait ... - Reconnecting, please wait ... + + Backstore + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + - - Rank - Rank + + Advanced Settings + Pokročilá nastavení + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + - - Public Address - Public Address + + iSCSI Targets not available + iSCSI cíl není k dispozici + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - - Open Sessions - Open Sessions + + Please consult the on how to configure and enable the iSCSI Targets management functionality. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + - - Status - Stav + + Available information: + Informace k dispozici: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + - - In Quorum - V kvóru + + Discovery authentication + Ověřování pro objevování + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + - - Not In Quorum - Není v kvóru + + Target + Cíl + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + - - Cluster ID - Identif. kastru + + Portals + Portály + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + - - monmap modified - mapa monitorů změněna + + Images + Obrazy + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + - - monmap epoch - monmap epocha + + # Sessions + Počet relací + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + - - quorum con - kvórum spojení + + Unavailable gateway(s) + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + - - quorum mon - kvórum monitor + + Target has active sessions + Cíl má aktivní relace + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + - - required con - vyžadováno spojení + + iSCSI target + iSCSI cíl + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + - - required mon - vyžadováno monitorů + + Gateways + Brány + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + - - OSDs - OSDs + + State + Stav + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + - - Encryption - Encryption + + # Targets + Počet cílů + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + - - Shared devices - Shared devices + + Pool + Fond + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + - - Configuration - Nastavení + + Image + Obraz + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + - - Features - Funkce + + Backstore + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + - - WAL slots - WAL slots + + Read Bytes + Bajtů čtení + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + - - How many OSDs per WAL device. - How many OSDs per WAL device. + + Write Bytes + Bajtů zápis + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + - - Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + + Read Ops + Operací/s čtení + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + - - Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + + Write Ops + Operací/s zápis + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + - - DB slots - DB slots + + A/O Since + A/O od + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + - - How many OSDs per DB device. - How many OSDs per DB device. + + Create Bootstrap Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - - out - out + + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + - - in - in + + Site Name + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + - - down - down + + Name... + Název… + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + - - Mark - Mark + + Pools + Fondy + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + - - OSD lost - OSD lost + + At least one pool is required. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + - - marked lost - marked lost + + Generate + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + - - Purge - Purge + + Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + - - OSD - OSD + + Generated token... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + - - purged - purged + + Close + Zavřít + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + - - destroy - destroy + + Import Bootstrap Token + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - - destroyed - destroyed + + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + - - Flags - Flags + + Direction + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + - - Recovery Priority - Recovery Priority + + The token is invalid. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + - - PG scrub - PG scrub + + Instance + Instance + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID - ID + Identif. + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + - - Host - Host + + Hostname + Název stroje + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + - - Status - Status + + Version + Verze + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + - - Device class - Device class + + Health + Zdraví + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + + + + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + + + + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + + + + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + - - PGs - PGs + + Issue + Problém + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + - - Size - Size + + Progress + Ukazatel postupu + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + + + + Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + + + + Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + - - Usage - Usage + + Description + Popis + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + - - Read bytes - Read bytes + + Daemons + Procesy služeb + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + - - Write bytes - Write bytes + + Create Bootstrap Token + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + - - Read ops - Read ops + + Import Bootstrap Token + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + - - Write ops - Write ops + + Edit pool mirror mode + Upravit režim zrcadlení fondu + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - - Edit OSD: - - - Edit OSD: - - + + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + - - Edit OSD - Edit OSD + + Mode + Režim + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + - - Updated OSD ' - ' - - Updated OSD ' - ' - + + Peer clusters must be removed prior to disabling mirror. + Před vypnutím zrcadlení je třeba odebrat klastry-protějšky. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + - - Mark OSD - - - Mark OSD - - + + Disabled + Vypnuto + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + - - Mark - - - Mark - - + + {VAR_SELECT, select, edit {Edit} other {Add}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - delete - delete + + pool mirror peer + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - deleted - deleted + + the pool mirror peer attributes for pool and click Submit. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + - - OSDs List - Seznam OSD + + Cluster Name + Název klastru + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + - - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + + The cluster name is not valid. + Název klastru není platný + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + - - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + + CephX ID + CephX identif. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + - - {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + + CephX ID... + CephX identif. … + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + - - Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + + The CephX ID is not valid. + CephX identif. není platný. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + - - Create Silence - Create Silence + + Monitor Addresses + Adresy monitorů + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + - - Severity - Severity + + Comma-delimited addresses... + Čárkou oddělované adresy… + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + - - State - State + + The monitory address is not valid. + Adresa monitoru není platná. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + - - Started - Started + + CephX Key + CephX klíč + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + - - URL - URL + + Base64-encoded key... + Klíč v base64 kódování… + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + + CephX key must be base64 encoded. + Je třeba, aby CephX klíč byl v kódování base64. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + + + + Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + + + + # Local + Počet místních + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + + + + Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + + + + # Remote + Počet vzdálených + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + - - Group - Group + + Edit Mode + Upravit režim + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + - - Duration - Duration + + Add Peer + Přidat protějšek + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + - - Query - Query + + Edit Peer + Upravit protějšek + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + + Delete Peer + Smazat protějšek + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + - - silence - silence + + Mode + Režim + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + - - Attribute name - Attribute name + + Leader + Vedoucí + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + - - Value - Value + + # Local + Počet místních + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + - - Regular expression - Regular expression + + # Remote + Počet vzdálených + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + - - Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + + mirror peer + zrcadlit protějšek + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + + + + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + + + + Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + + + + Port + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + + + + Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + + + + Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + + + + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + + + + Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + + + + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + + + + An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + + + + Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + + + + Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + + + + Initiator + Iniciátor + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + + + + Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + + + + Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + + + + Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + - - Creator - Tvůrce + + Loading... + Načítání… + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + + + + -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + + + + -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + + + + This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + + + + Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + + + + The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + + + + The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + + + + The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + + + + Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + - - Comment - Komentář + + Host + Stroj + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + - - Start time - Čas začátku + + Transport + Transport + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + - - If the start time lies in the past the creation time will be used - Pokud čas začátku leží v minulosti, bude namísto něj použit okamžik vytvoření + + Pool + Fond + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + + + + -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + - - Duration - Trvání + + -- Select a pool -- + -- Vybrat fond -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + + + + An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + + + + Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + - - End time - Čas konce + + '/' and '@' are not allowed. + „/“ a „@“ nejsou dovoleny. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + + + + Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + + + + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + + + + Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + + + + This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + + + + Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + - - Matchers - Matchers + + Namespace + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + + + + Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + + + + Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + + + + Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + + + + Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + - - Add matcher - Add matcher + + IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + + + + R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + + + + Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + + + + Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + + + + Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + - - Edit - Upravit + + Details + Podrobnosti + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + + + + Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + - - Delete - Smazat + + Namespaces + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + + + + Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + + + + Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + + + + Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + + + + Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + + + + Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + + + + NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + + + + This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + + + + Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + + + + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + - - Editing a silence will expire the old silence and recreate it as a new silence - Úprava ticha skončí platnost původního ticha a znovu ho vytvoří jako nové ticho + + The value must be at least 1. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + + + + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + + + + Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + + + + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + + + + NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + + + + # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + + + + # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + + + + Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + - - This field is required! - Tuto kolonku je třeba vyplnit! + + RBD Configuration + Nastavení RBD + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + - - A silence requires at least one matcher - A silence requires at least one matcher + + Remove the local configuration value. The parent configuration value will be inherited and used instead. + Odebrat hodnotu místnímu nastavení. Namísto ní bude použita hodnota nadřazeného nastavení. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + - - Created by - Created by + + The minimum value is 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + - - Updated - Updated + + Global + Globální + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - Ends - Ends + + Image + Obraz + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + - - Silence - Silence + + Key + Klíč + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + + Source + Zdroj + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + - - service - service + + Value + Hodnota + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - - There are no hosts. - There are no hosts. + + Only available for RBD images with fast-diff enabled + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + - - Filter hosts - Filter hosts + + Data Pool + Datový fond + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + - - Type - Typ + + Created + Vytvořeno + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + - - -- Select a service type -- - -- Select a service type -- + + Size + Velikost + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + - - Id - Identif. + + Objects + Objekty + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + - - Unmanaged - Unmanaged + + Object size + Velikost objektu + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + - - Placement - Placement + + Features + Funkce + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + - - Hosts - Stroje + + Provisioned + Poskytováno + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + - - Label - Label + + N/A + neaplikovatelné + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + - - Count - Count + + Total provisioned + Celkem poskytováno + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + - - Only that number of daemons will be created. - Only that number of daemons will be created. + + Striping unit + Proužkovací jednotka + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + - - The value must be at least 1. - The value must be at least 1. + + Striping count + Počet proužkování + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + - - Pool - Fond + + Parent + Nadřazené + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + - - Loading... - Načítání… + + Block name prefix + Předpona názvu bloku + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + - - -- No pools available -- - -- No pools available -- + + Order + Pořadí + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + - - -- Select a pool -- - -- Vybrat fond -- + + Format Version + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + - - Port - Port + + Snapshots + Zachycené stavy + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + - - The value cannot exceed 65535. - The value cannot exceed 65535. + + Configuration + Nastavení + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + - - Trusted IPs - Trusted IPs + + Performance + Výkonnost + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + + + + RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + + + + Information can not be displayed for RBD in status 'Removing'. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + - - Comma separated list of IP addresses. - Comma separated list of IP addresses. + + This setting overrides the global value + Toto nastavení přebije globální hodnotu + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + + This is the global value. No value for this option has been set for this image. + Toto je globální hodnota. Pro tento obraz nebyla u této volby nastavena žádná hodnota. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - User - Uživatele + + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + + + + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + + + + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + + + + Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + + + + 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + + + + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + + + + Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + - - Password - Heslo + + You need more than one pool with the rbd application label use to use a dedicated data pool. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + - - SSL - SSL + + -- No data pools available -- + -- Žádné fondy k dispozici -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + - - Certificate - Certificate + + -- No namespaces available -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + - - The SSL certificate in PEM format. - The SSL certificate in PEM format. + + -- Select a namespace -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + + + + 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + - - Invalid SSL certificate. - Invalid SSL certificate. + + You have to increase the size. + Je třeba zvětšit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + + + + Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + - - Private key - Private key + + Striping + Proužkování + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + + + + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + + + + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + - - The SSL private key in PEM format. - The SSL private key in PEM format. + + -- Select stripe unit -- + -- Vybrat jednotku proužku -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + - - Invalid SSL private key. - Invalid SSL private key. + + This field is required because stripe count is defined! + Tuto kolonku je třeba vyplnit, protože je definován počet proužků! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + - - Placement - Placement + + Stripe unit is greater than object size. + Jednotka proužku je vyšší než velikost objektu. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + + + + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + - - Running - Running + + This field is required because stripe unit is defined! + Tuto kolonku je třeba vyplnit, protože je definována jednotka proužku! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + - - Last Refreshed - Last Refreshed + + Stripe count must be greater than 0. + Je třeba, aby počet proužků byl větší než nula. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + - - The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + + RBD + RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + - - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + + Deep flatten + Hluboké zploštění + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + + + + Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + + + + Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + + Layering + Vrstvení + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + + + + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + + + + Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + - - Channels - Channels + + Exclusive lock + Výhradní zámek + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + + + + Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + - - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + + Object map (requires exclusive-lock) + Mapa objektů (vyžaduje výhradní zámek) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + + + + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + - - Basic - Basic + + Fast diff (interlocked with object-map) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + + + + Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + + + + primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + + + + secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + - - Includes basic information about the cluster: - Includes basic information about the cluster: + + Deleting this image will also delete all its snapshots. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + - - Capacity of the cluster - Capacity of the cluster + + The following snapshots are currently protected and will be removed: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + + + + RBD in status 'Removing' + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + + + + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + - - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + + Size + Velikost + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + - - Software version currently being used - Software version currently being used + + Usage + Využití + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + - - Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + + Objects + Objekty + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + - - Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + + Object size + Velikost objektu + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + - - Crash - Crash + + Parent + Nadřazené + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + - - Includes information about daemon crashes: - Includes information about daemon crashes: + + Mirroring + Zrcadlení + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + + + + Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + + + + image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + - - Type of daemon - Type of daemon + + Warning + Varování + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + + + + Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + - - Version of the daemon - Version of the daemon + + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + + + + Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + - - Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + + This RBD image has an invalid name and can't be managed by ceph. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + + + + Action not possible for an RBD in status 'Removing' + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + - - Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + + Create Namespace + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + - - Device - Device + + -- No rbd pools available -- + -- Žádné rbd fondy k dispozici -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + - - Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + + Namespace already exists. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - - Ident - Ident + + Created namespace '/' + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + - - Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + + Total images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - - Contact Information - Contact Information + + Deleted namespace '/' + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + - - Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + + Namespace contains images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + + + + RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + + + + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + + + + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + + + + Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + + + + The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + - - Contact - Contact + + RBD Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + + + + The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + - - My first Ceph cluster - My first Ceph cluster + + Snapshot must be protected in order to clone. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + - - Advanced Settings - Pokročilá nastavení + + You are about to rollback + Chystáte se vrátit zpět + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + - - Interval - Interval + + Used + Použito + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + - - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + + PROTECTED + CHRÁNĚNO + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + - - Proxy - Proxy + + UNPROTECTED + NECHRÁNĚNO + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + - - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + + Created + Vytvořeno + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + - - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + + RBD snapshot rollback + Vrácení zachyceného stavu RBD zpět + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - + + Rollback + Vrácení zpět + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + - - Deactivate - Deactivate + + RBD snapshot + Zachycený stav RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + - - The entered value is too low! It must be greater or equal to 8. - The entered value is too low! It must be greater or equal to 8. + + Trash + Koš + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + - - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + + Overall Performance + Celková výkonnost + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + - - A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + + Purge Trash + Vysypat koš + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + - - Report ID - - - - Report ID - - - + + Expired at + Platnost skončila v + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + - - The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + + Protected until + Chráněno do + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + + This image is protected until . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + - - NFS export - NFS export + + Status + Stav + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + - - NFS Protocol - NFS protokol + + Deleted At + Smazáno v + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + - - NFSv3 - NFSv3 + + Move an image to trash + Přesunout obraz do koše + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + - - NFSv4 - NFSv4 + + This image contains snapshot(s), which will prevent it from being removed after moved to trash. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + + + + To move to trash, click Move. Optionally, you can pick an expiration date. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + - - Access Type - Typ přístupu + + Protection expires at + Platnost ochrany skončí v + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + - - Squash - Squash + + NOT PROTECTED + NECHRÁNĚNO + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - - Transport Protocol - Transportní protokol + + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Chybný formát data. Použijte „RRRR-MM-DD HH:mm:ss“. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + - - UDP - UDP + + Protection has already expired. Please pick a future date or leave it empty. + Platnost ochrany už skončila. Zvolte budoucí datum nebo nevyplňujte. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + + + + To purge, select  All  or one pool and click  Purge.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + - - TCP - TCP + + Pool: + Fond: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + - - Cluster - Klastr + + Pool name... + Název fondu… + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + - - -- No cluster available -- - -- Žádný klastr k dispozici -- + + All + Vše + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + - - -- Select the cluster -- - -- Vyberte klastr -- + + Restore Image + Obnovit obraz + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + + + + To restore  @,  type the image's new name and click  Restore. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + - - Daemons - Procesy služeb + + New Name + Nový název + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + + + + Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + - - -- No data pools available -- - -- Žádné fondy k dispozici -- + + This field is required! + Tuto kolonku je třeba vyplnit! + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + + + + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + + + + client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + + + + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + + + + Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + + + + Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + + + + Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + + + + Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + + + + Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + + + + Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + + + + Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + + + + Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + + + + Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + + + + access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + - - -- No CephFS filesystem available -- - -- Žádný souborový systém CephFS k dispozici -- + + id + identif. + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + - - -- Select the CephFS filesystem -- - -- Vyberte CephFS souborový systém -- + + type + typ + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + - - Security Label - Štítek zabezpečení + + state + stav + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + - - Enable security label - Zapnout štítek zabezpečení + + version + verze + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + - - CephFS Path - Popis umístění CephFS + + root + kořen + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - - Path need to start with a '/' and can be followed by a word - Je třeba, aby popis umístění začínal na „/“, za kterým následuje slovo + + Evicted client '' + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + - - Pseudo - Pseudo + + Ranks + Hodnocení + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + - - By using different Pseudo options, the same Path may be exported multiple times. - By using different Pseudo options, the same Path may be exported multiple times. + + Standbys + Pohotovosti + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + - - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Je třeba, aby Pseudo začínalo na „/“ a a nemůže obsahovat nic z následujícího: >, <, |, &, ( nebo ). + + MDS performance counters + čítače výkonnosti MDS + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + - - -- No access type available -- - -- Žádný typ přístupu k dispozici -- + + Standby daemons + Procesy služeb v pohotovosti + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + + Rank + Hodnocení + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + - - -- No squash available -- - -- Žádné squash k dispozici -- + + Daemon + Proces služby + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + - - Path - Path + + Activity + Aktivita + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + - - Pseudo - Pseudo + + Dentries + Struktury složek + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + - - Cluster - Cluster + + Inodes + I-uzlů + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + - - Daemons - Daemons + + Dirs + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + - - Storage Backend - Storage Backend + + Caps + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + - - Access Type - Access Type + + Type + Typ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + - - CephFS - CephFS + + Quotas + Kvóty + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + - - Object Gateway - Objektová brána + + Origin + Původ + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + - - Please set a new password. - Please set a new password. + + Path + Popis umístění + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + + Cannot create snapshots for files/folders in the subvolume + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + - - You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + + Max size + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - - The old and new passwords must be different. - Je třeba, aby původní a nové heslo nebyly stejné + + Max files + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - - Password confirmation doesn't match the new password. - Kontrolní zadání nového hesla se neshoduje. + + The inherited is the maximum value to be used. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + - - Username - Uživatelské jméno + + Save + Uložit + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - Log in - Log in + + CephFS quota for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + - - Username is required - Je třeba vyplnit uživatelské jméno + + size + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - Password is required - Je třeba vyplnit heslo - - - password - password + + files + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - Updated user password" - Updated user password" + + quota from '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + - - Old password - Původní heslo + + Value has to be at least 0 or more + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - - New password - Nové heslo + + Value has to be at most or less + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + - - Confirm new password - Zopakování zadání nového hesla + + Updated + Aktualizováno + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - - Go To Dashboard - Go To Dashboard + + in order to inherit + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - - - Page not Found - - - - Page not Found - - + + which isn't used because of the inheritance of + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + - - Help - Help + + in order to have no quota on the directory + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - Security - Security + + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + - - Trademarks - Trademarks + + Create Snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + - - [object Object] - [object Object] + + Please enter the name of the snapshot. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - - Create - Create + + Created snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + + + + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + - - Delete - Delete + + CephFs Snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - - Add - Add + + Deleted snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - Set - Set + + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title + + + Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + + + + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + + + + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + - - Submit - Submit + + Placement + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + - - Remove - Remove + + Hosts + Stroje + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + - - Unset - Unset + + Label + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + + + + File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + - - Update - Update + + There are no hosts. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + - - Cancel - Cancel + + Filter hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + - - Preview - Preview + + Enabled + Zapnuto + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + + + + File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + + + + Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + + + + Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + + + + Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + + + + Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + + + + Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + + + + Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + + + + A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + + + + Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + + + + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + + + + Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + + + + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + + + + This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + + + + Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + + + + Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + + + + This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + + + + Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + + + + Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + + + + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + + + + Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + + + + Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + + + + Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + + + + Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + + + + Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + + + + Start time + Čas začátku + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + + + + Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + - - Move - Move + + Reconnecting, please wait ... + Opětovné připojování, čekejte… + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + + + + snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + + + + The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + + + + Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + + + + Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + + + + Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + - - Next - Next + + Default + Výchozí + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + + + + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + - - Back - Back + + e.g., 10GiB + např. 10 GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + + + + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + + + + UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + + + + GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + + + + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + + + + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + - - Clone - Clone + + All + Vše + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + - - Copy - Copy + + Read + Čtení + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + + + + Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + - - Deep Scrub - Deep Scrub + + Execute + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + + + + Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + + + + Data Pool + Datový fond + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + + + + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + + + + The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + + + + Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + + + + Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + + + + snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + + + + Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + + + + No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + + + + Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + + + + Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + + + + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + + + + A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + + + + Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + + + + Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + + + + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + + + + The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + + + + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + + + + subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + - - Destroy - Destroy + + Directories + Složky + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + + + + Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + + + + Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + + + + Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + - - Evict - Evict + + Clients + Klienti + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + - - Flatten - Flatten + + Performance Details + Podrobnosti o výkonnosti + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + + + + CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + - - Mark Down - Mark Down + + Description + Popis + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + - - Mark In - Mark In + + Long description + Podrobnější popis + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + - - Mark Lost - Mark Lost + + Current values + Stávající hodnoty + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + - - Mark Out - Mark Out + + Daemon default + Výchozí pro proces služby + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + - - Protect - Protect + + Type + Typ + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + - - Rename - Rename + + Min + Min + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + - - Restore - Restore + + Max + Max + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + - - Reweight - Reweight + + Flags + Příznaky + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + - - Rollback - Rollback + + Services + Služby + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + - - Scrub - Scrub + + Source + Zdroj + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + - - Show - Show + + Level + Úroveň + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + - - Move to Trash - Move to Trash + + Can be updated at runtime (editable) + Je možné aktualizovat za provozu (upravitelné) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + - - Unprotect - Unprotect + + Tags + Štítky + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + - - Change - Change + + Enum values + Vyčíslit hodnoty + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + - - Recreate - Recreate + + See also + Viz také + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + - - Expire - Expire + + The value can be updated at runtime. + Hodnotu je možné aktualizovat za chodu. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + - - Deleted - Deleted + + Daemons/clients do not pull this value from the + monitor config database. We disallow setting this option via 'ceph config + set ...'. This option should be configured via ceph.conf or via the + command line. + Procesy služeb / klienti nezískávají tuto hodnotu + z databáze nastavení monitoru. Není umožněno nastavit tuto volbu + prostřednictvím „ceph config set …'. Tato volba by měla být nastavena + z příkazového řádku. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + - - Added - Added + + Option takes effect only during daemon startup. + Volba se uplatní pouze při spouštění procesu služby. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + - - Removed - Removed + + Option only affects cluster creation. + Volba ovlivní pouze vytváření klastru. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + - - Edited - Edited + + Option only affects daemon creation. + Volba ovlivní pouze vytvoření procesu služby. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + - - Canceled - Canceled + + Values + Hodnoty + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + - - Previewed - Previewed + + -- Default -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + - - Moved - Moved + + true + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + - - Cloned - Cloned + + false + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - - Copied - Copied + + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - - Deep Scrubbed - Deep Scrubbed + + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - - Destroyed - Destroyed + + Updated config option + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + - - Flattened - Flattened + + Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + - - Marked Down - Marked Down + + Level + Úroveň + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + - - Marked In - Marked In + + Service + Služba + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + - - Marked Lost - Marked Lost + + Current value + Stávající hodnota + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + - - Marked Out - Marked Out + + Editable + Upravitelné + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + + + + Cluster Resources + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + + + + Storage Capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + + + + Number of devices + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + + + + Raw capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + + + + CPUs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + + + + Memory + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + + + + Host Details + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + + + + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + + + + Welcome to + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + + + + Please expand your cluster first + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + + + + Expand Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + + + + Skip + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + + + + Add Hosts + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + + + + Create OSDs + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + + + + Create Services + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + + + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + + + + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + - - Protected - Protected + + Are you sure you want to continue? + Opravdu chcete pokračovat? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + - - Purged - Purged + + Continue + Pokračovat + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + + + + Cluster expansion skipped by user + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + + + + Cluster expansion was successful + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + + + + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + + + + Expand Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + - - Renamed - Renamed + + CRUSH map viewer + prohlížeč CRUSH mapy + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + - - Restored - Restored + + Devices + Zařízení + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + + + + Physical Disks + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + + + + Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + - - Reweighted - Reweighted + + Device health + Stav zařízení + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + - - Rolled back - Rolled back + + No hostname found. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + - - Scrubbed - Scrubbed + + Hostname + Název stroje + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + + + + To add multiple hosts at once, you can enter: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + + + + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + + + + a range expression (e.g.: example-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + + + + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + - - Showed - Showed + + The chosen hostname is already in use. + Zvolený název stroje už je používán. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + + + + Network address + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + + + + The value is not a valid IP address. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + + + + Labels + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + + + + Maintenance Mode + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + - - Moved to Trash - Moved to Trash + + There are no labels. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + - - Unprotected - Unprotected + + Filter or add labels + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + - - Recreated - Recreated + + Add label + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + - - Expired - Expired + + host + stroj + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + - - Page Not Found - Page Not Found + + Hosts List + Seznam strojů + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + + + + Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + + + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + + + + Data will be available only if Orchestrator is available. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + + + + - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + + + + SSD, NVMEs + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + + + + Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + - - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + + The feature is disabled because the selected host is not managed by Orchestrator. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + + + + Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + - - User Denied - User Denied + + Labels + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + - - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. + + Model + Model + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + + + + CPUs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + + + + Cores + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + + + + Total Memory + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + + + + Raw Capacity + Holá kapacita + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + + + + HDDs + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + + + + Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + + + + NICs + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - - documentation - documentation + + Edit Host: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + - - Failed to load data. - Failed to load data. + + Edit Host + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - - Clear filters - Clear filters + + Updated Host "" + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + + + + "" moved to maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + + + + "" cannot be put into maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + + + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + + + + "" has exited maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + + + + "" stopped draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + + + + "" started draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + - - total - celkem - X total + + Identify + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + - - selected - vybráno - X selected + + Device path + Popis umístění zařízení + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + - - found - nalezeno - X found + + Available + K dispozici + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + - - Expand/Collapse Row - Expand/Collapse Row + + Vendor + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + - - in %s - in %s + + OSDs + OSD + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - - %s ago - %s ago + + Identify device + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + - - a few seconds - a few seconds + + Please enter the duration how long to blink the LED. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + - - %d seconds - %d seconds + + 1 minute + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + - - a minute - a minute + + 2 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + - - %d minutes - %d minutes + + 5 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + - - an hour - an hour + + 10 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + - - %d hours - %d hours + + 15 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - - a day - a day + + Identifying '' started on host '' + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + - - %d days - %d days + + Cluster Logs + Záznamy událostí v klastra + + src/app/ceph/cluster/logs/logs.component.html + 12 + - - a week - a week + + Audit Logs + Auditní záznamy událostí + + src/app/ceph/cluster/logs/logs.component.html + 46 + + + + Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + + + + Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + - - %d weeks - %d weeks + + Priority: + Priorita: + + src/app/ceph/cluster/logs/logs.component.html + 106 + - - a month - a month + + Keyword: + Klíčové slovo: + + src/app/ceph/cluster/logs/logs.component.html + 119 + - - %d months - %d months + + Date: + Datum: + + src/app/ceph/cluster/logs/logs.component.html + 143 + - - a year - a year + + Time range: + Časový rozsah: + + src/app/ceph/cluster/logs/logs.component.html + 165 + - - %d years - %d years + + No log entries found. Please try to select different filter options. + + src/app/ceph/cluster/logs/logs.component.html + 181 + - - n/a - n/a + + Reset filter. + + src/app/ceph/cluster/logs/logs.component.html + 185 + + + + Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + + + + Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + - - Yes - Yes + + Edit Manager module + Upravit modul správy + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + - - No - No + + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + Zadaná hodnota není platné UUID, např.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + - - Loading form data... - Loading form data... + + The entered value needs to be a valid IP address. + Je třeba, aby zadaná hodnota byla platnou IP adresou. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - - Form data could not be loaded. - Form data could not be loaded. + + The entered value is too high! It must be lower or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - - Failed to - - - - Failed to - - - + + The entered value is too low! It must be greater or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + - - Executing - Executing + + The entered value needs to be a number. + Je třeba, aby zadaná hodnota byla číslo. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + - - execute - execute + + The entered value needs to be a number or decimal. + Je třeba, aby zadaná hodnota byla číslo nebo desítkové. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - - Executed - Executed + + Updated options for module ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + - - unknown task - unknown task + + Always-On + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + - - Creating - Creating + + Edit + Upravit + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + - - create - create + + Enable + Zapnout + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + - - Updating - Updating + + Disable + Vypnout + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + - - update - update + + This Manager module is always on. + Modul Zpráva je vždy zapnutý. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + - - Deleting - Deleting + + Status + Stav + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + - - Adding - Adding + + Cluster ID + Identif. kastru + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + - - add - add + + monmap modified + mapa monitorů změněna + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + - - Removing - Removing + + monmap epoch + monmap epocha + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + - - remove - remove + + quorum con + kvórum spojení + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + - - Importing - Importing + + quorum mon + kvórum monitor + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + - - import - import + + required con + vyžadováno spojení + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + - - Imported - Imported + + required mon + vyžadováno monitorů + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + - - RBD ' - ' - - RBD ' - ' - + + In Quorum + V kvóru + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + - - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + + Not In Quorum + Není v kvóru + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + - - mirroring site name - mirroring site name + + Public Address + Veřejná adresa + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + - - bootstrap token - bootstrap token + + Open Sessions + Otevřené relace + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + - - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + + OSD creation preview + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + - - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + + DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + - - all dashboards - all dashboards + + Attributes (OSD map) + Atributy (OSD mapa) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + - - Identifying - Identifying + + Metadata + Metadata + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + - - identify - identify + + Metadata not available + Metadata nejsou k dispozici + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + - - Identified - Identified + + Performance counter + Výkonnostní čítač + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + + + + OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + + devices + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + - - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + + The primary storage devices. These devices contain all OSD data. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + - - Name is already used by - . - - Name is already used by - . - + + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + - - - is busy. - - - is busy. - + + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + - - - contains snapshots. - - - contains snapshots. - + + Add + Přidat + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + - - Cloning - Cloning + + Clear + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - - clone - clone + + Raw capacity: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + - - Snapshot of - must be protected. - - Snapshot of - must be protected. - + + No available devices + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + - - Copying - Copying + + Please add primary devices first + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + - - copy - copy + + Add devices by using filters + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - Flattening - Flattening + + devices + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + - - flatten - flatten + + At least one of these filters must be applied in order to proceed: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + + Number of devices: . Raw capacity: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + - - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + + Individual OSD Flags + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + - - Rolling back - Rolling back + + Cluster-wide + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + - - rollback - rollback + + Restore previous selection + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + - - Moving - Moving + + No Up + Počet aktivních + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + - - move - move + + OSDs are not allowed to start + OSD není dovoleno spuštění + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + - - image ' - ' to trash - - image ' - ' to trash - + + No Down + Počet neaktivních + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + - - Could not find image. - Could not find image. + + OSD failure reports are being ignored, such that the monitors will not mark OSDs down + Hlášení o selhání OSD jsou ignorovány, jako například že monitory OSD neoznačí jako nedostupné + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + - - Restoring - Restoring + + No In + Počet do + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + - - restore - restore + + OSDs that were previously marked out will not be marked back in when they start + OSD které byly dříve odznačeny nebudou označeny nazpět když spustí + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + - - image ' - ' into ' - ' - - image ' - ' into ' - ' - + + No Out + Počet ven + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + - - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + + OSDs will not automatically be marked out after the configured interval + OSD nebudou automaticky odznačeny po nastaveném intervalu + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + - - image ' - ' - - image ' - ' - + + The flag has been enabled for the entire cluster. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + - - Purging - Purging + + Updated OSD Flags + Aktualizovány OSD příznaky + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + - - purge - purge + + Cluster-wide OSD Flags + Příznaky OSD pro celý klastr + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + - - all pools - all pools + + Pause + Pozastavit + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + - - images from - - - images from - - + + Pauses reads and writes + Pozastavit čtení a zápisy + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + - - Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + + No Scrub + Žádná kontrola + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + - - host ' - ' - - host ' - ' - + + Scrubbing is disabled + Kontrola je vypnutá + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + - - OSD ' - ' - - OSD ' - ' - + + No Deep Scrub + Žádná hloubková kontrola + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + - - pool ' - ' - - pool ' - ' - + + Deep Scrubbing is disabled + Hloubková kontrola je vypnutá + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + - - erasure code profile ' - ' - - erasure code profile ' - ' - + + No Backfill + Žádné zasypávání + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + - - crush rule ' - ' - - crush rule ' - ' - + + Backfilling of PGs is suspended + Zasypávání skupin umístění je pozastaveno + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + - - target ' - ' - - target ' - ' - + + No Rebalance + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + - - NFS ' - : - ' - - NFS ' - : - ' - + + OSD will choose not to backfill unless PG is also degraded + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + - - Telemetry activation reminder muted - Telemetry activation reminder muted + + No Recover + Žádné obnovení + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + - - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + + Recovery of PGs is suspended + Obnovování skupin umístění je pozastaveno + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + - - Refresh - Načíst znovu + + Bitwise Sort + Bitové třídění + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + - - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + + Use bitwise sort + Třídit podle bitů + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + - - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + + Purged Snapdirs + Vyčištěné složky zachycených stavů + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + - - The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + + OSDs have converted snapsets + OSD mají převedené sady zachycených stavů + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + + Recovery Deletes + Smazáno při zotavování + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + - - Tasks and Notifications - Úlohy a oznámení + + Deletes performed during recovery instead of peering + Mazání provedená při obnovování namísto peeringu + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + - - Clear notifications - Vyčistit oznámení + + PG Log Hard Limit + Nepřekročitelný limit záznamu událostí PG + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + - - Remove notification - Odebrat oznámení + + Puts a hard limit on pg log length + Zapne nepřekročitelný limit na délku záznamu událostí v pg + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + + + + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + + + + Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + + + + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + + + + Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + - - Duration: - Trvání: + + Shared devices + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + - - There are no notifications. - Nejsou zde žádná oznámení. + + WAL slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + - - Select a Language - Vyberte jazyk - - - Last 5 minutes - Last 5 minutes + + How many OSDs per WAL device. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + - - Last 15 minutes - Last 15 minutes + + Specify 0 to let Orchestrator backend decide it. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + - - Last 30 minutes - Last 30 minutes + + Value should be greater than or equal to 0 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + - - Last 1 hour (Default) - Last 1 hour (Default) + + DB slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + - - Last 3 hours - Last 3 hours + + How many OSDs per DB device. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + - - Last 6 hours - Last 6 hours + + Encryption + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + - - Last 12 hours - Last 12 hours + + OSDs List + Seznam OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + + + + OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - Last 24 hours - Last 24 hours + + OSD(s) will be marked if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + + + + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + - - Yesterday - Yesterday + + {VAR_SELECT, select, true {OSD is} other {OSDs are}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + + + + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + + + + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + + + + {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + + + + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + + + + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + + + + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + + + + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + + + + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - Today so far - Today so far + + OSD will be if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + - - Day before yesterday - Day before yesterday + + Preserve OSD ID(s) for replacement. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + - - Last 2 days - Last 2 days + + out + ven + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + - - This day last week - This day last week + + in + dovnitř + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + - - Previous week - Previous week + + down + nedostupné + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + - - This week so far - This week so far + + Mark + Značka + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + - - Last 7 days - Last 7 days + + OSD lost + OSD ztraceno + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + - - Previous month - Previous month + + marked lost + označeno jako ztracené + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + - - This month so far - This month so far + + Purge + Vyčistit + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + - - Last 30 days - Last 30 days + + OSD + OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + - - Last 90 days - Last 90 days + + purged + vyčištěno + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + - - Last 6 months - Last 6 months + + destroy + zlikvidovat + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + - - Last 1 year - Last 1 year + + destroyed + zlikvidováno + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + - - Previous year - Previous year + + Flags + Příznaky + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + - - This year so far - This year so far + + Recovery Priority + Priorita zotavování + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + - - Last 2 years - Last 2 years + + PG scrub + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + - - Last 5 years - Last 5 years + + Device class + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + - - Loading panel data... - Načítání údajů panelu… + + PGs + skupiny umístění + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + - - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + + Read bytes + Přečteno bajtů + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + + Write bytes + Zapsáno bajtů + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + - - Grafana Time Picker - Volič čas Grafana + + Read ops + Operací/s čtení + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + - - Reset Settings - Resetovat nastavení + + Write ops + Operací/s zápis + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - - This field is required. - This field is required. + + Edit OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + - - An error occurred. - An error occurred. + + Edit OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - - Download - Download + + Updated OSD '' + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - - Yes, I am sure. - Ano, opravdu to chci. + + Mark OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + + Mark + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + - - Are you sure that you want to - the selected items? - - Opravdu chcete označené položky - ? - + + delete + smazat + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + - - Are you sure that you want to - the selected - ? - - Opravdu chcete - označené - ? - + + deleted + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + - - Copy to Clipboard - Copy to Clipboard + + Advanced... + Pokročilé… + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + - - No items selected. - No items selected. + + Advanced configuration options + Pokročilé volby nastavení + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + - - Deselect item to select again - Deselect item to select again + + PG scrub options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + - - Selection limit reached - Selection limit reached + + Updated PG scrub options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + - - Filter tags - Filter tags + + OSD Recovery Priority + Priorita obnovení OSD + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + - - Add badge - Add badge + + Priority + Priorita + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + - - There are no items available. - There are no items available. + + Customize priority values + Přizpůsobit hodnoty priority + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - - Warning - Warning + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - - Error - Error + + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - - Information - Information + + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + - - Success - Success + + Max Backfills + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + - - Remove the custom configuration value. The default configuration will be inherited and used instead. - Odebrat uživatelsky určenou hodnotu nastavení. Namísto toho bude převzato a použito výchozí nastavení. + + Recovery Max Active + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + - - The entered value is too high! It must not be greater than - . - - Zadaná hodnota je příliš vysoká! Nemůže být vyšší než - . - + + Recovery Max Single Start + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + - - The entered value is too low! It must not be lower than - . - - Zadaná hodnota je příliš nízká! Nemůže být nižší než 1. + + Recovery Sleep + Uspání zotavení + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + - - Toggle navigation - Zobrazit/skrýt navigaci + + Custom + Uživatelsky určené + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - - Monitors - Monitory + + Updated OSD recovery speed priority '' + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - - OSDs - OSD + + Reweight OSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + - - CRUSH map - CRUSH mapa + + The value needs to be between 0 and 1. + Je třeba, aby hodnota byla mezi 0 a 1. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - - Manager Modules - Manager Modules + + OSDs Scrub + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - - Logs - Záznamy událostí + + {VAR_SELECT, select, true {Deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - - Pools - Fondy + + You are about to apply a scrub to the OSD(s): . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + - - Images - Obrazy + + {VAR_SELECT, select, true {deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - Mirroring - Zrcadlení + + was initialized in the following OSD(s): + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - - iSCSI - iSCSI + + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + - - NFS - NFS + + Create Silence + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + + + + Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + - - Users - Uživatelé + + Severity + Závažnost + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + - - Buckets - Nádoby + + Started + Zahájeno + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + - - Logged in user - Přihlášený uživatel + + URL + URL adresa + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + + + + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + - - Change password - Změnit heslo + + Alerts + Výstrahy + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + - - Help - Nápověda + + Silences + Ticha + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - - documentation - documentation + + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + - - API - Aplikační program. rozhraní + + Group + Skupina + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + - - About - O aplikaci + + Duration + Trvání + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + - - Dashboard Settings - Nastavení přehledu + + Query + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + - - User management - Správa uživatelů + + Edit + Upravit + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + - - Telemetry configuration - Telemetry configuration + + Delete + Smazat + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + - - Performance counters not available - Výkonnostní čítače nejsou k dispozici + + Editing a silence will expire the old silence and recreate it as a new silence + Úprava ticha skončí platnost původního ticha a znovu ho vytvoří jako nové ticho + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + - - (inherited from global config) - (inherited from global config) + + Creator + Tvůrce + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + - - -- Select the access type -- - -- Select the access type -- + + Comment + Komentář + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + - - inherited from global config - inherited from global config + + Start time + Čas začátku + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + - - -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + + If the start time lies in the past the creation time will be used + Pokud čas začátku leží v minulosti, bude namísto něj použit okamžik vytvoření + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + - - Clients - Klienti + + Duration + Trvání + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + - - Add clients - Přidat klienty + + End time + Čas konce + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + - - Any client can access - Přistupovat může libovolný klient + + Matchers + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + - - Addresses - Adresy + + A silence requires at least one matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + - - Must contain one or more comma-separated values - Je třeba, aby obsahovalo jednu nebo více čárkou oddělovaných hodnot + + Add matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + - - For example: - Například: + + silence + ticho + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + - - Addresses - Addresses + + Attribute name + Název atributu + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + - - Squash - Squash + + Regular expression + Regulární výraz + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + - - NFS Protocol - NFS Protocol + + Please add your Prometheus host to the dashboard configuration and refresh the page + Přidejte hostitele s Prometheus do nastavení přehledu a znovu načtete stránku + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - - Transport - Transport + + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + + + + Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + - - CephFS - CephFS + + Created by + Vytvořil(a) + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + - - CephFS User - CephFS User + + Ends + Končí + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + - - CephFS Filesystem - CephFS Filesystem + + Silence + Ticho + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + - - Security Label - Security Label + + {VAR_SELECT, select, true {Edit} other {Add}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Object Gateway - Object Gateway + + Matcher + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Object Gateway User - Object Gateway User + + -- Select an attribute to match against -- + -- Vyberte atribut vůči kterému hledat shodu -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + - - Details - Podrobnosti + + Value + Hodnota + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + - - Clients ( - ) - - Klienti ( - ) - + + Use regular expression + Použít regulární výraz + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + - - total - total + + no spec + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + - - up - up + + unmanaged + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - - - (quorum - ) - - - (quorum - ) - + + count: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - - active daemon - active daemon + + label: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + + + + Service Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + + + + Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + - - standby daemons - standby daemons + + Last Refreshed + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + + + + CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + + + + Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + + + + Daemon Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + + + + Service Name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + + + + Service Type + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + + + + Service Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + + + + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + - - active - active + + -- Select a service type -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + + + + Backend Service + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + + + + -- No service available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + + + + -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + + + + Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + + + + An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + + + + Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + + + + The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + + + + Service Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + + + + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + + + + This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + + + + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + + + + Realm + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + + + + -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + + + + Zone Group + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + + + + Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + - - standby - standby + + Unmanaged + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + + + + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + - - no filesystems - no filesystems + + Count + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + + + + Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + - - standbyReplay - standbyReplay + + Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + - - here - here + + The value cannot exceed 65535. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + - - Reads - Reads + + -- No pools available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + - - /s - /s + + Trusted IPs + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + - - Writes - Writes + + Comma separated list of IP addresses. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - - IOPS - IOPS + + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + + + + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + + + + foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + + + + Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + + + + Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + + + + rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + + + + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + + + + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + + + + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + + + + Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + + + + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + + + + 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + + + + Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + + + + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + + + + rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + + + + User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + + + + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + + + + rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + + + + Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + + + + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + + + + client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + + + + Virtual IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + + + + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + + + + Frontend Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + + + + The port used to access the ingress service. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + + + + Monitor Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + + + + The port used by haproxy for load balancer status. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + + + + CIDR Networks + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + + + + A list of networks to identify which network interface to use for the virtual IP address. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + - - Used - Used + + Version + Verze + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + + + + -- Select SNMP version -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + + + + Destination + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + + + + Must be of the format hostname:port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + + + + The value does not match the pattern: hostname:port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + + + + Engine Id + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + + + + Unique identifier for the device (in hex). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + + + + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + + + + Auth Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + + + + -- Select auth protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + + + + Privacy Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + + + + -- Select privacy protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + + + + Credentials + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + + + + SNMP Community + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + - - Avail. - Avail. + + Username + Uživatelské jméno + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + + + + Encryption + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + - - Clean - Clean + + SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + - - Working - Working + + Certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + - - Unknown - Unknown + + The SSL certificate in PEM format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + - - Healthy - Healthy + + Invalid SSL certificate. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + - - Misplaced - Misplaced + + Private key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + - - Degraded - Degraded + + The SSL private key in PEM format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + - - Unfound - Unfound + + Invalid SSL private key. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + + + + Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + + + + The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + + + + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + + + + Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + + + + Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + + + + Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + + + + Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + + + + Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + + + + Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + - - objects - objects + + service + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + + + + Placement + + src/app/ceph/cluster/services/services.component.ts + 154 + + + + Running + + src/app/ceph/cluster/services/services.component.ts + 160 + + + + Step of 2: Telemetry report configuration + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + + + + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + + + + Deactivate + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + + + + Channels + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + + + + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + + + + Basic + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + + + + Includes basic information about the cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + + + + Capacity of the cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + + + + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + + + + Software version currently being used + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + + + + Number and types of RADOS pools and CephFS file systems + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + + + + Names of configuration options that have been changed from their default (but not their values) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + + + + Crash + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + + + + Includes information about daemon crashes: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + + + + Type of daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + + + + Version of the daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + + + + Operating system (OS distribution, kernel version) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + + + + Stack trace identifying where in the Ceph code the crash occurred + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + + + + Device + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + + + + Includes information about device metrics like anonymized SMART metrics. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + + + + Ident + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + + + + Includes user-provided identifying information about the cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + + + + Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + + + + Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + + + + Contact Information + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + + + + Submitting any contact information is completely optional and disabled by default. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + + + + Contact + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + + + + My first Ceph cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + + + + Organization + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + + + + Organization name + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + + + + Interval + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + + + + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + + + + The entered value is too low! It must be greater or equal to 8. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + + + + Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + + + + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + + + + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + + + + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + + + + Step of 2: Telemetry report preview + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + + + + Report ID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + + + + A randomized UUID to identify a particular cluster over the course of several telemetry reports. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + + + + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + + + + The actual telemetry data that will be submitted. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + + + + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + + + + The Telemetry module has been configured and activated successfully. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + + + + An Error occurred while updating the Telemetry module configuration. Please Try again + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + + + + Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + + + + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + + + + New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + + + + -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + + + + -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + + + + Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + + + + Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + + + + Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + + + + Back + Zpět + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + + + + Pause + Pozastavit + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + + + + Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + + + + Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + + + + Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + + + + Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + + + + The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + + + + Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + + + + Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + + + + Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + + + + The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + + + + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + + + + View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + + + + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + + + + Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status Stav klastru + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + + + + MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + + + + Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + + + + Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + + + + Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + + + + Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + + + + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + + + + Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + + + + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + + + + Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + + + + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + + + + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + + + + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + + + + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + + + + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + + + + Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + + + + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + + + + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + + + + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + + + + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + + + + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + + + + Last 5 minutes + Uplynulých 5 minut + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + + + + Last 15 minutes + Uplynulých 15 minut + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + + + + Last 30 minutes + Uplynulých 30 minut + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + + + + Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + + + + Last 3 hours + Uplynulé 3 hodiny + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + + + + Last 6 hours + Uplynulých 6 hodin + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + + + + Last 12 hours + Uplynulých 12 hodin + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + + + + Last 24 hours + Uplynulých 24 hodin + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + + + + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + + + + View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + + + + Cluster + Klastr + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + + + + Danger + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + + + + Warning + Varování + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + + + + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + + + + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + + + + Monitors + Monitory + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + + + + OSDs + OSD + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways Objektové brány + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers Metadata servery + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways iSCSI brány + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity Kapacita + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity Holá kapacita - - - Objects - Objekty + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status Stav skupiny umístění + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD Skupin umístění na OSD - - - Performance - Výkonnost + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write Čtení/zápis klienta + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput Propustnost klienta + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput Propustnost zotavení + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + + src/app/ceph/dashboard/health/health.component.html + 218 + - - - - See - Logs - for more details. - - - - See - Logs - for more details. - + + Reads + Čtení + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + - - no spec - no spec + + /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + - - unmanaged - unmanaged + + Writes + Zápisy + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + - - count: - - - count: - - + + Avail. + K dispozici + + src/app/ceph/dashboard/health/health.component.ts + 185 + - - label: - - - label: - - + + Clean + Čisté + + src/app/ceph/dashboard/health/health.component.ts + 220 + - - {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + + Working + Pracující + + src/app/ceph/dashboard/health/health.component.ts + 221 + - - - Matcher - - - Matcher - + + Unknown + Neznámé + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + - - -- Select an attribute to match against -- - -- Vyberte atribut vůči kterému hledat shodu -- + + Healthy + Zdravé + + src/app/ceph/dashboard/health/health.component.ts + 251 + - - Value - Hodnota + + Misplaced + Chybně umístěno + + src/app/ceph/dashboard/health/health.component.ts + 252 + - - Use regular expression - Použít regulární výraz + + Degraded + Degradováno + + src/app/ceph/dashboard/health/health.component.ts + 253 + - - Alerts - Alerts + + Unfound + Odnalezeno + + src/app/ceph/dashboard/health/health.component.ts + 254 + - - Silences - Ticha + + objects + + src/app/ceph/dashboard/health/health.component.ts + 266 + + + + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + - - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + + here + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + - - {VAR_SELECT, select, true {Deep } other {}} - {VAR_SELECT, select, true {Deep } other {}} + + up + aktivní + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + - - OSDs - Scrub - - OSDs - Scrub - + + no filesystems + žádné souborové systémy + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + - - {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + + active + aktivní + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + - - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + + standby + v pohotovosti + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + - - Reweight OSD: - - - Reweight OSD: - - + + standby daemons + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + - - The value needs to be between 0 and 1. - Je třeba, aby hodnota byla mezi 0 a 1. + + active daemon + aktivní proces služby + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + - - Max Backfills - Max Backfills + + standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + - - Recovery Max Active - Recovery Max Active + + n/a + neaplikovatelné + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - Recovery Max Single Start - Recovery Max Single Start + + (quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + - - Recovery Sleep - Recovery Sleep + + total + celkem + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + + + + near full + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + + + + full + plné + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - - Custom - Custom + + Clients () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + - - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + + Addresses + Adresy + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + - - OSD Recovery Priority - Priorita obnovení OSD + + Access Type + Typ přístupu + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + - - Priority - Priorita + + Squash + Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + - - Customize priority values - Přizpůsobit hodnoty priority + + Cluster + Klastr + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + - - [object Object] - [object Object] + + NFS Protocol + NFS protokol + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + - - The entered value is too high! It must not be greater than - . - - Zadaná hodnota je příliš vysoká, je třeba, aby nebyla vyšší než - . - + + Pseudo + Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + - - The entered value is too low! It must not be lower than - . - - Zadaná hodnota je příliš nízká! Je třeba, aby byla nižší než - . - + + Storage Backend + Podpůrná vrstva úložiště + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + - - PG scrub options - PG scrub options + + CephFS + CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + - - Updated PG scrub options - Updated PG scrub options + + CephFS User + CephFS uživatel + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + - - Advanced... - Pokročilé… + + CephFS Filesystem + Souborový systém CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + - - Advanced configuration options - Pokročilé volby nastavení + + Security Label + Štítek zabezpečení + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + - - No In - No In + + Object Gateway + Objektová brána + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + - - OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + + Object Gateway User + Uživatel objektové brány + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + - - No Out - No Out + + Any client can access + Přistupovat může libovolný klient + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + - - OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + + Addresses + Adresy + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + - - No Up - No Up + + Must contain one or more comma-separated values + Je třeba, aby obsahovalo jednu nebo více čárkou oddělovaných hodnot + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + - - OSDs are not allowed to start - OSDs are not allowed to start + + For example: + Například: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + - - No Down - No Down + + Access Type + Typ přístupu + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + - - OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + + Squash + Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + - - Pause - Pause + + Add clients + Přidat klienty + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + - - Pauses reads and writes - Pauses reads and writes + + (inherited from global config) + (převzato z globálního nastavení) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + - - No Scrub - No Scrub + + -- Select the access type -- + -- Vyberte typ přístupu -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + - - Scrubbing is disabled - Scrubbing is disabled + + inherited from global config + převzato z globálního nastavení + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + - - No Deep Scrub - No Deep Scrub + + -- Select what kind of user id squashing is performed -- + -- Vyberte jaký druh squashování identifikátor uživatele je prováděn -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + - - Deep Scrubbing is disabled - Deep Scrubbing is disabled + + -- No cluster available -- + -- Žádný klastr k dispozici -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + - - No Backfill - No Backfill + + -- Select the cluster -- + -- Vyberte klastr -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + + + + This is the ID of an NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + + + + This field is required. To create a new NFS cluster, add a new NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + + + + Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + - - Backfilling of PGs is suspended - Backfilling of PGs is suspended + + -- No CephFS filesystem available -- + -- Žádný souborový systém CephFS k dispozici -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + - - No Rebalance - No Rebalance + + -- Select the CephFS filesystem -- + -- Vyberte CephFS souborový systém -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + - - OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + + Security Label + Štítek zabezpečení + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + - - No Recover - No Recover + + Enable security label + Zapnout štítek zabezpečení + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + + + + Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + + + + -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + + + + Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + + + + -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + + + + -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + - - Recovery of PGs is suspended - Recovery of PGs is suspended + + CephFS Path + Popis umístění CephFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + + + + A path in a CephFS file system. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + + + + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + - - Bitwise Sort - Bitwise Sort + + Path need to start with a '/' and can be followed by a word + Je třeba, aby popis umístění začínal na „/“, za kterým následuje slovo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + + + + The path does not exist in the selected volume. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + + + + Bucket + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + + + + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + - - Use bitwise sort - Use bitwise sort + + NFS Protocol + NFS protokol + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + - - Purged Snapdirs - Purged Snapdirs + + NFSv3 + NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + - - OSDs have converted snapsets - OSDs have converted snapsets + + NFSv4 + NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + - - Recovery Deletes - Recovery Deletes + + Pseudo + Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + + + + The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + - - Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + + By using different Pseudo options, the same Path may be exported multiple times. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + + + + The pseudo is already in use by another export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + - - PG Log Hard Limit - PG Log Hard Limit + + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + Je třeba, aby Pseudo začínalo na „/“ a a nemůže obsahovat nic z následujícího: >, <, |, &, ( nebo ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + + + + Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + - - Puts a hard limit on pg log length - Puts a hard limit on pg log length + + -- No access type available -- + -- Žádný typ přístupu k dispozici -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - - Updated OSD Flags - Updated OSD Flags + + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + - - Cluster-wide OSD Flags - Příznaky OSD pro celý klastr + + -- No squash available -- + -- Žádné squash k dispozici -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + + + + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + + + + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + + + + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + + + + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + - - The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + + Transport Protocol + Transportní protokol + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + - - Individual OSD Flags - Individual OSD Flags + + UDP + UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + - - Restore previous selection - Restore previous selection + + TCP + TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + - - Cluster-wide - Cluster-wide + + NFS export + NFS export + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + + + + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + + + + Error while retrieving paths. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + + + + Error while retrieving bucket names. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + - - - devices - - - devices - + + CephFS + CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + - - At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + + Object Gateway + Objektová brána + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + + + + Bucket + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + - - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + + Performance counters not available + Výkonnostní čítače nejsou k dispozici + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + - - No available devices - No available devices + + The name can only consist of alphanumeric characters, dashes and underscores. + Název může být tvořen pouze písmeny a číslicemi, dále ještě spojovníky a podtržítky. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + - - Please add primary devices first - Please add primary devices first + + The chosen erasure code profile name is already in use. + Zvolený název pro profil mazacího kódu je už používán. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + - - Add devices by using filters - Add devices by using filters + + Root + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + - - - devices - - - devices - + + Failure domain type + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + - - The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + + Device class + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + + + + All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + + + + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + - - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + + Crush Rule + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + - - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + + Plugin + Zásuvný modul + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + - - Add - Přidat + + Data chunks (k) + Shluky dat (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + - - Clear - Clear + + Must be equal to or greater than 2. + Je třeba, aby bylo 2 a více. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - - Raw capacity: - - - Raw capacity: - - + + Chunks (k+m) have exceeded the available OSDs of . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + - - Attributes (OSD map) - Atributy (OSD mapa) + + For an equal distribution k has to be a multiple of (k+m)/l. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + - - Metadata - Metadata + + K has to be equal to or greater than m in order to recover data correctly through c. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - - Device health - Stav zařízení + + Distribution factor: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + - - Performance counter - Výkonnostní čítač + + Coding chunks (m) + Shluky kódování (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + - - Metadata not available - Metadata nejsou k dispozici + + Must be equal to or greater than 1. + Je třeba, aby bylo 1 a více. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + - - Performance Details - Podrobnosti o výkonnosti + + Durability estimator (c) + Odhadování odolnosti (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + - - OSD creation preview - OSD creation preview + + C has to be equal to or lower than m as m defines the amount of chunks that can be used. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + - - DriveGroups - DriveGroups + + Helper chunks (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + - - Identify - Identify + + Set d manually or use the plugin's default calculation that maximizes d. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + - - Device path - Device path + + D is automatically updated on k and m changes + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - - Type - Type + + D can be set from to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - - Available - Available + + D can only be set to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - - Vendor - Vendor + + D has to be greater than k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - - Model - Model + + D has to be lower than k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + - - Identify device - - - Identify device - - + + Locality (l) + Umístění (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + - - Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + + Can't split up chunks (k+m) correctly with the current locality. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - - 1 minute - 1 minute + + Locality groups: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + - - 2 minutes - 2 minutes + + Crush failure domain + Doména selhání crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + + + + Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + + + + This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + + + + Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + + + + This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + - - 5 minutes - 5 minutes + + Crush Locality + Lokalita crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + - - 10 minutes - 10 minutes + + None + Žádné + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + - - 15 minutes - 15 minutes + + Scalar mds + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + - - Execute - Execute + + Technique + Technika + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + - - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + + Packetsize + Velikostpaketu + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + - - No hostname found. - No hostname found. + + Crush root + Kořen crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + - - The value can be updated at runtime. - The value can be updated at runtime. + + Crush device class + Třída crush zařízení + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + + + + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + + Available OSDs: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + - - Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + + Directory + Složka + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + - - Option only affects cluster creation. - Option only affects cluster creation. + + EC Profile + EC profil + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + + + + Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + - - Option only affects daemon creation. - Option only affects daemon creation. + + Cache Tiers Details + Podrobnosti o stupních mezipaměti + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + - - Current values - Stávající hodnoty + + Cache Mode + Režim mezipaměti + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + - - Min - Min + + Min Evict Age + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + - - Max - Max + + Min Flush Age + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + - - Flags - Příznaky + + Target Max Bytes + Nejvýše bajtů cíle + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + - - Source - Zdroj + + Target Max Objects + Nejvýše objektů cíle + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + - - Level - Úroveň + + No applications added + Nebyla přidána žádná aplikace + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + - - Can be updated at runtime (editable) - Je možné aktualizovat za provozu (upravitelné) + + Applications limit reached + Dosažen limit aplikací + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + - - Tags - Štítky + + A pool can only have up to four applications definitions. + Fond může mít nejvýše čtyři definice aplikací. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + - - Enum values - Vyčíslit hodnoty + + Allowed characters '_a-zA-Z0-9' + Použitelné znaky „_a-zA-Z0-9“ + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + - - See also - Viz také + + Maximum length is 128 characters + Nejvyšší délka je 128 znaků + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + - - Directories - Složky + + Filter or add applications' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + - - Allows all operations - Allows all operations + + Add application + Přidat aplikaci + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + - - Allows only operations that do not modify the server - Allows only operations that do not modify the server + + The chosen Ceph pool name is already in use. + Zvolený název pro Ceph fond je už používán. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + - - Allows no access at all - Allows no access at all + + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + - - Origin - Origin + + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + - - Max size - Max size + + Pool type + Typ fondul + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + - - Max files - Max files + + -- Select a pool type -- + -- Vybrat typ fondu -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + - - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + + PG Autoscale + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + - - Save - Save + + Placement groups + Skupiny umístění + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + - - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + + At least one placement group is needed! + Je třeba alespoň jedné skupiny umístění! + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + - - size - size + + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. + Váš klastr nemůže obsloužit tolik skupin umístění. Přepočítejte potřebné množství skupin umístění. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + - - files - files + + Calculation help + Nápověda k výpočtu + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + - - - quota - from ' - ' - - - quota - from ' - ' - + + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + - - Value has to be at least 0 or more - Value has to be at least 0 or more + + Replicated size + Replikovaná velikost + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - - Value has to be at most - or less - - Value has to be at most - or less - + + Minimum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - - in order to inherit - - - in order to inherit - - + + Maximum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + + The size specified is out of range. A value from to is usable. + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + - - in order to have no quota on the directory - in order to have no quota on the directory + + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + - - - - - . - - - - - . - + + EC Overwrites + EC přebití + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + - - Create Snapshot - Create Snapshot + + Applications + Aplikace + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + + + + Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + - - Please enter the name of the snapshot. - Please enter the name of the snapshot. + + Mirroring + Zrcadlení + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + + + + Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + - - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + + CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + - - CephFs Snapshot - CephFs Snapshot + + Erasure code profile + Profil mazacího kódu + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + - - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + + -- No erasure code profile available -- + -- Žádný profil mazacího kódu -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + - - Snapshots - Zachycené stavy + + -- Select an erasure code profile -- + -- Vyberte profil mazacího kódu -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + - - Quotas - Kvóty + + This profile can't be deleted as it is in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + - - Standby daemons - Standby daemons + + Profile + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + - - Daemon - Daemon + + Used by pools + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + - - Activity - Activity + + Profile is not in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + - - Dentries - Dentries + + Crush ruleset + Sada pravidel crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + - - Inodes - Inodes + + A new crush ruleset will be implicitly created. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + + + + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + - - Dirs - Dirs + + There are no rules. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + - - Caps - Caps + + -- Select a crush rule -- + -- Vybrat crush pravidlo -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + + + + Placement and + replication strategies or distribution policies that allow to + specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + - - Pool - Pool + + This rule can't be deleted as it is in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + - - Ranks - Hodnocení + + Crush rule + Crush pravidlo + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + - - Standbys - Pohotovosti + + Crush steps + Crush kroky + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + - - MDS performance counters - čítače výkonnosti MDS + + Rule is not in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + - - id - id + + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + - - type - type + + Compression + Komprese + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + - - state - state + + Algorithm + Algoritmus + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + - - version - version + + -- No erasure compression algorithm available -- + -- Žádný algoritmus komprese mazání -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + - - root - root + + Minimum blob size + Minimální velikost blobu + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + - - Evicted client ' - ' - - Evicted client ' - ' - + + e.g., 128KiB + např. 128 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + - - Roles - Role + + Value should be greater than 0 + Hodnota by měla být vyšší než nula + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + - - Username - Username + + Value should be less than the maximum blob size + Hodnota by měla být nižší než maximální velikost blobu + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + - - Email - Email + + Maximum blob size + Nejvyšší velikost blobu + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + - - Roles - Roles + + e.g., 512KiB + např. 512 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + - - Deleted user ' - ' - - Deleted user ' - ' - + + Value should be greater than the minimum blob size + Hodnota by měla být vyšší než nejnižší velikost blobu + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + - - Failed to delete user ' - ' - - Failed to delete user ' - ' - + + Ratio + Poměr + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + - - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + + Compression ratio + Kompresní poměr + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + - - There are no roles. - There are no roles. + + Value should be between 0.0 and 1.0 + Hodnota by měla být z rozmezí 0.0 až 1.0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + - - user - user + + Max bytes + Nejvýše bajtů + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + - - Created user ' - ' - - Created user ' - ' - + + Leave it blank or specify 0 to disable this quota. + Pro vypnutí této kvóty nevyplňujte nebo zadejte 0 (nulu). + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + - - Update user - Update user + + A valid quota should be greater than 0. + Platná kvóta by měla být vyšší než 0 (nula). + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + - - Continue - Continue + + Max objects + Nejvýše objektů + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + - - You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + + The value should be greater or equal to 0 + Hodnota by měla být vyšší nebo rovna 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + - - Updated user ' - ' - - Updated user ' - ' - + + pool + fond + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + - - Full name - Celé jméno + + erasure code profile + profil mazacího kódu + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + - - Email - E-mail + + crush rule + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + - - The username already exists. - The username already exists. + + Pools List + Seznam fondů + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + + + + Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + - - Confirm password - Potvrzení zadání hesla + + Data Protection + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + - - Password confirmation doesn't match the password. - Zadání hesla se neshodují. + + Applications + Aplikace + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + - - Password expiration date - Password expiration date + + PG Status + Stav skupiny umístění + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + - - Password expiration date... - Password expiration date... + + Crush Ruleset + Sada crush pravidel + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + - - Invalid email. - Neplatný e-mail. + + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + Smazání fondu je vypnuto nastavením mon_allow_pool_delete configuration. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + + + + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + + + + Key + Klíč + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + + + + This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + + + + Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + + + + Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + + + + Create Realm/Zone Group/Zone + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title + + + Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + + + + Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + + + + Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + + + + Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + + + + Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + + + + Delete Zone + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title + + + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + + + + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + + + + This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + + + + Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + + + + This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + + + + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + + + + No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + + + + Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + + + + Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + + + + Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + + + + Delete Zone Group + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title + + + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + + + + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + + + + This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + + + + Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + + + + Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + - - Enabled - Zapnuto + + Versioning + Verzování + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + + + + Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + - - User must change password at next logon - User must change password at next logon + + MFA Delete + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + - - You are about to remove "user read / update" permissions from your own user. - Chystáte se odebrat oprávnění „uživatel číst/aktualizovat“ svému vlastnímu účtu. - - - If you continue, you will no longer be able to add or remove roles from any user. - Pokud budete pokračovat, nebudete nadále schopní přidávat nebo nebo odebírat role žádnému z uživatelů. - - - Are you sure you want to continue? - Opravdu chcete pokračovat? - - - System Role - System Role - - - Deleted role ' - ' - - Deleted role ' - ' - - - - New name - New name - - - Clone Role - Clone Role + + Index type + Typ rejstříku + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + - - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + + Placement rule + Pravidlo umístění + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + + + + Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + - - role - role + + Bucket quota + Kvóta nádoby + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + - - All - All + + Enabled + Zapnuto + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + - - Read - Read + + Maximum size + Nejvyšší velikost + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + - - Created role ' - ' - - Created role ' - ' - + + Unlimited + Neomezeno + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + - - Updated role ' - ' - - Updated role ' - ' - + + Maximum objects + Nejvýše objektů + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + - - Name... - Název… + + Locking + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + - - Description... - Popis… + + Days + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + + + + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + + + + Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + + + + Bucket policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + + + + Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + + + + ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + + + + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + + + + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + + + + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + + + + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + - - Permissions - Oprávnění + + Id + Identif. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + + + + Bucket names can only contain lowercase letters, numbers, periods and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. Zvolený název už je používán. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + + + + Bucket names must not contain uppercase characters or underscores. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + + + + Each label must start and end with a lowercase letter or a number. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + + + + Bucket names cannot be formatted as IP address. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + + + + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + + + + Bucket names must be 3 to 63 characters long. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + - - Scope - Scope + + Owner + Vlastník + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + - - Swift Key - Swift Key + + -- Select a user -- + -- Vybrat uživatele -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + - - Secret key - Tajný klíč + + Enables versioning for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + - - Subuser - Subuser + + Multi-Factor Authentication + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + - - Subuser - Dílčí uživatel + + Delete enabled + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + - - Permission - Oprávnění + + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + - - -- Select a permission -- - -- Vybrat oprávnění -- + + Token Serial Number + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + - - read, write - číst, zapisovat + + Token PIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + + + + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + + + + Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + - - full - plné + + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + + + + Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + + + + Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + + + + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + + + + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + - - The chosen subuser ID is already in use. - Zvolený identifikátor dílčího uživatele už je používán. + + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + - - Swift key - Swift klíč + + The entered value must be a positive integer. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + + + + Retention Days must be a positive integer. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + + + + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + + + + SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + + + + Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + + + + KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + + + + -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + + + + Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + + + + Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + + + + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + + + + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + + + + Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + + + + Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + + + + Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + + + + Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + + + + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + + + + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + + + + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + + + + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + + + + Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + + + + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + + + + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + + + + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + + + + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + + + + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + - - Auto-generate secret - Automaticky vytvořit tajemství + + Placement target + Cíl umístění + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + - - S3 Key - S3 Key + + -- Select a placement target -- + -- Vybrat cíl umístění -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + + + + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + + + + Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + - - -- Select a username -- - -- Vybrat uživatelské jméno -- + + bucket + nádoba + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - - Auto-generate key - Automaticky vytvořit klíč + + Updated Object Gateway bucket ''. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - - Access key - Přístupový klíč + + Created Object Gateway bucket '' + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + + + + No Limit + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + - - Full name - Full name + + Owner + Vlastník + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + - - Email address - Email address + + Used Capacity + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + - - Suspended - Suspended + + Capacity Limit % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + - - Max. buckets - Max. buckets + + Object Limit % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + + + + Update RGW Encryption Configurations + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title + + + Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + + + + SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + + + + Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + + + + Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + + + + Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + + + + Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + + + + Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + + + + Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + + + + The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + + + + CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + + + + Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + + + + The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + + + + Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + + + + The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + + + + Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + - - Disabled - Disabled + + Performance Counters + Výkonnostní čítače + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + + + + RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + + + + Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + + + + RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + - - Unlimited - Unlimited + + Sync Performance + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + + + + Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + + + + Realm + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + + + + Zone Group + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + + + + Zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + + + + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + + + + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + + + + Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + + + + Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + + + + Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + + + + No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + + + + Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + + + + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + + + + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + + + + Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + + + + Export Multi-site Realm Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title + + + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + + + + Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + + + + Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + + + + Import Multi-site Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title + + + Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + + + + Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + + + + Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + + + + The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + + + + Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + + + + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + - - The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + + Only that number of daemons will be created. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + + + + Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + + + + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title + + + The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + + + + Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + + + + The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + + + + Zone group Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + + + + Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + + + + Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + + + + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + + + + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + + + + Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + + + + Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + + + + You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + + + + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + + + + Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + + + + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + + + + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + + + + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title + + + Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + + + + Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + + + + The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + + + + Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + + + + Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + + + + Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + + + + Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + + + + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + + + + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + + + + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + + + + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + + + + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title + + + Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + + + + Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + + + + Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + + + + Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + + + + Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + + + + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + + + + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + + + + All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + + + + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + + + + Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + + + + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + + + + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + + + + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + + + + Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + + + + Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + + + + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + + + + Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + + + + Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + + + + Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + + + + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + + + + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + + + + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + + + + Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + + + + Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + + + + Zonegroup + Skupinazóny + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + + + + Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + + + + Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + + + + Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + + + + Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + + + + Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + + + + You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + + + + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + + + + Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + + + + Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + + + + You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + + + + Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + - - users - users + + Data pool + Datový fond + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + + + + Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + + + + Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + + + + Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + + + + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + + + + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + + + + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title + + + Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + + + + -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + + + + Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + + + + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + + + + You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + + + + Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + + + + Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + + + + Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + + + + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + + + + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + + + + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + + + + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + + + + Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + + + + Error + Chyba + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + + + + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + + + + Create System User + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title + + + User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + + + + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + - - subuser - subuser + + -- Select a type -- + -- Vybrat typ -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + + + + Permission + Oprávnění + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + + + + -- Select a permission -- + -- Vybrat oprávnění -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + schopnost + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + - - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + + Keys + Klíče + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + - - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + + Show + Zobrazit + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + + + + Tenant + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + + + + User ID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + + + + Full name + Celé jméno + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address E-mailová adresa - - - Max. buckets - Nejvýše nádob - - - Disabled - Vypnuto - - - Unlimited - Neomezeno - - - Custom - Uživatelsky určené + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended Pozastaveno + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + + + + System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + + + + Maximum buckets + Nejvýše nádob + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + + + + Subusers + Dílčí uživatelé + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + + + + Capabilities + Schopnosti + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + + + + MFAs(Id) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota Kvóta uživatele + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + - - Bucket quota - Kvóta nádoby + + Username + Uživatelské jméno + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + + + + Unlimited + Neomezeno + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + + + + The value is not valid. + Hodnota není platná. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. Zvolený identif. uživatele už je používán. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + + + + Show Tenant + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + + + + The chosen user ID exists in this tenant. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. Toto není platná e-mailová adresa. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. Zvolená e-mailová adresa už je používána. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + - - The entered value must be >= 1. - The entered value must be >= 1. - - - S3 key - S3 klíč + + Max. buckets + Nejvýše nádob + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + - - Subusers - Dílčí uživatelé + + Disabled + Vypnuto + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + - - - - - - - - - + + Custom + Uživatelsky určené + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + + + + The entered value must be >= 1. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + + + + Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + + + + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + + + + S3 key + S3 klíč + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + + + + Auto-generate key + Automaticky vytvořit klíč + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + + + + Access key + Přístupový klíč + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + + + + Secret key + Tajný klíč + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. Nejsou zde žádní dílčí uživatelé. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - Keys - Klíče + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + + + + There are no keys. + Nejsou zde žádné klíče. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + - - There are no keys. - Nejsou zde žádné klíče. - - - Show - Zobrazit - - - Capabilities - Schopnosti + + There are no capabilities. + Nejsou zde žádné schopnosti. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - - - - There are no capabilities. - Nejsou zde žádné schopnosti. + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size Neomezená velikost + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size Nejvyšší velikost - - - The value is not valid. - Hodnota není platná. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects Neomezené objekty + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects Nejvýše objektů + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. Je třeba, aby zadaná hodnota byla 0 a vyšší. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + - - Maximum buckets - Nejvýše nádob - - - Maximum size - Nejvyšší velikost - - - Maximum objects - Nejvýše objektů - - - -- Select a type -- - -- Vybrat typ -- - - - Sync Performance - Sync Performance - - - Performance Counters - Výkonnostní čítače - - - Owner - Owner - - - Used Capacity - Used Capacity - - - Capacity Limit % - Capacity Limit % - - - Objects - Objects - - - Object Limit % - Object Limit % - - - bucket - bucket - - - buckets - buckets + + user + uživatel + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + - - pool - pool + + subuser + dílčí uživatel + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + - - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + + S3 Key + S3 klíč + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + + Updated Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - - Owner - Vlastník + + Created Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + + + + Tenant + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + - - Placement target - Cíl umístění + + Full name + Celé jméno + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + - - Locking - Locking + + Email address + E-mailová adresa + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + - - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. + + Suspended + Pozastaveno + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + - - -- Select a user -- - -- Vybrat uživatele -- + + Max. buckets + Nejvýše nádob + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + - - -- Select a placement target -- - -- Vybrat cíl umístění -- + + users + uživatelé + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + - - Versioning - Verzování + + -- Select a username -- + -- Vybrat uživatelské jméno -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + - - Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + + Subuser + Dílčí uživatel + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + - - Multi-Factor Authentication - Multi-Factor Authentication + + The chosen subuser ID is already in use. + Zvolený identifikátor dílčího uživatele už je používán. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + - - Delete enabled - Delete enabled + + read, write + číst, zapisovat + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + - - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + + full + plné + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + - - Token Serial Number - Token Serial Number + + Swift key + Swift klíč + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + - - Token PIN - Token PIN + + Auto-generate secret + Automaticky vytvořit tajemství + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + - - Mode - Režim + + Subuser + Dílčí uživatel + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + - - Days - Days + + Swift Key + Swift klíč + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + - - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + + Users + Uživatelé + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + - - The entered value must be a positive integer. - The entered value must be a positive integer. + + Roles + Role + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + - - Index type - Typ rejstříku + + Neither hostname nor OSD ID given + + src/app/ceph/shared/device-list/device-list.component.html + 7 + + + + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + - - Placement rule - Pravidlo umístění + + Device ID + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + - - Version - Verze + + State of Health + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + - - MFA Delete - MFA Delete + + Good + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + + Bad + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + - - An error with error code - occurred. - - An error with error code - occurred. - + + Stale + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + - - Raw - Raw + + Life Expectancy + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + - - Threshold - Threshold + + Prediction Creation Date + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + - - When Failed - When Failed + + Device Name + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + - - Worst - Worst + + Daemons + Procesy služeb + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + + + + Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + + + + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + + + + Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + + + + Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + + + + Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + + + + Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + + + + -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + + + + Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + + + + Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + + + + -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + + + + Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + + + + Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + + + + Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + + + + Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + + + + Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + Data obdržena v JSON formátu verze 2.x, což je v tuto chvíli nekompatibilní s přehledem. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result výsledek SMART testu samoposouzení celkového stavu + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information Informace o zařízení - - - SMART - SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + + + + SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - - The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - - The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + + An error with error code occurred. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + - - Device ID - Device ID - - - State of Health - State of Health + + Raw + Nezpracované + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + - - Good - Good + + Threshold + Práh + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + - - Bad - Bad + + When Failed + Když se nezdařilo + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + - - Stale - Stale + + Worst + Nejhorší + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + + + + Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + + + + Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + + + + Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + + + + Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + + + + Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + + + + Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + + + + Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + - - Life Expectancy - Life Expectancy + + Please set a new password. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + - - Prediction Creation Date - Prediction Creation Date + + You will be redirected to the login page afterwards. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + - - Device Name - Device Name + + The old and new passwords must be different. + Je třeba, aby původní a nové heslo nebyly stejné + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + - - Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + + Password confirmation doesn't match the new password. + Kontrolní zadání nového hesla se neshoduje. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + - - Restore Image - Obnovit obraz + + Username is required + Je třeba vyplnit uživatelské jméno + + src/app/core/auth/login/login.component.html + 26 + - - New Name - Nový název + + Password is required + Je třeba vyplnit heslo + + src/app/core/auth/login/login.component.html + 48 + - - Purge Trash - Vysypat koš + + Log in + + src/app/core/auth/login/login.component.html + 63 + - - All - Vše + + Scope + Rozsah + + src/app/core/auth/role-details/role-details.component.ts + 27 + - - Pool: - Fond: + + Create + Vytvořit + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + - - Pool name... - Název fondu… + + Update + Aktualizovat + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + - - Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + + Delete + Smazat + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + - - no active alerts - no active alerts + + Description... + Popis… + + src/app/core/auth/role-form/role-form.component.html + 45 + - - 1 active alert - 1 active alert + + Permissions + Oprávnění + + src/app/core/auth/role-form/role-form.component.html + 55 + - - - active alerts - - - active alerts - + + role + role + + src/app/core/auth/role-form/role-form.component.ts + 49 + - - Matches 1 rule - Matches 1 rule + + Created role '' + + src/app/core/auth/role-form/role-form.component.ts + 153 + - - Matches - rules - - Matches - rules - + + Updated role '' + + src/app/core/auth/role-form/role-form.component.ts + 169 + - - - with - . - - - with - . - + + System Role + Systémová role + + src/app/core/auth/role-list/role-list.component.ts + 100 + - - Move an image to trash - Přesunout obraz do koše + + Deleted role '' + + src/app/core/auth/role-list/role-list.component.ts + 127 + - - Protection expires at - Platnost ochrany skončí v + + New name + + src/app/core/auth/role-list/role-list.component.ts + 152 + - - NOT PROTECTED - NECHRÁNĚNO + + Clone Role + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - - This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + + Cloned role '' from '' + + src/app/core/auth/role-list/role-list.component.ts + 163 + + + + White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + - - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Chybný formát data. Použijte „RRRR-MM-DD HH:mm:ss“. + + The username already exists. + + src/app/core/auth/user-form/user-form.component.html + 35 + - - Protection has already expired. Please pick a future date or leave it empty. - Platnost ochrany už skončila. Zvolte budoucí datum nebo nevyplňujte. + + Confirm password + Potvrzení zadání hesla + + src/app/core/auth/user-form/user-form.component.html + 85 + - - Namespace - Namespace + + Password confirmation doesn't match the password. + Zadání hesla se neshodují. + + src/app/core/auth/user-form/user-form.component.html + 101 + - - Deleted At - Deleted At + + Password expiration date + + src/app/core/auth/user-form/user-form.component.html + 115 + - - Expired at - Platnost skončila v + + Password expiration date... + + src/app/core/auth/user-form/user-form.component.html + 135 + - - Protected until - Chráněno do + + Email + E-mail + + src/app/core/auth/user-form/user-form.component.html + 175 + - - This image is protected until - . - - Tento obraz je chráněn do - . - + + Invalid email. + Neplatný e-mail. + + src/app/core/auth/user-form/user-form.component.html + 186 + - - Namespaces - Namespaces + + User must change password at next logon + + src/app/core/auth/user-form/user-form.component.html + 233 + - - Trash - Koš + + You are about to remove "user read / update" permissions from your own user. + Chystáte se odebrat oprávnění „uživatel číst/aktualizovat“ svému vlastnímu účtu. + + src/app/core/auth/user-form/user-form.component.html + 250 + - - -- Select the priority -- - -- Select the priority -- + + If you continue, you will no longer be able to add or remove roles from any user. + Pokud budete pokračovat, nebudete nadále schopní přidávat nebo nebo odebírat role žádnému z uživatelů. + + src/app/core/auth/user-form/user-form.component.html + 252 + - - Low - Low + + There are no roles. + Nejsou zde žádné role. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - - High - High + + Created user '' + + src/app/core/auth/user-form/user-form.component.ts + 208 + - - PROTECTED - PROTECTED + + Update user + Aktualizovat uživatele + + src/app/core/auth/user-form/user-form.component.ts + 221 + - - UNPROTECTED - UNPROTECTED + + You were automatically logged out because your roles have been changed. + Byli jste automaticky odhlášeni protože vaše role byly změněny. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - - RBD snapshot rollback - RBD snapshot rollback + + Updated user '' + + src/app/core/auth/user-form/user-form.component.ts + 283 + + + + User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + - - RBD snapshot - RBD snapshot + + Email + E-mail + + src/app/core/auth/user-list/user-list.component.ts + 98 + - - You are about to rollback - Chystáte se vrátit zpět + + Roles + Role + + src/app/core/auth/user-list/user-list.component.ts + 104 + + + + Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - - RBD Snapshot - RBD Snapshot + + Deleted user '' + + src/app/core/auth/user-list/user-list.component.ts + 156 + - - Total images - Total images + + Failed to delete user '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + + You are currently logged in as ''. + + src/app/core/auth/user-list/user-list.component.ts + 172 + - - Namespace contains images - Namespace contains images + + Old password + Původní heslo + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + - - Created namespace ' - / - ' - - Created namespace ' - / - ' - + + New password + Nové heslo + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + - - Create Namespace - Create Namespace + + Confirm new password + Zopakování zadání nového hesla + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + - - -- No rbd pools available -- - -- Žádné rbd fondy k dispozici -- + + password + heslo + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - - Namespace already exists. - Namespace already exists. + + Updated user password" + Aktualizované heslo uživatele" + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + + + + Selected Object Gateway: + + src/app/core/context/context.component.html + 5 + + + + Select Object Gateway + + src/app/core/context/context.component.html + 12 + + + + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + + + + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + + + + + + src/app/core/error/error.component.html + 33 + - - Object size - Object size + + Page not Found + + src/app/core/error/error.component.html + 53 + + + + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + + src/app/core/error/error.component.html + 56,57 + - - Parent - Parent + + Go To Dashboard + + src/app/core/error/error.component.html + 65 + - - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + + Page Not Found + + src/app/core/error/error.ts + 10 + - - This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + + Sorry, we couldn’t find what you were looking for. + The page you requested may have been changed or moved. + + src/app/core/error/error.ts + 11,12 + - - Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + + Access Denied + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + - - The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + + Sorry, you don’t have permission to view this page or resource. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + - - RBD - RBD + + User Denied + + src/app/core/error/error.ts + 23 + - - Deep flatten - Deep flatten + + Sorry, the user does not exist in Ceph. + You'll be logged out from the Identity Provider when you retry logging in. + + src/app/core/error/error.ts + 24,25 + - - Layering - Layering + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + - - Exclusive lock - Exclusive lock - - - Object map (requires exclusive-lock) - Object map (requires exclusive-lock) - - - Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) - - - Size - Velikost - - - e.g., 10GiB - např. 10 GiB - - - Striping - Proužkování - - - Object size - Velikost objektu - - - -- Select stripe unit -- - -- Vybrat jednotku proužku -- - - - - from - - - od - - - - '/' and '@' are not allowed. - „/“ a „@“ nejsou dovoleny. - - - -- No namespaces available -- - -- No namespaces available -- - - - -- Select a namespace -- - -- Select a namespace -- - - - You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. - - - Data pool - Datový fond - - - You have to increase the size. - Je třeba zvětšit. - - - This field is required because stripe count is defined! - Tuto kolonku je třeba vyplnit, protože je definován počet proužků! - - - Stripe unit is greater than object size. - Jednotka proužku je vyšší než velikost objektu. - - - This field is required because stripe unit is defined! - Tuto kolonku je třeba vyplnit, protože je definována jednotka proužku! - - - Stripe count must be greater than 0. - Je třeba, aby počet proužků byl větší než nula. - - - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - - - - Data Pool - Datový fond - - - Created - Vytvořeno - - - Provisioned - Poskytováno - - - Total provisioned - Celkem poskytováno - - - Striping unit - Proužkovací jednotka - - - Striping count - Počet proužkování - - - Parent - Nadřazené - - - Block name prefix - Předpona názvu bloku - - - Order - Pořadí - - - Format Version - Format Version - - - N/A - neaplikovatelné + + Help + Nápověda + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + - - This setting overrides the global value - Toto nastavení přebije globální hodnotu + + Security + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + - - Image - Obraz + + Trademarks + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + - - This is the global value. No value for this option has been set for this image. - Toto je globální hodnota. Pro tento obraz nebyla u této volby nastavena žádná hodnota. + + Dashboard Settings + Nastavení přehledu + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + - - Global - Globální + + User management + Správa uživatelů + + src/app/core/navigation/administration/administration.component.html + 17 + - - Key - Key + + Telemetry configuration + + src/app/core/navigation/administration/administration.component.html + 21 + - - RBD Configuration - Nastavení RBD + + Help + Nápověda + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + - - Remove the local configuration value. The parent configuration value will be inherited and used instead. - Odebrat hodnotu místnímu nastavení. Namísto ní bude použita hodnota nadřazeného nastavení. + + documentation + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + - - The minimum value is 0 - The minimum value is 0 + + API + Aplikační program. rozhraní + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + - - Create Bootstrap Token - Create Bootstrap Token + + About + O aplikaci + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + + + + Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + - - Import Bootstrap Token - Import Bootstrap Token + + Logged in user + Přihlášený uživatel + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + + + + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + - - Size has to be at least - or more - - Size has to be at least - or more - + + Change password + Změnit heslo + + src/app/core/navigation/identity/identity.component.html + 20 + + + + Log out + + src/app/core/navigation/identity/identity.component.html + 25 + - - Size has to be at most - or less - - Size has to be at most - or less - + + Toggle navigation + Zobrazit/skrýt navigaci + + src/app/core/navigation/navigation/navigation.component.html + 25 + + + + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + + + + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + - - # Targets - # Targets + + CRUSH map + CRUSH mapa + + src/app/core/navigation/navigation/navigation.component.html + 141 + + + + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + - - # Sessions - # Sessions + + iSCSI + iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + + + + NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + + + + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + - - Image - Image + + Buckets + Nádoby + + src/app/core/navigation/navigation/navigation.component.html + 231 + + + + Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + - - Backstore - Backstore + + NFS + NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + + + + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + + + + File Systems + + src/app/core/navigation/navigation/navigation.component.html + 281 + + + + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + - - Read Bytes - Read Bytes + + Logs + Záznamy událostí + + src/app/core/navigation/navigation/navigation.component.html + 315 + + + + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + + + + Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + + + + Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + - - Write Bytes - Write Bytes + + Manager Modules + + src/app/core/navigation/navigation/navigation.component.html + 369 + - - Read Ops - Read Ops + + Tasks and Notifications + Úlohy a oznámení + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + + + + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + - - Write Ops - Write Ops + + The name of the node under which data should be placed. + + src/app/shared/api/crush-rule.service.ts + 14 + - - A/O Since - A/O Since + + The type of CRUSH nodes across which we should separate replicas. + + src/app/shared/api/crush-rule.service.ts + 15 + + + + The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + - - Gateways - Brány + + Each object is split in data-chunks parts, each stored on a different OSD. + Každý objekt je rozdělen v částech shluků dat, každé uložené na jiném OSD. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + - - Target - Target + + Compute coding chunks for each object and store them on different OSDs. + The number of coding chunks is also the number of OSDs that can be down without losing data. + Počítat kódovací shluky pro každý objekt a ukládat je na různých OSD. + Počet kódovacích shluků je také počet OSD, které mohou vypadnou, aniž dojde ke ztrátě dat. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + - - Portals - Portals + + The jerasure plugin is the most generic and flexible plugin, + it is also the default for Ceph erasure coded pools. + Zásuvný modul jerasure je nejobecnější a nejpřizpůsobivější, + je také výchozí pro Ceph fondy kódované mazáním. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + - - Images - Images + + The more flexible technique is reed_sol_van : it is enough to set k + and m. The cauchy_good technique can be faster but you need to chose the packetsize + carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents + in the sense that they can only be configured with m=2. + Přizpůsobivější technikou je reed_sol_van: postačí nastvit k + a m. Technika cauchy_good technique může být rychlejší, ale je třeba pečlivě nastavit velikost + paketu. Všechny z reed_sol_r6_op, liberation, blaum_roth, liber8tion jsou ekvivalenty RAID6 + v tom smyslu, že je možné je nastavit pouze s m=2. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + - - Unavailable gateway(s) - Unavailable gateway(s) + + The encoding will be done on packets of bytes size at a time. + Choosing the right packet size is difficult. + The jerasure documentation contains extensive information on this topic. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + - - Target has active sessions - Target has active sessions + + With the jerasure plugin, when an erasure coded object is stored on + multiple OSDs, recovering from the loss of one OSD requires reading from all the others. + For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading + from the eleven others to repair. + + The lrc erasure code plugin creates local parity chunks to be able to recover using + less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create + an additional parity chunk for every four OSDs. When a single OSD is lost, it can be + recovered with only four OSDs instead of eleven. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + - - iSCSI target - iSCSI target + + Group the coding and data chunks into sets of size locality. For instance, + for k=4 and m=2, when locality=3 two groups of three are created. Each set can + be recovered without reading chunks from another set. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + - - iSCSI Targets not available - iSCSI cíl není k dispozici + + The type of the crush bucket in which each set of chunks defined + by l will be stored. For instance, if it is set to rack, each group of l chunks will be + placed in a different rack. It is used to create a CRUSH rule step such as step choose + rack. If it is not set, no such grouping is done. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + + The isa plugin encapsulates the ISA library. It only runs on Intel processors. + Zásuvný modul isa obaluje knihovnu ISA. Funguje pouze na procesorech Intel. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + - - Available information: - Informace k dispozici: + + The ISA plugin comes in two Reed Solomon forms. + If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + Zásuvný modul ISA přichází ve dvou Reed Solomon podobách. + Pokud je nastaveno reed_sol_van, je to Vandermonde, pokud je nastaveno Cauchy, je Cauchy. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + - - Discovery authentication - Ověřování pro objevování + + The shec plugin encapsulates the multiple SHEC library. + It allows ceph to recover data more efficiently than Reed Solomon codes. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + - - Changing these parameters from their default values is usually not necessary. - Měnit tyto parametry z jejich výchozích hodnot obvykle není potřeba. + + The number of parity chunks each of which includes each data chunk in its + calculation range. The number is used as a durability estimator. For instance, if c=2, + 2 OSDs can be down without losing data. + Počet paritních shluků, ze kterých každý obsahuje každý shluk dat ve svém + výpočetním rozsahu. Číslo je použito pro odhad odolnosti. Například, pokud c=2, + 2 OSD mohou vypadnou aniž by byla ztracena data. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + - - Configure - Configure + + CLAY (short for coupled-layer) codes are erasure codes designed to + bring about significant savings in terms of network bandwidth and disk IO when a failed + node/OSD/rack is being repaired. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + - - Settings - Nastavení + + Number of OSDs requested to send data during recovery of a single chunk. + d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better + the savings. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + - - Backstore - Backstore + + scalar_mds specifies the plugin that is used as a building block + in the layered construction. It can be one of jerasure, isa, shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + - - Identifier - Identifier + + technique specifies the technique that will be picked + within the 'scalar_mds' plugin specified. Supported techniques + are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', + 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', + 'cauchy' for isa and 'single', 'multiple' for shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + - - lun - lun + + The name of the crush bucket used for the first step of the CRUSH rule. + For instance step take default. + Název crush nádoby sloužící jako první krok CRUSH pravidla. + Například krok vzít výchozí. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + - - wwn - wwn + + Ensure that no two chunks are in a bucket with the same failure + domain. For instance, if the failure domain is host no two chunks will be stored on the same + host. It is used to create a CRUSH rule step such as step chooseleaf host. + Zajistit, aby žádné dva shluky nebyly v nádobě nacházejícící se ve stejné + doméně selhání. Například, pokud doména selhání je hostitel, žádné dva shluky nebudou uloženy na stejném hostiteli + Je použito pro vytvoření kroku CRUSH pravidla jako krok chooseleaf hostitele. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + + + + Number of failure domains to map. Results in a CRUSH MSR rule being created. + Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + + + + Maximum number of OSDs to place in each failure domain -- + defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. + Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + - - There are no portals available. - There are no portals available. + + Set the directory name from which the erasure code plugin is loaded. + Nastavit složku ze které načítat zásuvný modul mazacího kódu. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + - - There are no images available. - There are no images available. + + Allows all operations + Umožnit všechny operace + + src/app/shared/api/nfs.service.ts + 23 + - - There are no images available. Please make sure you add an image to the target. - There are no images available. Please make sure you add an image to the target. + + Allows only operations that do not modify the server + Umožnit pouze operace které neupraví server + + src/app/shared/api/nfs.service.ts + 27 + - - There are no initiators available. Please make sure you add an initiator to the target. - There are no initiators available. Please make sure you add an initiator to the target. + + Allows no access at all + Neumožnit vůbec žádný přístup + + src/app/shared/api/nfs.service.ts + 31 + + + + Please specify a filesystem volume. + + src/app/shared/api/nfs.service.ts + 96 + - - target - target + + The feature is disabled because Orchestrator is not available. + + src/app/shared/api/orchestrator.service.ts + 17 + - - Target IQN - IQN cíle + + The Orchestrator backend doesn't support this feature. + + src/app/shared/api/orchestrator.service.ts + 18 + - - Portals - Portály + + -- Select the priority -- + -- Vyberte prioritu -- + + src/app/shared/api/osd.service.ts + 34 + - - Add portal - Přidat portál + + Low + Nízká + + src/app/shared/api/osd.service.ts + 44 + - - Add image - Přidat obraz + + High + Vysoká + + src/app/shared/api/osd.service.ts + 64 + - - ACL authentication - ACL ověřování + + The user list data might be stale. If needed, you can manually reload it. + + src/app/shared/classes/list-with-details.class.ts + 23 + - - IQN has wrong pattern. - IQN nemá správný formát. + + Retrieving data for . + + src/app/shared/classes/table-status-view-cache.ts + 16 + - - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + + Retrieving data. + + src/app/shared/classes/table-status-view-cache.ts + 16 + - - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - Například: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + Please wait... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - - More information - Další informace + + Displaying previously cached data for . + + src/app/shared/classes/table-status-view-cache.ts + 23 + - - This target has modified advanced settings. - Tento cíl má změněná pokročilá nastavení. + + Displaying previously cached data. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - - At least - gateways are required. - - Je třeba alespoň - bran. - + + Could not load data for . + + src/app/shared/classes/table-status-view-cache.ts + 30 + - - Backstore: - .  - - Backstore: - .  - + + Could not load data. + + src/app/shared/classes/table-status-view-cache.ts + 31 + - - This image has modified settings. - Tento obraz má změněná nastavení. + + Please check the cluster health. + + src/app/shared/classes/table-status-view-cache.ts + 33 + - - Duplicated LUN numbers. - Duplicated LUN numbers. + + Error + Chyba + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + - - Duplicated WWN. - Duplicated WWN. + + Information + Informace + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + - - Mutual User - Uživatel pro vzájemné ověření + + Success + Úspěch + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + + + + Danger + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + + + + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + - - Mutual Password - Heslo pro vzájemné ověření + + Remove the custom configuration value. The default configuration will be inherited and used instead. + Odebrat uživatelsky určenou hodnotu nastavení. Namísto toho bude převzato a použito výchozí nastavení. + + src/app/shared/components/config-option/config-option.component.html + 50 + - - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + The entered value is too high! It must not be greater than . + + src/app/shared/components/config-option/config-option.component.html + 66 + - - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + The entered value is too low! It must not be lower than . + + src/app/shared/components/config-option/config-option.component.html + 69 + - - Initiators - Iniciátory + + Copy to Clipboard + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - - Add initiator - Přidat iniciátor + + Are you sure that you want to ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - - Initiator - Iniciátor + + Are you sure that you want to the selected items? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - - Client IQN - IQN klienta + + Are you sure that you want to the selected ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + - - Initiator IQN needs to be unique. - Je třeba, aby se IQN iniciátoru neopakovalo. + + Yes, I am sure. + Ano, opravdu to chci. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + - - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + documentation + + src/app/shared/components/doc/doc.component.ts + 12 + - - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + Download + + src/app/shared/components/download-button/download-button.component.ts + 15 + + + + Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + - - Initiator belongs to a group. Images will be configure in the group. - Iniciátor spadá do skupiny. Obrazy budou nastaveny ve skupině. + + This field is required. + Tuto kolonku je třeba vyplnit. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + + + + Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + - - No items added. - Nepřidány žádné položky. + + An error occurred. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + - - Groups - Skupiny + + Loading panel data... + Načítání údajů panelu… + + src/app/shared/components/grafana/grafana.component.html + 3 + - - Add group - Přidat skupinu + + Please consult the on how to configure and enable the monitoring functionality. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - - Group - Skupina + + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + - - Updated discovery authentication - Updated discovery authentication + + Grafana Time Picker + Volič čas Grafana + + src/app/shared/components/grafana/grafana.component.html + 21 + - - Discovery Authentication - Ověřování pro objevování + + Reset Settings + Resetovat nastavení + + src/app/shared/components/grafana/grafana.component.html + 37 + + + + Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + + + + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + - - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + Last 1 hour (Default) + Uplynulá 1 hodina (výchozí) + + src/app/shared/components/grafana/grafana.component.ts + 58 + - - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + Yesterday + Včera + + src/app/shared/components/grafana/grafana.component.ts + 78 + - - Retrieving data for - . - - Retrieving data for - . - + + Today so far + Dnes doposud + + src/app/shared/components/grafana/grafana.component.ts + 82 + - - Retrieving data. - Retrieving data. + + Day before yesterday + Včerejšek + + src/app/shared/components/grafana/grafana.component.ts + 86 + - - Please wait... - Please wait... + + Last 2 days + Uplynulé 2 dny + + src/app/shared/components/grafana/grafana.component.ts + 90 + - - Displaying previously cached data for - . - - Displaying previously cached data for - . - + + This day last week + Tento den minulý týden + + src/app/shared/components/grafana/grafana.component.ts + 94 + - - Displaying previously cached data. - Displaying previously cached data. + + Previous week + Předchozí týden + + src/app/shared/components/grafana/grafana.component.ts + 98 + - - Could not load data for - . - - Could not load data for - . - + + This week so far + Tento týden doposud + + src/app/shared/components/grafana/grafana.component.ts + 102 + - - Could not load data. - Could not load data. + + Last 7 days + Uplynulých 7 dnů + + src/app/shared/components/grafana/grafana.component.ts + 106 + - - Please check the cluster health. - Please check the cluster health. + + Previous month + Předchozí měsíc + + src/app/shared/components/grafana/grafana.component.ts + 110 + - - Current - Current + + This month so far + Tento měsíc doposud + + src/app/shared/components/grafana/grafana.component.ts + 114 + - - iSCSI Topology - Topologie iSCSI + + Last 30 days + Uplynulých 30 dnů + + src/app/shared/components/grafana/grafana.component.ts + 118 + - - Overview - Přehled + + Last 90 days + Uplynulých 90 dnů + + src/app/shared/components/grafana/grafana.component.ts + 122 + - - Targets - Cíle + + Last 6 months + Uplynulých 6 měsíců + + src/app/shared/components/grafana/grafana.component.ts + 126 + - - Must be greater than or equal to - . - - Je třeba, aby bylo vyšší nebo rovno - . - + + Last 1 year + Uplynulý 1 rok + + src/app/shared/components/grafana/grafana.component.ts + 130 + - - Must be less than or equal to - . - - Je třeba, aby bylo nižší nebo rovno - . - + + Previous year + Předchozí rok + + src/app/shared/components/grafana/grafana.component.ts + 134 + - - Quality of Service - Quality of Service + + This year so far + Tento rok doposud + + src/app/shared/components/grafana/grafana.component.ts + 138 + - - BPS Limit - BPS Limit + + Last 2 years + Uplynulé 2 roky + + src/app/shared/components/grafana/grafana.component.ts + 142 + - - The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + + Last 5 years + Uplynulých 5 let + + src/app/shared/components/grafana/grafana.component.ts + 146 + - - IOPS Limit - IOPS Limit + + Select a Language + Vyberte jazyk + + src/app/shared/components/language-selector/language-selector.component.html + 7 + - - The desired limit of IO operations per second. - The desired limit of IO operations per second. + + Clear notifications + Vyčistit oznámení + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + - - Read BPS Limit - Read BPS Limit + + Remove notification + Odebrat oznámení + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + + + + Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + + + + Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + - - The desired limit of read bytes per second. - The desired limit of read bytes per second. + + Duration: + Trvání: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + - - Read IOPS Limit - Read IOPS Limit + + There are no notifications. + Nejsou zde žádná oznámení. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + - - The desired limit of read operations per second. - The desired limit of read operations per second. + + The feature is not supported in the current Orchestrator. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - - Write BPS Limit - Write BPS Limit + + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - - The desired limit of write bytes per second. - The desired limit of write bytes per second. + + Your password will expire in less than 1 day. Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - - Write IOPS Limit - Write IOPS Limit + + Your password will expire in day(s). Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + - - The desired limit of write operations per second. - The desired limit of write operations per second. + + Refresh + Načíst znovu + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + - - BPS Burst - BPS Burst + + No items selected. + Nevybrány žádné položky. + + src/app/shared/components/select/select-messages.model.ts + 12 + - - The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + + Deselect item to select again + Aby položku bylo možné znovu vybrat, je třeba nejprve zrušit její výběr + + src/app/shared/components/select/select-messages.model.ts + 14 + - - IOPS Burst - IOPS Burst + + Selection limit reached + Dosažen limit výběru + + src/app/shared/components/select/select-messages.model.ts + 15 + - - The desired burst limit of IO operations. - The desired burst limit of IO operations. + + Filter tags + Filtrovat štítky + + src/app/shared/components/select/select-messages.model.ts + 17 + - - Read BPS Burst - Read BPS Burst + + Add badge + Přidat odznak + + src/app/shared/components/select/select-messages.model.ts + 18 + - - The desired burst limit of read bytes. - The desired burst limit of read bytes. + + There are no items available. + Nejsou k dispozici žádné položky. + + src/app/shared/components/select/select-messages.model.ts + 19 + + + + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + - - Read IOPS Burst - Read IOPS Burst + + Telemetry activation reminder muted + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + - - The desired burst limit of read operations. - The desired burst limit of read operations. + + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + + + + Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + + + + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + + + + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + + + + usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + + + + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + + + + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + + + + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + + + + Export + Exportovat + + src/app/shared/constants/app.constants.ts + 155 + + + + Import + + src/app/shared/constants/app.constants.ts + 157 + + + + Migrate + + src/app/shared/constants/app.constants.ts + 159 + - - Write BPS Burst - Write BPS Burst + + Add + Přidat + + src/app/shared/constants/app.constants.ts + 165 + - - The desired burst limit of write bytes. - The desired burst limit of write bytes. + + Set + + src/app/shared/constants/app.constants.ts + 166 + - - Write IOPS Burst - Write IOPS Burst + + Submit + Odeslat + + src/app/shared/constants/app.constants.ts + 167 + - - The desired burst limit of write operations. - The desired burst limit of write operations. + + Remove + Odebrat + + src/app/shared/constants/app.constants.ts + 170 + - - Issue - Issue + + Unset + + src/app/shared/constants/app.constants.ts + 171 + - - Progress - Progress + + Cancel + Storno + + src/app/shared/constants/app.constants.ts + 176 + - - Edit Mode - Edit Mode + + Preview + + src/app/shared/constants/app.constants.ts + 177 + - - Add Peer - Add Peer + + Move + + src/app/shared/constants/app.constants.ts + 178 + - - Edit Peer - Edit Peer + + Next + + src/app/shared/constants/app.constants.ts + 181 + - - Delete Peer - Delete Peer + + Back + Zpět + + src/app/shared/constants/app.constants.ts + 182 + - - Mode - Mode + + Clone + Klonovat + + src/app/shared/constants/app.constants.ts + 185 + - - Leader - Leader + + Copy + Kopírovat + + src/app/shared/constants/app.constants.ts + 186 + - - # Local - # Local + + Deep Scrub + Hloubková kontrola + + src/app/shared/constants/app.constants.ts + 187 + - - # Remote - # Remote + + Destroy + Zlikvidovat + + src/app/shared/constants/app.constants.ts + 188 + - - Health - Health + + Evict + + src/app/shared/constants/app.constants.ts + 189 + - - mirror peer - mirror peer + + Flatten + Zploštit + + src/app/shared/constants/app.constants.ts + 190 + - - {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + + Mark Down + Označit + + src/app/shared/constants/app.constants.ts + 191 + - - - pool mirror peer - - - pool mirror peer - + + Mark In + Označit + + src/app/shared/constants/app.constants.ts + 192 + - - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + + Mark Lost + Označit ztracené + + src/app/shared/constants/app.constants.ts + 193 + - - Cluster Name - Název klastru + + Mark Out + Odznačit + + src/app/shared/constants/app.constants.ts + 194 + + + + Protect + Ochránit + + src/app/shared/constants/app.constants.ts + 195 + - - CephX ID - CephX identif. + + Rename + Přejmenovat + + src/app/shared/constants/app.constants.ts + 197 + - - CephX ID... - CephX identif. … + + Restore + Obnovit + + src/app/shared/constants/app.constants.ts + 198 + - - Monitor Addresses - Adresy monitorů + + Reweight + Znovu vyvážit + + src/app/shared/constants/app.constants.ts + 199 + - - Comma-delimited addresses... - Čárkou oddělované adresy… + + Scrub + Kontrola + + src/app/shared/constants/app.constants.ts + 201 + - - CephX Key - CephX klíč + + Show + Zobrazit + + src/app/shared/constants/app.constants.ts + 202 + - - Base64-encoded key... - Klíč v base64 kódování… + + Move to Trash + Přesunout do koše + + src/app/shared/constants/app.constants.ts + 203 + - - The cluster name is not valid. - Název klastru není platný + + Unprotect + Zrušit ochranu + + src/app/shared/constants/app.constants.ts + 204 + - - The CephX ID is not valid. - CephX identif. není platný. + + Change + Změnit + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + + + + Enter Maintenance + + src/app/shared/constants/app.constants.ts + 207 + + + + Exit Maintenance + + src/app/shared/constants/app.constants.ts + 208 + + + + Authorize + + src/app/shared/constants/app.constants.ts + 209 + + + + Start Drain + + src/app/shared/constants/app.constants.ts + 211 + + + + Stop Drain + + src/app/shared/constants/app.constants.ts + 212 + + + + Resync + + src/app/shared/constants/app.constants.ts + 213 + - - The monitory address is not valid. - Adresa monitoru není platná. + + Recreate + Znovuvytvořit + + src/app/shared/constants/app.constants.ts + 215 + - - CephX key must be base64 encoded. - Je třeba, aby CephX klíč byl v kódování base64. + + Expire + Ukončit platnost + + src/app/shared/constants/app.constants.ts + 216 + + + + Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + + + + Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + + + + Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + + + + Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + + + + Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + + + + Promote + + src/app/shared/constants/app.constants.ts + 224 + + + + Demote + + src/app/shared/constants/app.constants.ts + 225 + + + + Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + + + + Activate + + src/app/shared/constants/app.constants.ts + 229 + + + + Deactivate + + src/app/shared/constants/app.constants.ts + 230 + + + + Attach + + src/app/shared/constants/app.constants.ts + 232 + + + + Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + - - Edit pool mirror mode - Upravit režim zrcadlení fondu + + Deleted + Smazáno + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + + Added + Přidáno + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + - - Peer clusters must be removed prior to disabling mirror. - Před vypnutím zrcadlení je třeba odebrat klastry-protějšky. + + Removed + Odebráno + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + - - Site Name - Site Name + + Edited + Upraveno + + src/app/shared/constants/app.constants.ts + 298 + - - Instance - Instance + + Canceled + Zrušeno + + src/app/shared/constants/app.constants.ts + 299 + - - Import Bootstrap Token - Import Bootstrap Token + + Previewed + + src/app/shared/constants/app.constants.ts + 300 + - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + + Moved + Přesunuto + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + - - Direction - Direction + + Cloned + Naklonováno + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + - - Token - Token + + Copied + Zkopírováno + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + - - Generated token... - Generated token... + + Deep Scrubbed + + src/app/shared/constants/app.constants.ts + 306 + - - At least one pool is required. - At least one pool is required. + + Destroyed + Zlikvidováno + + src/app/shared/constants/app.constants.ts + 307 + - - The token is invalid. - The token is invalid. + + Flattened + Zploštěno + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + - - Create Bootstrap Token - Create Bootstrap Token + + Marked Down + + src/app/shared/constants/app.constants.ts + 309 + - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - + + Marked In + + src/app/shared/constants/app.constants.ts + 310 + - - Generate - Generate + + Marked Lost + Označeno jako ztracené + + src/app/shared/constants/app.constants.ts + 311 + - - Close - Zavřít + + Marked Out + + src/app/shared/constants/app.constants.ts + 312 + - - Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + + Protected + Chráněno + + src/app/shared/constants/app.constants.ts + 313 + - - Required rules for passwords: - Required rules for passwords: + + Purged + Vyčištěno + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + - - Must contain at least - characters - - Must contain at least - characters - + + Renamed + Přejmenováno + + src/app/shared/constants/app.constants.ts + 315 + - - Must not be the same as the previous one - Must not be the same as the previous one + + Restored + Obnoveno + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + - - Cannot contain the username - Cannot contain the username + + Reweighted + + src/app/shared/constants/app.constants.ts + 317 + - - Cannot contain any configured keyword - Cannot contain any configured keyword + + Rolled back + Vzato zpět + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + - - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + + Scrubbed + + src/app/shared/constants/app.constants.ts + 319 + - - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + + Showed + Zobrazeno + + src/app/shared/constants/app.constants.ts + 320 + - - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + + Moved to Trash + Přesunout do koše + + src/app/shared/constants/app.constants.ts + 321 + - - erasure code profile - erasure code profile + + Unprotected + Ochrana zrušena + + src/app/shared/constants/app.constants.ts + 322 + - - crush rule - crush rule + + Recreated + Znovu vytvořeno + + src/app/shared/constants/app.constants.ts + 326 + - - Pool type - Typ fondul + + Expired + Platnost skončila + + src/app/shared/constants/app.constants.ts + 327 + + + + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + + + + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + + + + Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + + + + Close + Zavřít + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + + + + Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + + + + Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + + + + Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + + + + Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + + + + Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + + + + Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + - - -- Select a pool type -- - -- Vybrat typ fondu -- + + Clear filters + + src/app/shared/datatable/table/table.component.html + 160 + - - Applications - Aplikace + + selected + vybráno + + src/app/shared/datatable/table/table.component.html + 221 + + X selected - - Max bytes - Nejvýše bajtů + + found + nalezeno + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found - - Leave it blank or specify 0 to disable this quota. - Pro vypnutí této kvóty nevyplňujte nebo zadejte 0 (nulu). + + total + celkem + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total + + + + + src/app/shared/datatable/table/table.component.html + 328 + + + + + + src/app/shared/datatable/table/table.component.html + 328,330 + - - A valid quota should be greater than 0. - Platná kvóta by měla být vyšší než 0 (nula). + + Expand/Collapse Row + + src/app/shared/datatable/table/table.component.html + 349 + - - Max objects - Nejvýše objektů + + Failed to load data. + Data se nepodařilo načíst + + src/app/shared/datatable/table/table.component.ts + 663 + - - The chosen Ceph pool name is already in use. - Zvolený název pro Ceph fond je už používán. + + Loading form data... + + src/app/shared/directives/form-loading.directive.ts + 20 + - - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + + Form data could not be loaded. + + src/app/shared/directives/form-loading.directive.ts + 27 + - - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + + Size has to be at least or more + + src/app/shared/forms/cd-validators.ts + 439 + - - PG Autoscale - PG Autoscale + + Size has to be at most or less + + src/app/shared/forms/cd-validators.ts + 459 + + + + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title + + + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + + + + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + + + + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + - - Placement groups - Skupiny umístění + + Yes + Ano + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + - - Calculation help - Nápověda k výpočtu + + No + Ne + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + - - At least one placement group is needed! - Je třeba alespoň jedné skupiny umístění! + + in %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + - - Your cluster can't handle this many PGs. Please recalculate the PG amount needed. - Váš klastr nemůže obsloužit tolik skupin umístění. Přepočítejte potřebné množství skupin umístění. + + %s ago + + src/app/shared/pipes/relative-date.pipe.ts + 9 + - - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + + a few seconds + + src/app/shared/pipes/relative-date.pipe.ts + 10 + - - Replicated size - Replikovaná velikost + + %d seconds + + src/app/shared/pipes/relative-date.pipe.ts + 11 + - - Minimum: - - - Nejméně: - - + + a minute + + src/app/shared/pipes/relative-date.pipe.ts + 12 + - - Maximum: - - - Nejvíce: - - + + %d minutes + + src/app/shared/pipes/relative-date.pipe.ts + 13 + + + + an hour + + src/app/shared/pipes/relative-date.pipe.ts + 14 + - - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + + %d hours + + src/app/shared/pipes/relative-date.pipe.ts + 15 + - - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + + a day + + src/app/shared/pipes/relative-date.pipe.ts + 16 + - - EC Overwrites - EC přebití + + %d days + + src/app/shared/pipes/relative-date.pipe.ts + 17 + - - CRUSH - CRUSH + + a week + + src/app/shared/pipes/relative-date.pipe.ts + 18 + - - Erasure code profile - Profil mazacího kódu + + %d weeks + + src/app/shared/pipes/relative-date.pipe.ts + 19 + - - -- No erasure code profile available -- - -- Žádný profil mazacího kódu -- + + a month + + src/app/shared/pipes/relative-date.pipe.ts + 20 + - - -- Select an erasure code profile -- - -- Vyberte profil mazacího kódu -- + + %d months + + src/app/shared/pipes/relative-date.pipe.ts + 21 + - - This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + + a year + + src/app/shared/pipes/relative-date.pipe.ts + 22 + - - Profile - Profile + + %d years + + src/app/shared/pipes/relative-date.pipe.ts + 23 + - - Used by pools - Used by pools + + Required rules for passwords: + + src/app/shared/services/password-policy.service.ts + 22 + - - Profile is not in use. - Profile is not in use. + + Must contain at least characters + + src/app/shared/services/password-policy.service.ts + 24 + - - Crush ruleset - Sada pravidel crush + + Must not be the same as the previous one + + src/app/shared/services/password-policy.service.ts + 25 + - - A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + + Cannot contain the username + + src/app/shared/services/password-policy.service.ts + 26 + - - There are no rules. - There are no rules. + + Cannot contain any configured keyword + + src/app/shared/services/password-policy.service.ts + 27 + - - -- Select a crush rule -- - -- Vybrat crush pravidlo -- + + Cannot contain any repetitive characters e.g. "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - - This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + + Cannot contain any sequential characters e.g. "abc" + + src/app/shared/services/password-policy.service.ts + 29 + - - Crush rule - Crush pravidlo + + Must consist of characters from the following groups: + * Alphabetic a-z, A-Z + * Numbers 0-9 + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Any other characters (signs) + + src/app/shared/services/password-policy.service.ts + 30,34 + - - Crush steps - Crush kroky + + Your matcher seems to match no currently defined rule or active alert. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + - - Rule is not in use. - Rule is not in use. + + no active alerts + žádné aktivní výstrahy + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + - - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + + 1 active alert + Jedna aktivní výstraha + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - Compression - Komprese + + active alerts + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + - - Algorithm - Algoritmus + + Matches 1 rule + Odpovídá jednomu pravidlu + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - - Minimum blob size - Minimální velikost blobu + + Matches rules + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - e.g., 128KiB - např. 128 KiB + + with . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + - - Maximum blob size - Nejvyšší velikost blobu + + Quality of Service + Kvalita služby + + src/app/shared/services/rbd-configuration.service.ts + 23 + - - e.g., 512KiB - např. 512 KiB + + BPS Limit + Limit BPS + + src/app/shared/services/rbd-configuration.service.ts + 28 + - - Ratio - Poměr + + The desired limit of IO bytes per second. + Požadovaný limit vst./výstup. bajtů za sekundu. + + src/app/shared/services/rbd-configuration.service.ts + 29 + - - Compression ratio - Kompresní poměr + + IOPS Limit + Limit vst/výstup. operací / s + + src/app/shared/services/rbd-configuration.service.ts + 34 + - - -- No erasure compression algorithm available -- - -- Žádný algoritmus komprese mazání -- + + The desired limit of IO operations per second. + Požadovaný limit vst./výstup. operací za sekundu. + + src/app/shared/services/rbd-configuration.service.ts + 35 + - - Value should be greater than 0 - Hodnota by měla být vyšší než nula + + Read BPS Limit + Limit BPS čtení + + src/app/shared/services/rbd-configuration.service.ts + 40 + - - Value should be less than the maximum blob size - Hodnota by měla být nižší než maximální velikost blobu + + The desired limit of read bytes per second. + Požadovaný limit čtení bajtů za sekundu. + + src/app/shared/services/rbd-configuration.service.ts + 41 + - - Value should be greater than the minimum blob size - Hodnota by měla být vyšší než nejnižší velikost blobu + + Read IOPS Limit + Limit IOPS čtení + + src/app/shared/services/rbd-configuration.service.ts + 46 + - - Value should be between 0.0 and 1.0 - Hodnota by měla být z rozmezí 0.0 až 1.0 + + The desired limit of read operations per second. + Požadovaný limit operací čtení za sekundu. + + src/app/shared/services/rbd-configuration.service.ts + 47 + - - The value should be greater or equal to 0 - Hodnota by měla být vyšší nebo rovna 0 + + Write BPS Limit + Limit BPS zápisu + + src/app/shared/services/rbd-configuration.service.ts + 52 + - - Data Protection - Data Protection + + The desired limit of write bytes per second. + Požadovaný limit zápisu bajtů za sekundu. + + src/app/shared/services/rbd-configuration.service.ts + 53 + - - Applications - Applications + + Write IOPS Limit + Limit IOPS zápisu + + src/app/shared/services/rbd-configuration.service.ts + 58 + - - PG Status - PG Status + + The desired limit of write operations per second. + Požadovaný limit operací čtení za sekundu. + + src/app/shared/services/rbd-configuration.service.ts + 59 + - - Crush Ruleset - Crush Ruleset + + BPS Burst + BPS dávka + + src/app/shared/services/rbd-configuration.service.ts + 64 + - - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + + The desired burst limit of IO bytes. + Požadovaný limit dávky bajtů vstup/výstupu. + + src/app/shared/services/rbd-configuration.service.ts + 65 + - - Pools List - Seznam fondů + + IOPS Burst + IOPS dávka + + src/app/shared/services/rbd-configuration.service.ts + 70 + - - Cache Mode - Cache Mode + + The desired burst limit of IO operations. + Požadovaný limit dávky vst./výstup. operací. + + src/app/shared/services/rbd-configuration.service.ts + 71 + - - Min Evict Age - Min Evict Age + + Read BPS Burst + Dávka BPS čtení + + src/app/shared/services/rbd-configuration.service.ts + 76 + - - Min Flush Age - Min Flush Age + + The desired burst limit of read bytes. + Požadovaný limit dávky bajtů čtení. + + src/app/shared/services/rbd-configuration.service.ts + 77 + - - Target Max Bytes - Target Max Bytes + + Read IOPS Burst + Dávka IOPS čtení + + src/app/shared/services/rbd-configuration.service.ts + 82 + - - Target Max Objects - Target Max Objects + + The desired burst limit of read operations. + Požadovaný limit dávky čtení bajtů. + + src/app/shared/services/rbd-configuration.service.ts + 83 + - - Cache Tiers Details - Podrobnosti o stupních mezipaměti + + Write BPS Burst + Dávka BPS zápisu + + src/app/shared/services/rbd-configuration.service.ts + 88 + - - EC Profile - EC Profile + + The desired burst limit of write bytes. + Požadovaný limit bajtů dávky zápisu. + + src/app/shared/services/rbd-configuration.service.ts + 89 + - - Plugin - Zásuvný modul + + Write IOPS Burst + Dávka IOPS zápisu + + src/app/shared/services/rbd-configuration.service.ts + 94 + - - Data chunks (k) - Shluky dat (k) + + The desired burst limit of write operations. + Požadovaný limit dávky operace zápisu. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - - Coding chunks (m) - Shluky kódování (m) + + Failed to + + src/app/shared/services/task-message.service.ts + 27 + - - Crush failure domain - Doména selhání crush + + Executing + Vykonává se + + src/app/shared/services/task-message.service.ts + 54 + - - Crush root - Kořen crush + + execute + vykonat + + src/app/shared/services/task-message.service.ts + 54 + - - Crush device class - Třída crush zařízení + + Executed + Vykonáno + + src/app/shared/services/task-message.service.ts + 54 + - - Available OSDs: - - - Available OSDs: - - + + unknown task + neznámý úkol + + src/app/shared/services/task-message.service.ts + 58 + - - Directory - Složka + + Creating + Vytváří se + + src/app/shared/services/task-message.service.ts + 67 + - - The name can only consist of alphanumeric characters, dashes and underscores. - Název může být tvořen pouze písmeny a číslicemi, dále ještě spojovníky a podtržítky. + + create + vytvořit + + src/app/shared/services/task-message.service.ts + 67 + - - The chosen erasure code profile name is already in use. - Zvolený název pro profil mazacího kódu je už používán. + + Updating + Aktualizuje se + + src/app/shared/services/task-message.service.ts + 68 + - - Must be equal to or greater than 2. - Je třeba, aby bylo 2 a více. + + update + aktualizovat + + src/app/shared/services/task-message.service.ts + 68 + - - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + + Deleting + Maže se + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + - - For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + + Adding + Přidávání + + src/app/shared/services/task-message.service.ts + 70 + - - K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + + add + přidat + + src/app/shared/services/task-message.service.ts + 70 + - - Distribution factor: - - - Distribution factor: - - + + Removing + Odebírání + + src/app/shared/services/task-message.service.ts + 71 + - - Must be equal to or greater than 1. - Je třeba, aby bylo 1 a více. + + remove + odebrat + + src/app/shared/services/task-message.service.ts + 71 + - - Durability estimator (c) - Odhadování odolnosti (c) + + Importing + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + - - C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + + import + + src/app/shared/services/task-message.service.ts + 72 + - - Helper chunks (d) - Helper chunks (d) + + Imported + + src/app/shared/services/task-message.service.ts + 72 + + + + activate + + src/app/shared/services/task-message.service.ts + 75 + + + + Activated + + src/app/shared/services/task-message.service.ts + 76 + + + + deactivate + + src/app/shared/services/task-message.service.ts + 80 + + + + Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - - Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - - D is automatically updated on k and m changes - D is automatically updated on k and m changes + + RBD snapshot '@' + + src/app/shared/services/task-message.service.ts + 112 + - - D can be set from - to - - - D can be set from - to - - + + mirroring site name + + src/app/shared/services/task-message.service.ts + 116 + - - D can only be set to - - - D can only be set to - - + + bootstrap token + + src/app/shared/services/task-message.service.ts + 117 + - - D has to be greater than k ( - ). - - D has to be greater than k ( - ). - + + mirror mode for pool '' + + src/app/shared/services/task-message.service.ts + 118 + - - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + + mirror peer for pool '' + + src/app/shared/services/task-message.service.ts + 119 + - - Locality (l) - Umístění (l) + + all dashboards + všechny přehledy + + src/app/shared/services/task-message.service.ts + 123 + - - Locality groups: - - - Locality groups: - - + + Identifying + + src/app/shared/services/task-message.service.ts + 133 + - - Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + + identify + + src/app/shared/services/task-message.service.ts + 133 + - - Crush Locality - Lokalita crush + + Identified + + src/app/shared/services/task-message.service.ts + 133 + - - None - Žádné + + device '' on host '' + + src/app/shared/services/task-message.service.ts + 134 + - - Scalar mds - Scalar mds + + OSDs (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - - Technique - Technika + + Name is already used by . + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - Packetsize - Velikostpaketu + + is busy. + + src/app/shared/services/task-message.service.ts + 199 + - - Crush Rule - Crush Rule + + contains snapshots. + + src/app/shared/services/task-message.service.ts + 200 + - - Root - Root + + Cloning + Klonuje se + + src/app/shared/services/task-message.service.ts + 204 + - - Failure domain type - Failure domain type + + clone + klonovat + + src/app/shared/services/task-message.service.ts + 204 + - - Device class - Device class + + Snapshot of must be protected. + + src/app/shared/services/task-message.service.ts + 208 + - - No applications added - No applications added + + Copying + Kopíruje se + + src/app/shared/services/task-message.service.ts + 212 + - - Applications limit reached - Applications limit reached + + copy + zkopírovat + + src/app/shared/services/task-message.service.ts + 212 + - - A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + + Flattening + Zploštění + + src/app/shared/services/task-message.service.ts + 219 + - - Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + + flatten + zploštit + + src/app/shared/services/task-message.service.ts + 219 + - - Maximum length is 128 characters - Maximum length is 128 characters + + Cannot unprotect because it contains child images. + + src/app/shared/services/task-message.service.ts + 234,236 + - - Filter or add applications' - Filter or add applications' + + Cannot delete because it's protected. + + src/app/shared/services/task-message.service.ts + 243 + - - Add application - Add application + + Rolling back + Bere se zpět + + src/app/shared/services/task-message.service.ts + 248 + - - The name of the node under which data should be placed. - The name of the node under which data should be placed. + + rollback + vzít zpět + + src/app/shared/services/task-message.service.ts + 249 + - - The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + + Moving + Přesouvá se + + src/app/shared/services/task-message.service.ts + 256 + - - Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + + move + přesunout + + src/app/shared/services/task-message.service.ts + 256 + - - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + + image '' to trash + + src/app/shared/services/task-message.service.ts + 257 + - - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + + Could not find image. + Obraz se nedaří najít. + + src/app/shared/services/task-message.service.ts + 259 + - - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + + Restoring + Obnovuje se + + src/app/shared/services/task-message.service.ts + 263 + - - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + + restore + obnovit + + src/app/shared/services/task-message.service.ts + 263 + - - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. - - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. - - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + + image '' into '' + + src/app/shared/services/task-message.service.ts + 264 + - - Group the coding and data chunks into sets of size locality. For instance, - for k=4 and m=2, when locality=3 two groups of three are created. Each set can - be recovered without reading chunks from another set. - Group the coding and data chunks into sets of size locality. For instance, - for k=4 and m=2, when locality=3 two groups of three are created. Each set can - be recovered without reading chunks from another set. + + Image name '' is already in use. + + src/app/shared/services/task-message.service.ts + 266 + - - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + + image '' + + src/app/shared/services/task-message.service.ts + 271 + - - The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + + Purging + Čistí se + + src/app/shared/services/task-message.service.ts + 274 + - - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + + purge + vyčistit + + src/app/shared/services/task-message.service.ts + 274 + - - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + + all pools + všechny fondy + + src/app/shared/services/task-message.service.ts + 276 + - - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + + images from + + src/app/shared/services/task-message.service.ts + 280 + - - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + + Cannot disable mirroring because it contains a peer. + Zrcadlení nelze vypnout protože obsahuje protějšek. + + src/app/shared/services/task-message.service.ts + 303 + - - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + + host '' + + src/app/shared/services/task-message.service.ts + 488 + - - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + + pool '' + + src/app/shared/services/task-message.service.ts + 496 + - - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + + erasure code profile '' + + src/app/shared/services/task-message.service.ts + 500 + - - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + + crush rule '' + + src/app/shared/services/task-message.service.ts + 504 + - - Set the directory name from which the erasure code plugin is loaded. - Set the directory name from which the erasure code plugin is loaded. + + target '' + + src/app/shared/services/task-message.service.ts + 508 + + + + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + + + + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + + + + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + + + + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + + + + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + + + + NFS ':' + + src/app/shared/services/task-message.service.ts + 531,533 + + + + service '' + + src/app/shared/services/task-message.service.ts + 537 + + + + '' + + src/app/shared/services/task-message.service.ts + 552 + + + + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + + + + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + + + + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + + + + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + + + + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.de-DE.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.de-DE.xlf index 4ffb171a092..78c4005f1fe 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.de-DE.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.de-DE.xlf @@ -1,6115 +1,20397 @@ - - + + - - Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + + Close + Schließen + + node_modules/src/ngb-config.ts + 13 + + + + HH + HH + + node_modules/src/ngb-config.ts + 13 + + + + Close + Schließen + + node_modules/src/ngb-config.ts + 13 + + + + «« + «« + + node_modules/src/ngb-config.ts + 13 + + + + Select month + Monat wählen + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + Previous month + Vormonat + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Slide of + Folie von + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader + + + Hours + Stunden + + node_modules/src/ngb-config.ts + 13 + + + + « + « + + node_modules/src/ngb-config.ts + 13 + + + + Previous + Zurück + + node_modules/src/ngb-config.ts + 13 + + + + MM + MM + + node_modules/src/ngb-config.ts + 13 + + + + » + » + + node_modules/src/ngb-config.ts + 13 + + + + Select year + Jahr wählen + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + Next month + Folgemonat + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + + + + Next + Weiter + + node_modules/src/ngb-config.ts + 13 + + + + Minutes + Minuten + + node_modules/src/ngb-config.ts + 13 + + + + »» + »» + + node_modules/src/ngb-config.ts + 13 + + + + Increment hours + Stunden erhöhen + + node_modules/src/ngb-config.ts + 13 + + + + First + Erste(r/s) + + node_modules/src/ngb-config.ts + 13 + + + + Previous + Zurück + + node_modules/src/ngb-config.ts + 13 + + + + Decrement hours + Stunden verringern + + node_modules/src/ngb-config.ts + 13 + + + + Next + Weiter + + node_modules/src/ngb-config.ts + 13 + + + + Increment minutes + Minuten erhöhen + + node_modules/src/ngb-config.ts + 13 + + + + Last + Letzte(r/s) + + node_modules/src/ngb-config.ts + 13 + + + + Decrement minutes + Minuten verringern + + node_modules/src/ngb-config.ts + 13 + + + + SS + SS + + node_modules/src/ngb-config.ts + 13 + + + + Seconds + Sekunden + + node_modules/src/ngb-config.ts + 13 + + + + Increment seconds + Sekunden erhöhen + + node_modules/src/ngb-config.ts + 13 + + + + Decrement seconds + Sekunden verringern + + node_modules/src/ngb-config.ts + 13 + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + + + + node_modules/src/ngb-config.ts + 13 + + + + Block Pool is not configured + Block Pool ist nicht konfiguriert + + src/app/ceph/block/block.module.ts + 121 + + + + Configure Default pool + Standard-Pool konfigurieren + + src/app/ceph/block/block.module.ts + 122 + + + + Block Mirroring is not configured + Block-Spiegelung ist nicht konfiguriert + + src/app/ceph/block/block.module.ts + 181 + + + + Configure Block Mirroring + Block-Spiegelung konfigurieren + + src/app/ceph/block/block.module.ts + 182 + + + + This will create "rbd-mirror" service and a replicated Block pool + Ein "rbd-mirror"-Dienst wird erstellt und ein replizierter Block-Pool wird erzeugt + + src/app/ceph/block/block.module.ts + 183 + + + + NVMe/TCP Gateway not configured + NVMe/TCP Gateway nicht konfiguriert + + src/app/ceph/block/block.module.ts + 236 + + + + Configure NVMe/TCP + NVMe/TCP konfigurieren + + src/app/ceph/block/block.module.ts + 237 + - - Access Denied - Access Denied + + Must be greater than or equal to . + Muss größer oder gleich sein. + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - - Name - Name + + Must be less than or equal to . + Muss kleiner oder gleich sein. + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + - - Created - Created + + Overview + Übersicht + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + - - Enabled - Enabled + + Targets + Ziele + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + - - Updated config option - - - Updated config option - - + + iSCSI Topology + iSCSI-Topologie + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + - + Name Name + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + - - Values - Werte - - - Description - Beschreibung - - - Long description - Detaillierte Beschreibung + + Current + Aktuell + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + - + Default Standard + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + - - Daemon default - Daemon-Standard - - - Services - Services + + Discovery Authentication + Ermittlungsauthentifizierung + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + - - -- Default -- - -- Standard -- + + User + Benutzer + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + - - true - wahr + + This field is required. + Dies ist ein Pflichtfeld. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + - - false - falsch + + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Benutzernamen müssen zwischen 8 und 64 Zeichen lang sein und dürfen die alphanumerischen Zeichen '.', '@', '-', '_' oder ':' enthalten. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + - - The entered value is too high! It must not be greater than - . - - Der eingegebene Wert ist zu hoch! Er darf nicht größer als - sein. - + + Password + Passwort + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + - - The entered value is too low! It must not be lower than - . - - Der eingegebene Wert ist zu niedrig! Er darf nicht kleiner als - sein. - + + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Passwörter müssen zwischen 12 und 16 Zeichen lang sein und dürfen die alphanumerischen Zeichen '@', '-', '_' oder '/' enthalten. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + - - Level - Level + + Mutual User + Gemeinsamer Benutzer + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + - - Service - Service + + Mutual Password + Gemeinsames Passwort + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + - - Source - Source + + Updated discovery authentication + Ermittlungsauthentifizierung aktualisiert + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + + + + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title - - Modified - Modified + + Target IQN + Ziel-IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + - - Description - Description + + IQN has wrong pattern. + IQN hat ein fehlerhaftes Muster. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + - - Current value - Current value + + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + Eine IQN hat die folgende Notation 'iqn.$jahr-$monat.$umkehradresse:$definierterName' + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + - - Default - Default + + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Zum Beispiel: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + - - Editable - Editable + + More information + Weitere Informationen + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + - - CRUSH map viewer - CRUSH-Betrachter + + This target has modified advanced settings. + Erweiterte Einstellungen bei diesem Ziel wurden geändert. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + - - host - host + + Portals + Portale + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + - - - - - - - - - - form title + + Add portal + Portal hinzufügen + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - - Hostname - Hostname + + At least gateways are required. + Mindestens Gateways sind erforderlich. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + - - This field is required. - Dies ist ein Pflichtfeld. + + Images + Images + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - - The chosen hostname is already in use. - Der ausgewählte Hostname wird bereits verwendet. + + Backstore: .  + Backstore: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + - - The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + + This image has modified settings. + Einstellungen bei diesem Image wurden geändert. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + - - Hostname - Hostname + + Duplicated LUN numbers. + Doppelte LUN-Nummern. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + - - Labels - Labels + + Duplicated WWN. + Doppelte WWN. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + - - Version - Version + + Add image + Image hinzufügen + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + - - Edit Host: - - - Edit Host: - - + + ACL authentication + ACL-Authentifizierung + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + - - There are no labels. - There are no labels. + + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Benutzernamen müssen zwischen 8 und 64 Zeichen lang sein und dürfen die alphanumerischen Zeichen '.', '@', '-', '_' oder ':' enthalten. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + - - Filter or add labels - Filter or add labels + + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Passwörter müssen zwischen 12 und 16 Zeichen lang sein und dürfen die alphanumerischen Zeichen '@', '-', '_' oder '/' enthalten. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + - - Add label - Add label + + Initiators + Initiatoren + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + - - Edit Host - Edit Host + + Initiator + Initiator + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + - - Updated Host " - " - - Updated Host " - " - + + Client IQN + Client-IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + - - Hosts List - Liste mit Hosts + + Initiator IQN needs to be unique. + Initiator-IQN muss eindeutig sein. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + - - Overall Performance - Gesamtleistung + + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Benutzernamen müssen zwischen 8 und 64 Zeichen lang sein und dürfen die alphanumerischen Zeichen '.', '@', '-', '_' oder ':' enthalten. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + - - Devices - Laufwerke + + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Passwörter müssen zwischen 12 und 16 Zeichen lang sein und dürfen die alphanumerischen Zeichen '@', '-', '_' oder '/' enthalten. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + - - Cluster Logs - Clusterprotokolle + + Initiator belongs to a group. Images will be configure in the group. + Der Initiator gehört zu einer Gruppe. Images werden in der Gruppe konfiguriert. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + - - Audit Logs - Revisionsprotokoll + + No items added. + Keine Elemente hinzugefügt. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + - - Priority: - Priorität: + + Add initiator + Initiator hinzufügen + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + - - Keyword: - Schlüsselwort: + + Groups + Gruppen + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + - - Date: - Datum: + + Group + Gruppe + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + - - Time range: - Zeitraum: + + Name + Name + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + - - No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + + Add group + Gruppe hinzufügen + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + - - Reset filter. - Reset filter. + + There are no portals available. + Keine Portale verfügbar. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + - - Updated options for module ' - '. - - Updated options for module ' - '. - - - - Edit Manager module - Manager-Modul bearbeiten - - - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - Der eingegebene Wert ist kein gültiger UUID, z. B.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - - - The entered value needs to be a valid IP address. - Der eingegebene Wert muss eine gültige IP-Adresse sein. + + There are no images available. + Keine Images verfügbar. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + - - The entered value is too high! It must be lower or equal to - . - - Der eingegebene Wert ist zu hoch! Er muss kleiner als - sein oder diesem Wert entsprechen. - + + There are no images available. Please make sure you add an image to the target. + Keine Images verfügbar. Fügen Sie dem Ziel ein Image hinzu. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + - - The entered value is too low! It must be greater or equal to - . - - Der eingegebene Wert ist zu niedrig! Er muss größer als - sein oder diesem Wert entsprechen. - + + There are no initiators available. Please make sure you add an initiator to the target. + Keine Initiatoren verfügen. Fügen Sie dem Ziel einen Initiator hinzu. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + - - The entered value needs to be a number. - Der eingegebene Wert muss eine Zahl sein. + + target + Ziel + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + - - The entered value needs to be a number or decimal. - Der eingegebene Wert muss eine Zahl oder Dezimalzahl sein. + + Configure + Konfigurieren + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + - - Always-On - Always-On + + Changing these parameters from their default values is usually not necessary. + Eine Änderung dieser Parameter von ihren Standardwerten ist in der Regel nicht erforderlich. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + - - Edit - Edit + + Identifier + Bezeichner + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + - - Enable - Enable + + lun + LUN + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + - - Disable - Disable + + wwn + WWN + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + - - This Manager module is always on. - This Manager module is always on. + + Settings + Einstellungen + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + - - Reconnecting, please wait ... - Reconnecting, please wait ... + + Backstore + Backstore + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + - - Rank - Rank + + Advanced Settings + Erweiterte Einstellungen + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + - - Public Address - Public Address + + iSCSI Targets not available + iSCSI-Ziele nicht verfügbar + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - - Open Sessions - Open Sessions + + Please consult the on how to configure and enable the iSCSI Targets management functionality. + Lesen Sie zum Konfigurieren und Aktivieren der Verwaltungsfunktion für iSCSI-Ziele. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + - - Status - Status + + Available information: + Verfügbare Informationen: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + - - In Quorum - In Quorum + + Discovery authentication + Ermittlungsauthentifizierung + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + - - Not In Quorum - Nicht in Quorum + + Target + Ziel + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + - - Cluster ID - Cluster-ID + + Portals + Portale + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + - - monmap modified - Monmap geändert + + Images + Images + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + - - monmap epoch - Monmap-Epoche + + # Sessions + # Sitzungen + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + - - quorum con - quorum con + + Unavailable gateway(s) + Nicht verfügbare(s) Gateway(s) + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + - - quorum mon - quorum mon + + Target has active sessions + Ziel hat aktive Verbindungen + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + - - required con - erforderliche Verbindung + + iSCSI target + iSCSI target + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + - - required mon - erforderliche Überwachung + + Gateways + Gateways + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + - - OSDs - OSDs + + State + Status + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + - - Encryption - Encryption + + # Targets + # Ziele + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + - - Shared devices - Geteilte Laufwerke + + Pool + Pool + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + - - Configuration - Konfiguration + + Image + Image + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + - - Features - Funktionen + + Backstore + Backstore + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + - - WAL slots - WAL Slots + + Read Bytes + Bytes für Lesevorgang + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + - - How many OSDs per WAL device. - Wie viele OSDs pro WAL-Laufwerk. + + Write Bytes + Bytes für Schreibvorgang + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + - - Specify 0 to let Orchestrator backend decide it. - Geben Sie 0 an, um das Orchestrator-Backend entscheiden zu lassen. + + Read Ops + Lesevorgänge + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + - - Value should be greater than or equal to 0 - Der Wert sollte größer als oder gleich 0 sein + + Write Ops + Schreibvorgänge + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + - - DB slots - DB Slots + + A/O Since + A/O seit + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + - - How many OSDs per DB device. - Wie viele OSDs pro DB-Laufwerk. + + Create Bootstrap Token + Bootstrap-Token erstellen + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - - out - out + + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + Um ein Bootstrap-Token zu erstellen, das von einem Peer-Site-Cluster importiert werden kann, geben Sie den Namen der lokalen Site an, wählen Sie, für welche Pools die Spiegelung aktiviert sein soll und klicken Sie auf   Erzeugen. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + - - in - in + + Site Name + Site-Name + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + - - down - down + + Name... + Name... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + - - Mark - Mark + + Pools + Pools + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + - - OSD lost - OSD lost + + At least one pool is required. + Mindestens ein Pool ist erforderlich. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + - - marked lost - marked lost + + Generate + Erzeugen + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + - - Purge - Purge + + Token + Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + - - OSD - OSD + + Generated token... + Erzeugtes Token... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + - - purged - purged + + Close + Schließen + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + - - destroy - destroy + + Import Bootstrap Token + Bootstrap-Token importieren + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - - destroyed - destroyed + + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + Um ein Bootstrap-Token zu importieren, das von einem Peer-Site-Cluster erstellt wurde, geben Sie den Namen der lokalen Site an, wählen Sie, für welche Pools die Spiegelung aktiviert sein soll, geben Sie das generierte Token an und klicken Sie auf Importieren. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + - - Flags - Flags + + Direction + Richtung + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + - - Recovery Priority - Recovery Priority + + The token is invalid. + Der Token ist ungültig. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + - - PG scrub - PG scrub + + Instance + Instanz + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + - - Host - Host - - - Status - Status + + Hostname + Hostname + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + - - Device class - Device class + + Version + Version + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + - - PGs - PGs + + Health + Integrität + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + + + + Issues () + Probleme () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + + + + Syncing () + Synchronisiere () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + + + + Ready () + Bereit () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + - - Size - Size + + Issue + Problem + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + - - Usage - Usage + + Progress + Fortschritt + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + + + + Bytes per second + Bytes pro Sekunde + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + + + + Entries behind primary + Anzahl Einträge im Rückstand zu primär + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + - - Read bytes - Read bytes + + Description + Beschreibung + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + - - Write bytes - Write bytes + + Daemons + Daemons + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + - - Read ops - Read ops + + Create Bootstrap Token + Bootstrap-Token erstellen + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + - - Write ops - Write ops + + Import Bootstrap Token + Bootstrap-Token importieren + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + - - Edit OSD: - - - Edit OSD: - - + + Edit pool mirror mode + Spiegelungsmodus für Pool bearbeiten + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - - Edit OSD - Edit OSD + + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + Wählen Sie zum Bearbeiten des Spiegelungsmodus für den Pool  einen neuen Modus aus der Liste und klicken Sie auf   Aktualisieren. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + - - Updated OSD ' - ' - - Updated OSD ' - ' - + + Mode + Modus + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + - - Mark OSD - - - Mark OSD - - + + Peer clusters must be removed prior to disabling mirror. + Vor dem Deaktivieren der Spiegelung müssen Peer-Cluster entfernt werden. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + - - Mark - - - Mark - - + + Disabled + Deaktiviert + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + - - delete - delete + + {VAR_SELECT, select, edit {Edit} other {Add}} + {VAR_SELECT, select, edit {bearbeiten} other {hinzufügen} } + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - deleted - deleted + + pool mirror peer + Peer für Poolspiegelung + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - OSDs List - OSD-Liste + + the pool mirror peer attributes for pool and click Submit. + Sie können die Pool-Spiegelungs-Peer-Attribute für Pool und dann auf Absenden klicken. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + - - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + + Cluster Name + Clustername + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + - - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + + The cluster name is not valid. + Der Clustername ist ungültig. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + - - {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + + CephX ID + CephX-ID + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + - - Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + + CephX ID... + CephX-ID... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + - - Create Silence - Create Silence + + The CephX ID is not valid. + Die CephX ID ist ungültig. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + - - Severity - Severity + + Monitor Addresses + Adressen der Monitore + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + - - State - State + + Comma-delimited addresses... + Kommagetrennte Adressen... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + - - Started - Started + + The monitory address is not valid. + Die Anrede ist ungültig. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + - - URL - URL + + CephX Key + CephX-Schlüssel + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + + Base64-encoded key... + Base64-codierter Schlüssel... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + - - Group - Group + + CephX key must be base64 encoded. + CephX-Schlüssel muss base64-codiert sein. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + + + + Local image count + Anzahl lokaler Images + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + + + + # Local + # lokal + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + + + + Remote image count + Anzahl nicht-lokaler Images + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + + + + # Remote + # remote + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + - - Duration - Duration + + Edit Mode + Bearbeitungsmodus + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + - - Query - Query + + Add Peer + Peer hinzufügen + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + + Edit Peer + Peer bearbeiten + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + - - silence - silence + + Delete Peer + Peer löschen + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + - - Attribute name - Attribute name + + Mode + Modus + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + - - Value - Value + + Leader + Leader + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + - - Regular expression - Regular expression + + # Local + # lokal + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + - - Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + + # Remote + # remote + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + - - Creator - Ersteller + + mirror peer + Peer spiegeln + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + + + + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + Gateways Ceph NVMe-oF Gateways stellen Ceph Block Speicher mittels NVMe/TCP bereit. Für VMware-Clients werden die NVMe/TCP Volumes als VMFS Datastores dargestellt. Für Linux-Clients werden die NVMe/TCP Volumes als Block-Geräte dargestellt. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + + + + Address + Adresse + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + + + + Port + Port + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + + + + Hosts + Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + + + + Add host + Host hinzufügen + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + + + + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + Bestimmten Hosts erlauben, NVMe/TCP Befehle im NVMe Subsystem auszuführen. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + + + + Add host nqn + Host nqn hinzufügen + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + + + + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + + + + An NQN may not be more than 223 bytes in length. + Ein NQN darf nicht länger als 223 Bytes betragen. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + + + + Duplicate entry detected. Enter a unique value. + Duplikat entdeckt. Ein eindeutiger Wert ist erforderlich. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + + + + Allow any host + Beliebiger Host erlaubt + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + + + + Initiator + Initiator + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + + + + Any host allowed (*) + Beliebiger Host erlaubt (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + + + + Allow any host(*) + Beliebiger Host erlaubt (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + + + + Host Name + Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + - - Comment - Kommentar + + Loading... + Laden... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + + + + -- No hosts available -- + -- Keine Hosts verfügbar -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + + + + -- Select a host -- + -- Host auswählen -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + + + + This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + + + + Transport Service ID + Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + + + + The IP port to use. Default is 4420. + Zu verwendender IP Port. Standard ist 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + + + + The value cannot be greated than 65535. + Der Wert darf 65535 nicht überschreiten. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + + + + The value must be a positive integer. + Der Wert muss eine positive ganze Zahl sein. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + + + + Listener + Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + - - Start time - Startzeit + + Host + Host + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + - - If the start time lies in the past the creation time will be used - Wenn die Startzeit in der Vergangenheit liegt, wird die Erstellungszeit verwendet + + Transport + Transport + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + - - Duration - Dauer + + Pool + Pool + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + + + + -- No block pools available -- + -- Keine Block-Pools verfügbar -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + - - End time - Ende + + -- Select a pool -- + -- Pool auswählen -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + + + + An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + + + + Image Name + Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + - - Matchers - Matchers + + '/' and '@' are not allowed. + '/' und '@' sind nicht zulässig. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + + + + Image Size + Image Größe + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + + + + + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + + + + Enter a positive integer. + Geben Sie eine positive, ganze Zahl ein. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + + + + This field is required + Dies ist ein Pflichtfeld. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + + + + Enter a value above than previous. A block device image can be expanded but not reduced. + Geben Sie einen größeren Wert als den Ursprungswert ein. Ein Block-Gerät-Image kann vergrößert, aber nicht verkleinert werden. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + - - Add matcher - Add matcher + + Namespace + Namensraum + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + + + + Bdev Name + Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + + + + Pool + Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + + + + Image Size + Image Größe + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + + + + Block Size + Block Größe + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + - - Edit - Bearbeiten + + IOPS + IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + + + + R/W Throughput + Lese-/Schreibdurchsatz + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + + + + Read Throughput + Durchsatz Lesend + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + + + + Write Throughput + Durchsatz Schreibend + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + + + + Load Balancing Group + Lastverteilung Gruppe + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + - - Delete - Löschen + + Details + Details + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + + + + Listeners + Listener + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + - - Editing a silence will expire the old silence and recreate it as a new silence - Das Bearbeiten einer Stummschaltung löscht die Vorherige und legt eine neue Stummschaltung an. + + Namespaces + Namensräume + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + + + + Serial Number + Seriennummer + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + + + + Model Number + Modellnummer + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + + + + Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + + + + Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + + + + Subsystem Type + Subsystem Typ + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + + + + NQN + NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + + + + This NQN is already in use. + Dieser NQN wird bereits verwendet. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + + + + Maximum Namespaces + Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + + + + The maximum namespaces per subsystem. Default is + Der Höchstwert an Namensräumen pro Subsystem. Der Standardwert ist + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + - - This field is required! - Dies ist ein Pflichtfeld! + + The value must be at least 1. + Der Wert muss mindestens 1 sein. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + + + + The value cannot be greater than . + Der Wert darf nicht größer als sein. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + + + + Subsystem + Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + + + + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + Subsysteme Ein Subsystem erlaubt die Zugriffskontrolle, welche Hosts auf die Namensräume innerhalb der Subsysteme zugreifen dürfen. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + + + + NQN + NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + + + + # Namespaces + # Namensräume + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + + + + # Maximum Allowed Namespaces + # Maximum erlaubter Namensräume + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + + + + Subsystems + Subsysteme + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + - - A silence requires at least one matcher - A silence requires at least one matcher + + RBD Configuration + RBD-Konfiguration + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + - - Created by - Created by + + Remove the local configuration value. The parent configuration value will be inherited and used instead. + Entfernen Sie den lokalen Konfigurationswert. Stattdessen wird der übergeordnete Konfigurationswert übernommen und verwendet. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + - - Updated - Updated + + The minimum value is 0 + Der Mindestwert lautet 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + - - Ends - Ends + + Global + Global + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - Silence - Silence + + Image + Image + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + + Key + Schlüssel + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + - - service - service + + Source + Quelle + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + - - There are no hosts. - There are no hosts. + + Value + Wert + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - - Filter hosts - Filter hosts + + Only available for RBD images with fast-diff enabled + Nur für RBD-Images verfügbar, bei denen fast-diff aktiviert ist + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + - - Type - Typ + + Data Pool + Datenpool + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + - - -- Select a service type -- - -- Select a service type -- + + Created + Erstellt + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + - - Id - ID + + Size + Größe + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + - - Unmanaged - Unmanaged + + Objects + Objekte + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + - - Placement - Placement + + Object size + Objektgröße + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + - - Hosts - Hosts + + Features + Funktionen + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + - - Label - Label + + Provisioned + Bereitgestellt + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + - - Count - Count + + N/A + n. v. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + - - Only that number of daemons will be created. - Only that number of daemons will be created. + + Total provisioned + Bereitgestellt gesamt + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + - - The value must be at least 1. - The value must be at least 1. + + Striping unit + Striping-Einheit + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + - - Pool - Pool + + Striping count + Striping-Anzahl + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + - - Loading... - Laden... + + Parent + Übergeordnet + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + - - -- No pools available -- - -- No pools available -- + + Block name prefix + Präfix für Blockname + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + - - -- Select a pool -- - -- Pool auswählen -- + + Order + Reihenfolge + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + - - Port - Port + + Format Version + Formatversion + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + - - The value cannot exceed 65535. - The value cannot exceed 65535. + + Snapshots + Snapshots + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + - - Trusted IPs - Trusted IPs + + Configuration + Konfiguration + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + - - Comma separated list of IP addresses. - Comma separated list of IP addresses. + + Performance + Leistung + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + + + + RBD details + RBD Details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + + + + Information can not be displayed for RBD in status 'Removing'. + Die Information kann nicht für RBD mit dem Status 'Entfernen' angezeigt werden. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + + This setting overrides the global value + Diese Einstellung überschreibt den globalen Wert + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + - - User - Benutzer + + This is the global value. No value for this option has been set for this image. + Dies ist der globale Wert. Kein Wert für diese Option wurde für dieses Image festgelegt. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - Password - Passwort + + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + + + + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + + + + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + + + + Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + + + + 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + + + + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + + + + Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + - - SSL - SSL + + You need more than one pool with the rbd application label use to use a dedicated data pool. + Es ist mehr als ein Pool mit RBD-Anwendungslabel erforderlich, um einen dedizierten Datenpool zu verwenden. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + - - Certificate - Certificate + + -- No data pools available -- + -- Keine Datenpools verfügbar -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + - - The SSL certificate in PEM format. - The SSL certificate in PEM format. + + -- No namespaces available -- + -- Keine Namensräume verfügbar -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + - - Invalid SSL certificate. - Invalid SSL certificate. + + -- Select a namespace -- + -- Namensraum auswählen -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + + + + 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + - - Private key - Private key + + You have to increase the size. + Sie müssen die Größe erhöhen. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + + + + Size must be a number or in a valid format. eg: 5 GiB + Die Größe muss entweder eine Zahl sein, oder in einem gültigen Format angegeben werden, z. B. 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + - - The SSL private key in PEM format. - The SSL private key in PEM format. + + Striping + Striping + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + + + + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + + + + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + - - Invalid SSL private key. - Invalid SSL private key. + + -- Select stripe unit -- + -- Stripe-Einheit auswählen -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + - - Placement - Placement + + This field is required because stripe count is defined! + Dies ist ein Pflichtfeld, da eine Stripe-Anzahl definiert wurde! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + - - Running - Running + + Stripe unit is greater than object size. + Die Stripe-Einheit ist größer als die Objektgröße. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + + + + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + - - Last Refreshed - Last Refreshed + + This field is required because stripe unit is defined! + Dies ist ein Pflichtfeld, da eine Stripe-Einheit definiert wurde! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + - - The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + + Stripe count must be greater than 0. + Die Stripe-Anzahl muss größer als 0 sein. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + - - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + + RBD + RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + + Deep flatten + Umfassende Vereinfachung + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + + + + Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + + + + Speeds up the process of deleting a clone by removing the dependency on the parent image. + Beschleunigt den Löschvorgang eines Klons durch das Entfernen der Abhängigkeit zum übergeordneten Image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + - - Channels - Channels + + Layering + Schichtung + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + + + + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + + + + Allows the creation of snapshots and clones of an image. + Erlaubt die Erzeugung von Snapshots und Klonen eines Images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + - - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + + Exclusive lock + Exklusive Sperre + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + + + + Ensures that only one client can write to the image at a time. + Stellt sicher, dass nur ein Client zur selben Zeit ins Image schreiben darf. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + - - Basic - Basic + + Object map (requires exclusive-lock) + Objektzuordnung (erfordert exklusive Sperre) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + + + + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + - - Includes basic information about the cluster: - Includes basic information about the cluster: + + Fast diff (interlocked with object-map) + Fast diff (erfordert object-map) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + + + + Speeds up the process of comparing two images. + Beschleunigt den Vorgang, zwei Images zu vergleichen. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + + + + primary + primär + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + + + + secondary + sekundär + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + - - Capacity of the cluster - Capacity of the cluster + + Deleting this image will also delete all its snapshots. + Durch das Löschen dieses Images werden auch alle zugehörigen Snapshots gelöscht. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + - - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + + The following snapshots are currently protected and will be removed: + Folgende Snapshots sind derzeit geschützt und werden entfernt: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + + + + RBD in status 'Removing' + RBD mit Status 'Entfernen' + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + + + + Do you want to force the operation? + Möchten Sie die Operation erzwingen? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + - - Software version currently being used - Software version currently being used + + Size + Größe + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + - - Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + + Usage + Nutzung + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + - - Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + + Objects + Objekte + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + - - Crash - Crash + + Object size + Objektgröße + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + - - Includes information about daemon crashes: - Includes information about daemon crashes: + + Parent + Übergeordnet + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + - - Type of daemon - Type of daemon + + Mirroring + Spiegelung + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + + + + Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + + + + image + Image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + - - Version of the daemon - Version of the daemon + + Warning + Warnung + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + + + + Enforce + Erzwingen + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + - - Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + Es gibt geklonte Snapshots zu diesem RBD. Bitte löschen Sie die zugehörigen RBDs bevor Sie dieses RBD löschen. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + + + + Primary RBD images cannot be resynced + Primäre RBD-Images können nicht erneut synchronisiert werden + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + - - Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + + This RBD image has an invalid name and can't be managed by ceph. + Dieses RBD-Image hat einen ungültigen Namen und kann nicht von ceph verwaltet werden. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + + + + Action not possible for an RBD in status 'Removing' + Aktion für ein RBD mit dem Status 'Entfernen' nicht möglich. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + - - Device - Device + + Create Namespace + Namensraum anlegen + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + - - Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + + -- No rbd pools available -- + -- Keine rbd-Pools verfügbar -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + - - Ident - Ident + + Namespace already exists. + Namensraum existiert bereits. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - - Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + + Created namespace '/' + Namensraum '/' erstellt + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + - - Contact Information - Contact Information + + Total images + Images insgesamt + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - - Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + + Deleted namespace '/' + Namensraum '/' gelöscht + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + - - Contact - Contact + + Namespace contains images + Namensraum enthält Images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + + + + RBD overview + RBD Übersicht + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + + + + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + + + + The snapshot name cannot start with "." and cannot contain "/" and "@". + Der Snapshot-Name darf nicht mit "." beginnen und darf kein "/" und "@" enthalten. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + + + + Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + + + + The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + - - My first Ceph cluster - My first Ceph cluster + + RBD Snapshot + RBD Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + + + + The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + - - Advanced Settings - Erweiterte Einstellungen + + Snapshot must be protected in order to clone. + Snapshot muss geschützt sein, um zu klonen. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + - - Interval - Interval + + You are about to rollback + Sie sind dabei, ein Rollback durchzuführen + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + - - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + + Used + Verwendet + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + - - Proxy - Proxy + + PROTECTED + GESCHÜTZT + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + - - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + + UNPROTECTED + NICHT GESCHÜTZT + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + - - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + + Created + Erstellt + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - + + RBD snapshot rollback + Rollback für RBD-Snapshot + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + - - Deactivate - Deactivate + + Rollback + Rollback + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + - - The entered value is too low! It must be greater or equal to 8. - The entered value is too low! It must be greater or equal to 8. + + RBD snapshot + RBD-Snapshot + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + - - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + + Trash + Papierkorb + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + - - A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + + Overall Performance + Gesamtleistung + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + - - Report ID - - - - Report ID - - - + + Purge Trash + Papierkorb bereinigen + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + - - The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + + Expired at + Abgelaufen am + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + + Protected until + Geschützt bis + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - - NFS export - NFS export + + This image is protected until . + Dieses Image ist geschützt bis . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + - - NFS Protocol - NFS-Protokoll + + Status + Status + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + - - NFSv3 - NFSv3 + + Deleted At + Gelöscht am + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + - - NFSv4 - NFSv4 + + Move an image to trash + Image in Papierkorb verschieben + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + - - Access Type - Zugriffstyp + + This image contains snapshot(s), which will prevent it from being removed after moved to trash. + Dieses Image enthält einen oder mehrere Snapshots, dadurch wird das endgültige Löschen aus dem Papierkorb verhindert. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + + + + To move to trash, click Move. Optionally, you can pick an expiration date. + Um in den Papierkorb zu verschieben, klicken Sie auf Verschieben. Optional können Sie ein Ablaufdatum auswählen. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + - - Squash - Squash + + Protection expires at + Schutz läuft ab am + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + - - Transport Protocol - Transportprotokoll + + NOT PROTECTED + NICHT GESCHÜTZT + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - - UDP - UDP + + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Falsches Datumsformat. Verwenden Sie "TT.MM.JJJJ HH:mm:ss". + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + - - TCP - TCP + + Protection has already expired. Please pick a future date or leave it empty. + Schutz ist bereits abgelaufen. Wählen Sie ein künftiges Datum aus oder lassen Sie es leer. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + + + + To purge, select  All  or one pool and click  Purge.  + Zum Bereinigen wählen Sie   Alle  oder einen Pool und klicken auf   Bereinigen.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + - - Cluster - Cluster + + Pool: + Pool: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + - - -- No cluster available -- - -- Kein Cluster verfügbar -- + + Pool name... + Poolname... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + - - -- Select the cluster -- - -- Cluster auswählen -- + + All + Alle + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + - - Daemons - Daemons + + Restore Image + Image wiederherstellen + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + + + + To restore  @,  type the image's new name and click  Restore. + Um  @ wiederherzustellen,  geben Sie den neuen Namen des Images ein und klicken Sie auf  Wiederherstellen. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + - - -- No data pools available -- - -- Keine Datenpools verfügbar -- + + New Name + Neuer Name + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + + + + Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + - - -- No CephFS filesystem available -- - -- Kein CephFS Dateisystem verfügbar -- + + This field is required! + Dies ist ein Pflichtfeld! + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + + + + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + + + + client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + + + + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + + + + Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + + + + Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + + + + Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + + + + Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + + + + Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + + + + Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + + + + Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + + + + Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + + + + Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + + + + access + Zugriff + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + - - -- Select the CephFS filesystem -- - -- CephFS Dateisystem auswählen -- + + id + ID + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + - - Security Label - Sicherheitsbezeichnung + + type + Typ + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + - - Enable security label - Sicherheitsbezeichnung aktivieren + + state + Zustand + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + - - CephFS Path - CephFS-Pfad + + version + Version + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + - - Path need to start with a '/' and can be followed by a word - Pfad muss mit einem '/' beginnen und kann von einem Wort gefolgt werden + + root + Stamm + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - - Pseudo - Pseudo + + Evicted client '' + Vertriebener Client '' + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + - - By using different Pseudo options, the same Path may be exported multiple times. - Wenn unterschiedliche Pseudo-Optionen verwendet werden, wird derselbe Pfad möglicherweise mehrfach exportiert. + + Ranks + Ränge + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + - - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + + Standbys + Standbys + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + - - -- No access type available -- - -- Kein Zugriffstyp verfügbar -- + + MDS performance counters + MDS Leistungsindikatoren + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + + Standby daemons + Standby-Daemons + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + - - -- No squash available -- - -- Kein Squash verfügbar -- + + Rank + Rang + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + - - Path - Path + + Daemon + Daemon + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + - - Pseudo - Pseudo + + Activity + Aktivität + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + - - Cluster - Cluster + + Dentries + Dentries + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + - - Daemons - Daemons + + Inodes + Inodes + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + - - Storage Backend - Storage Backend + + Dirs + Dirs + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + - - Access Type - Access Type + + Caps + Caps + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + - - CephFS - CephFS + + Type + Typ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + - - Object Gateway - Objektgateway + + Quotas + Kontingente + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + - - Please set a new password. - Bitte legen Sie ein neues Passwort fest. + + Origin + Ursprung + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + - - You will be redirected to the login page afterwards. - Sie werden anschließend auf die Login-Seite weitergeleitet. + + Path + Pfad + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + + Cannot create snapshots for files/folders in the subvolume + Kann keine Snapshots für Dateien/Ordner in Subvolume erstellen + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + - - The old and new passwords must be different. - Das alte und neue Passwort müssen unterschiedlich sein. + + Max size + Max. Größe + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - - Password confirmation doesn't match the new password. - Passwortbestätigung stimmt nicht mit dem neuen Passwort überein. + + Max files + Max. Dateien + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - - Username - Benutzername + + The inherited is the maximum value to be used. + Der übernommene Wert ist der maximal zulässige Wert. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + - - Log in - Log in + + Save + Speichern + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - Username is required - Benutzername ist erforderlich + + CephFS quota for '' + CephFS Kontingent für '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + - - Password is required - Passwort ist erforderlich + + size + Größe + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - password - password + + files + Dateien + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - Updated user password" - Updated user password" + + quota from '' + Kontingent von '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + - - Old password - Altes Passwort + + Value has to be at least 0 or more + Wert muss mindestens 0 oder mehr sein + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - - New password - Neues Passwort + + Value has to be at most or less + Wert muss höchstens oder weniger sein + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + - - Confirm new password - Neues Passwort bestätigen + + Updated + Aktualisiert + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - - Go To Dashboard - Go To Dashboard + + in order to inherit + um zu übernehmen + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - - - Page not Found - - - - Page not Found - - + + which isn't used because of the inheritance of + wird aufgrund der Übernahme von nicht verwendet + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + - - Help - Help + + in order to have no quota on the directory + um kein Kontingent für das Verzeichnis zu definieren + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - Security - Security + + . + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + - - Trademarks - Trademarks + + Create Snapshot + Snapshot anlegen + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + - - [object Object] - [object Object] + + Please enter the name of the snapshot. + Bitte geben Sie den Namen des Snapshot ein. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - - Create - Create + + Created snapshot '' for '' + Snapshot '' für '' erstellt + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + + + + Snapshot name '' is already in use. Please use another name. + Snapshot-Name '' wird bereits verwendet. Bitte einen anderen Namen verwenden. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + - - Delete - Delete + + CephFs Snapshot + CephFs Snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - - Add - Add + + Deleted snapshot '' for '' + Snapshot '' für '' gelöscht + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - Set - Set + + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title + + + Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + + + + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + + + + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + Der Name des File-Systems sollte mit einem Buchstaben oder einem Punkt beginnen (.) und darf ausschließlich Buchstaben, Zahlen, '.', '-' or '_' enthalten. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + - - Submit - Submit + + Placement + Platzierung + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + - - Remove - Remove + + Hosts + Hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + - - Unset - Unset + + Label + Label + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + + + + File System + Dateisystem + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + - - Update - Update + + There are no hosts. + Es gibt keine Hosts. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + - - Cancel - Cancel + + Filter hosts + Hosts filtern + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + - - Preview - Preview + + Enabled + Aktiv + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + + + + File System deletion is disabled by the mon_allow_pool_delete configuration setting. + Das Löschen des Dateisystems ist durch die Konfigurationsoption mon_allow_pool_delete deaktiviert. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + + + + Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + + + + Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + + + + Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + + + + Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + + + + Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + + + + Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + + + + A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + + + + Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + + + + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + + + + Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + + + + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + + + + This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + + + + Choose a value greater than 0. + Wählen Sie einen Wert größer als 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + + + + Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + + + + This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + + + + Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + + + + Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + + + + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + + + + Subvolume + Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + + + + Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + + + + Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + + + + Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + + + + Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + + + + Start time + Startzeit + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + + + + Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + - - Move - Move + + Reconnecting, please wait ... + Verbindung wird erneut hergestellt, bitte warten ... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + + + + snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + + + + The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + + + + Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + + + + Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + + + + Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + - - Next - Next + + Default + Standard + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + + + + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + - - Back - Back + + e.g., 10GiB + z. B. 10GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + + + + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + + + + UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + + + + GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + + + + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + + + + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + - - Clone - Clone + + All + Alle + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + - - Copy - Copy + + Read + Lesen + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + + + + Write + Schreiben + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + - - Deep Scrub - Deep Scrub + + Execute + Ausführen + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + + + + Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + + + + Data Pool + Datenpool + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + + + + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + + + + The snapshot already exists. + Der Snapshot existiert bereits. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + + + + Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + + + + Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + + + + snapshot + Snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + + + + Loading snapshots... + Snapshots werden geladen + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + + + + No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + + + + Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + + + + Create clone + Klone erstellen + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + + + + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + Erlaubte Zeichen sind Buchstaben, Ziffern, '.', '-', '+', ':' oder '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + + + + A subvolume or clone with this name already exists. + Ein Subvolume oder Klon mit diesem Namen existiert bereits. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + + + + Group name + Gruppenname + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + + + + Create Clone + Klon erstellen + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + + + + Created Clone "" successfully. + Klon &quot;&quot; erfolgreich erstellt. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + + + + The subvolume group already exists. + Die Subvolume-Gruppe existiert bereits. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + + + + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + + + + subvolume group + Subvolume-Gruppe + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + - - Destroy - Destroy + + Directories + Verzeichnisse + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + + + + Subvolumes + Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + + + + Subvolume groups + Subvolume-Gruppen + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + + + + Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + - - Evict - Evict + + Clients + Clients + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + - - Flatten - Flatten + + Performance Details + Leistungsdetails + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + + + + CephFS MDS performance + CephFS MDS Leistung + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + - - Mark Down - Mark Down + + Description + Beschreibung + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + - - Mark In - Mark In + + Long description + Detaillierte Beschreibung + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + - - Mark Lost - Mark Lost + + Current values + Aktuelle Werte + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + - - Mark Out - Mark Out + + Daemon default + Daemon-Standard + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + - - Protect - Protect + + Type + Typ + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + - - Rename - Rename + + Min + Min. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + - - Restore - Restore + + Max + Max. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + - - Reweight - Reweight + + Flags + Flags + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + - - Rollback - Rollback + + Services + Dienste + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + - - Scrub - Scrub + + Source + Quelle + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + - - Show - Show + + Level + Level + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + - - Move to Trash - Move to Trash + + Can be updated at runtime (editable) + Kann zur Laufzeit aktualisiert werden (bearbeitbar) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + - - Unprotect - Unprotect + + Tags + Tags + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + - - Change - Change + + Enum values + Auflistungswerte + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + - - Recreate - Recreate + + See also + Siehe auch + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + - - Expire - Expire + + The value can be updated at runtime. + Der Wert kann zur Laufzeit aktualisiert werden. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + - - Deleted - Deleted + + Daemons/clients do not pull this value from the + monitor config database. We disallow setting this option via 'ceph config + set ...'. This option should be configured via ceph.conf or via the + command line. + Daemons/Clients rufen diesen Wert nicht aus der + Datenbank 'monitor config' ab. Es ist nicht zulässig, diese Option über 'ceph config + set ...' festzulegen. Diese Option sollte über 'ceph.conf' oder an der + Befehlszeile konfiguriert werden. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + - - Added - Added + + Option takes effect only during daemon startup. + Die Option wird nur während des Daemon-Starts wirksam. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + - - Removed - Removed + + Option only affects cluster creation. + Die Option wirkt sich nur auf die Cluster-Erstellung aus. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + - - Edited - Edited + + Option only affects daemon creation. + Die Option wirkt sich nur auf die Daemon-Erstellung aus. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + - - Canceled - Canceled + + Values + Werte + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + - - Previewed - Previewed + + -- Default -- + -- Standard -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + - - Moved - Moved + + true + wahr + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + - - Cloned - Cloned + + false + falsch + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - - Copied - Copied + + The entered value is too high! It must not be greater than . + Der eingegebene Wert ist zu groß! Er darf nicht größer als sein. + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - - Deep Scrubbed - Deep Scrubbed + + The entered value is too low! It must not be lower than . + Der eingegebene Wert ist zu niedrig! Er darf nicht kleiner als sein. + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - - Destroyed - Destroyed + + Updated config option + Aktualisierte Konfigurationsoption + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + - - Flattened - Flattened + + Modified + Geändert + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + Ja + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + Nein + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + - - Marked Down - Marked Down + + Level + Level + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + - - Marked In - Marked In + + Service + Dienst + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + - - Marked Lost - Marked Lost + + Current value + Aktueller Wert + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + - - Marked Out - Marked Out + + Editable + Editierbar + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + + + + Cluster Resources + Cluster-Ressourcen + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + + + + Storage Capacity + Speicherkapazität + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + + + + Number of devices + Anzahl der Laufwerke + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + + + + Raw capacity + Rohkapazität + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + + + + CPUs + CPUs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + + + + Memory + Speicher + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + + + + Host Details + Host-Details + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + + + + + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + + + + Welcome to + Willkommen bei + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + + + + Please expand your cluster first + Erweitern Sie zuerst Ihren Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + + + + Expand Cluster + Cluster erweitern + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + + + + Skip + Abbrechen + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + + + + Add Hosts + Hosts hinzufügen + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + + + + Create OSDs + OSDs erstellen + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + + + + Create Services + Dienste erstellen + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + + + + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + + + + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + Sie sind dabei, den Cluster-Erweiterungsprozess abzubrechen. Sie müssen durch das Menü navigieren, um Hosts und Dienste hinzuzufügen. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + - - Protected - Protected + + Are you sure you want to continue? + Möchten Sie den Vorgang wirklich fortsetzen? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + - - Purged - Purged + + Continue + Fortfahren + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + + + + Cluster expansion skipped by user + Cluster-Erweiterung von Benutzer abgebrochen + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + + + + Cluster expansion was successful + Cluster-Erweiterung war erfolgreich + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + + + + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + + + + Expand Cluster + Cluster erweitern + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + - - Renamed - Renamed + + CRUSH map viewer + CRUSH-Betrachter + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + - - Restored - Restored + + Devices + Laufwerke + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + + + + Physical Disks + Physikalische Laufwerke + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + + + + Host details + Host-Details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + - - Reweighted - Reweighted + + Device health + Laufwerkszustand + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + - - Rolled back - Rolled back + + No hostname found. + Hostname nicht gefunden. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + - - Scrubbed - Scrubbed + + Hostname + Hostname + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + + + + To add multiple hosts at once, you can enter: + Um mehrere Hosts auf einmal hinzuzufügen, können Sie Folgendes eingeben: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + + + + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + eine kommagetrennte Liste der Hostnamen (z.B.: Beispiel-01,Beispiel-02,Beispiel-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + + + + a range expression (e.g.: example-[01-03].ceph), + eine Bereichsangabe(z.B.: Beispiel-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + + + + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + eine kommagetrennte Bereichsangabe (z.B.: Beispiel-[01-05].lab.com,Beispiel2-[1-4].lab.com,Beispiel3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + - - Showed - Showed + + The chosen hostname is already in use. + Der ausgewählte Hostname wird bereits verwendet. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + + + + Network address + Netzwerk-Adresse + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + + + + The value is not a valid IP address. + Der Wert ist keine gültige IP-Adresse. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + + + + Labels + Labels + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + + + + Maintenance Mode + Wartungs-Modus + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + - - Moved to Trash - Moved to Trash + + There are no labels. + Keine Labels vorhanden. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + - - Unprotected - Unprotected + + Filter or add labels + Labels filtern oder hinzufügen + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + - - Recreated - Recreated + + Add label + Label hinzufügen + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + - - Expired - Expired + + host + Host + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + - - Page Not Found - Page Not Found + + Hosts List + Liste mit Hosts + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + + + + Host overview + Host Übersicht + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + + + + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + + + + Data will be available only if Orchestrator is available. + Daten sind nur verfügbar, wenn Orchestrator verfügbar ist. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + + + + - + - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + + + + SSD, NVMEs + SSD, NVMEs + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + + + + Flash + Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + - - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + + The feature is disabled because the selected host is not managed by Orchestrator. + Die Funktion ist deaktiviert, da der ausgewählte Host nicht von Orchestrator verwaltet wird. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + + + + Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + - - User Denied - User Denied + + Labels + Labels + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + - - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. + + Model + Modell + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + + + + CPUs + CPUs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + + + + Cores + Cores + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + + + + Total Memory + Gesamtspeicher + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + + + + Raw Capacity + Rohkapazität + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + + + + HDDs + HDDs + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + + + + Flash + Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + + + + NICs + NICs + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - - documentation - documentation + + Edit Host: + Host bearbeiten: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + - - Failed to load data. - Failed to load data. + + Edit Host + Host bearbeiten + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - - Clear filters - Filter löschen + + Updated Host "" + Aktualisierter Host &quot;&quot; + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + + + + "" moved to maintenance + &quot;&quot; in die Wartung verschoben + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + + + + "" cannot be put into maintenance + &quot;&quot; kann nicht in die Wartung verschoben werden + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + + + + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + + + + "" has exited maintenance + &quot;&quot; hat die Wartung verlassen + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + + + + "" stopped draining + &quot;&quot; Entleerung gestoppt + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + + + + "" started draining + &quot;&quot; Entleerung gestartet + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + - - total - insgesamt - X total + + Identify + Identifizieren + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + - - selected - ausgewählt - X selected + + Device path + Laufwerkspfad + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + - - found - gefunden - X found + + Available + Verfügbar + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + - - Expand/Collapse Row - Expand/Collapse Row + + Vendor + Anbieter + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + - - in %s - in %s + + OSDs + OSDs + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - - %s ago - %s ago + + Identify device + Laufwerk identifizieren + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + - - a few seconds - a few seconds + + Please enter the duration how long to blink the LED. + Bitte geben Sie die gewünschte Dauer zum Blinken der LED ein. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + - - %d seconds - %d seconds + + 1 minute + 1 Minute + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + - - a minute - a minute + + 2 minutes + 2 Minuten + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + - - %d minutes - %d minutes + + 5 minutes + 5 Minuten + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + - - an hour - an hour + + 10 minutes + 10 Minuten + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + - - %d hours - %d hours + + 15 minutes + 15 Minuten + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - - a day - a day + + Identifying '' started on host '' + Identifikation von '' auf Host '' gestartet + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + - - %d days - %d days + + Cluster Logs + Clusterprotokolle + + src/app/ceph/cluster/logs/logs.component.html + 12 + - - a week - a week + + Audit Logs + Revisionsprotokoll + + src/app/ceph/cluster/logs/logs.component.html + 46 + + + + Daemon Logs + Daemon Protokolle + + src/app/ceph/cluster/logs/logs.component.html + 79 + + + + Daemon logs + Daemon Protokolle + + src/app/ceph/cluster/logs/logs.component.html + 84 + - - %d weeks - %d weeks + + Priority: + Priorität: + + src/app/ceph/cluster/logs/logs.component.html + 106 + - - a month - a month + + Keyword: + Schlüsselwort: + + src/app/ceph/cluster/logs/logs.component.html + 119 + - - %d months - %d months + + Date: + Datum: + + src/app/ceph/cluster/logs/logs.component.html + 143 + - - a year - a year - - - %d years - %d years + + Time range: + Zeitraum: + + src/app/ceph/cluster/logs/logs.component.html + 165 + - - n/a - n/a + + No log entries found. Please try to select different filter options. + Keine Log-Einträge gefunden. Bitte versuche es mit anderen Filtern. + + src/app/ceph/cluster/logs/logs.component.html + 181 + - - Yes - Yes + + Reset filter. + Filter zurücksetzen. + + src/app/ceph/cluster/logs/logs.component.html + 185 + + + + Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + + + + Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + - - No - No + + Edit Manager module + Manager-Modul bearbeiten + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + - - Loading form data... - Loading form data... + + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + Der eingegebene Wert ist kein gültiger UUID, z. B.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + - - Form data could not be loaded. - Form data could not be loaded. + + The entered value needs to be a valid IP address. + Der eingegebene Wert muss eine gültige IP-Adresse sein. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - - Failed to - - - - Failed to - - - + + The entered value is too high! It must be lower or equal to . + Der eingegebene Wert ist zu hoch! Er muss kleiner als sein oder diesem Wert entsprechen. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - - Executing - Executing + + The entered value is too low! It must be greater or equal to . + Der eingegebene Wert ist zu niedrig! Er muss größer als sein oder diesem Wert entsprechen. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + - - execute - execute + + The entered value needs to be a number. + Der eingegebene Wert muss eine Zahl sein. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + - - Executed - Executed + + The entered value needs to be a number or decimal. + Der eingegebene Wert muss eine Zahl oder Dezimalzahl sein. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - - unknown task - unknown task + + Updated options for module ''. + Aktualisierte Optionen für Modul ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + - - Creating - Creating + + Always-On + Dauerhaft aktiv + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + - - create - create + + Edit + Bearbeiten + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + - - Updating - Updating + + Enable + Aktivieren + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + - - update - update + + Disable + Deakivieren + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + - - Deleting - Deleting + + This Manager module is always on. + Dieses Manager-Modul ist dauerhaft aktiv. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + - - Adding - Adding + + Status + Status + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + - - add - add + + Cluster ID + Cluster-ID + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + - - Removing - Removing + + monmap modified + Monmap geändert + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + - - remove - remove + + monmap epoch + Monmap-Epoche + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + - - Importing - Importing + + quorum con + quorum con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + - - import - import + + quorum mon + quorum mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + - - Imported - Imported + + required con + erforderliche Verbindung + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + - - RBD ' - ' - - RBD ' - ' - + + required mon + erforderliche Überwachung + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + - - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + + In Quorum + In Quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + - - mirroring site name - mirroring site name + + Not In Quorum + Nicht in Quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + - - bootstrap token - bootstrap token + + Public Address + Öffentliche Adresse + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + - - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + + Open Sessions + Aktive Sitzungen + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + - - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + + OSD creation preview + Vorschau der OSD-Erstellung + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + - - all dashboards - all dashboards + + DriveGroups + DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + - - Identifying - Identifying + + Attributes (OSD map) + Attribute (OSD-Zuordnung) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + - - identify - identify + + Metadata + Metadaten + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + - - Identified - Identified + + Metadata not available + Metadaten nicht verfügbar + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + - - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + + Performance counter + Leistungsindikator + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + + + + OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + + devices + Laufwerke + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + - - Name is already used by - . - - Name is already used by - . - + + The primary storage devices. These devices contain all OSD data. + Die primären Speicherlaufwerke. Diese Laufwerke enthalten alle OSD-Daten. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + - - - is busy. - - - is busy. - + + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + Festplatten für das Write-Ahead-Log. Diese Festplatten werden für das interne BlueStore-Journal verwendet. Eine separate WAL-Festplatte ist nur dann hilfreich, wenn sie schneller als die primäre Festplatte ist (z.B. NVME- oder SSD-Festplatten). Wenn nur geringer Speicherplatz auf schnellen Festplatten verfügbar ist (z.B. weniger als ein Gigabyte), wird empfohlen, diese für das WAL zu verwenden. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + - - - contains snapshots. - - - contains snapshots. - + + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + DB-Festplatten können für das Speichern der internen BlueStore-Metadaten verwendet werden. Eine separate DB-Festplatte ist nur dann hilfreich, wenn sie schneller als die primäre Festplatte ist (z.B. NVME- oder SSD-Festplatten). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + - - Cloning - Cloning + + Add + Hinzufügen + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + - - clone - clone + + Clear + Löschen + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - - Snapshot of - must be protected. - - Snapshot of - must be protected. - + + Raw capacity: + Rohkapazität: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + - - Copying - Copying + + No available devices + Keine verfügbaren Geräte + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + - - copy - copy + + Please add primary devices first + Bitte fügen Sie zuerst primäre Geräte hinzu + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + - - Flattening - Flattening + + Add devices by using filters + Füge Geräte mithilfe von Filtern hinzu + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - flatten - flatten + + devices + Laufwerke + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + - - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + + At least one of these filters must be applied in order to proceed: + Zum Fortfahren muss mindestens einer dieser Filter angewendet werden: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + + Number of devices: . Raw capacity: . + Anzahl der Laufwerke: . Rohkapazität: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + - - Rolling back - Rolling back + + Individual OSD Flags + Einzelne OSD-Flags + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + - - rollback - rollback + + Cluster-wide + Clusterweit + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + - - Moving - Moving + + Restore previous selection + Voherige Auswahl wiederherstellen + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + - - move - move + + No Up + Kein Up-Vorgang + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + - - image ' - ' to trash - - image ' - ' to trash - + + OSDs are not allowed to start + OSDs dürfen nicht gestartet werden + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + - - Could not find image. - Could not find image. + + No Down + Kein Down-Vorgang + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + - - Restoring - Restoring + + OSD failure reports are being ignored, such that the monitors will not mark OSDs down + OSD-Fehlerberichte werden ignoriert, sodass die Monitore die OSDs nicht als ausgefallen markieren + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + - - restore - restore + + No In + Kein In-Vorgang + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + - - image ' - ' into ' - ' - - image ' - ' into ' - ' - + + OSDs that were previously marked out will not be marked back in when they start + OSDs, die zuvor als 'out' markiert wurden, werden beim Start nicht wieder markiert + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + - - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + + No Out + Kein Out-Vorgang + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + - - image ' - ' - - image ' - ' - + + OSDs will not automatically be marked out after the configured interval + OSDs werden nach dem konfigurierten Intervall nicht automatisch als 'out' markiert + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + - - Purging - Purging + + The flag has been enabled for the entire cluster. + Das Flag wurde für den gesamten Cluster aktiviert. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + - - purge - purge + + Updated OSD Flags + Aktualisierte OSD-Flags + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + - - all pools - all pools + + Cluster-wide OSD Flags + Clusterweite OSD-Flags + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + - - images from - - - images from - - + + Pause + Pause + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + - - Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + + Pauses reads and writes + Hält Lese- und Schreibvorgänge an + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + - - host ' - ' - - host ' - ' - + + No Scrub + Kein Scrub + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + - - OSD ' - ' - - OSD ' - ' - + + Scrubbing is disabled + Scrubbing ist deaktiviert + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + - - pool ' - ' - - pool ' - ' - + + No Deep Scrub + Kein umfassender Scrub + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + - - erasure code profile ' - ' - - erasure code profile ' - ' - + + Deep Scrubbing is disabled + Umfassendes Scrubbing ist deaktiviert + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + - - crush rule ' - ' - - crush rule ' - ' - + + No Backfill + Kein Abgleich + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + - - target ' - ' - - target ' - ' - + + Backfilling of PGs is suspended + Abgleich der Platzierungsgruppen ist ausgesetzt + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + - - NFS ' - : - ' - - NFS ' - : - ' - + + No Rebalance + Kein Ausgleich + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + - - Telemetry activation reminder muted - Telemetry activation reminder muted + + OSD will choose not to backfill unless PG is also degraded + OSD wird keinen Abgleich durchführen, es sei denn, Platzierungsgruppe ist ebenfalls degradiert + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + - - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + + No Recover + Keine Wiederherstellung + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + - - Refresh - Aktualisieren + + Recovery of PGs is suspended + Wiederherstellung der Platzierungsgruppen ist ausgesetzt + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + - - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + + Bitwise Sort + Bitweise Sortierung + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + - - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + + Use bitwise sort + Bitweise Sortierung verwenden + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + - - The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + + Purged Snapdirs + Bereinigte Snapdirs + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + + OSDs have converted snapsets + OSDs besitzen konvertierte Snapsets + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + - - Tasks and Notifications - Aufträge und Benachrichtigungen + + Recovery Deletes + Löschvorgänge bei Wiederherstellungen + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + - - Clear notifications - Benachrichtigungen löschen + + Deletes performed during recovery instead of peering + Bei der Wiederherstellung anstelle des Peerings durchgeführte Löschvorgänge + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + - - Remove notification - Benachrichtigungen entfernen + + PG Log Hard Limit + Hardlimit für Platzierungsgruppen-Protokoll + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + - - Duration: - Dauer: + + Puts a hard limit on pg log length + Legt ein Hardlimit für die Platzierungsgruppen-Protokolllänge fest + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + + + + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + + + + Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + + + + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + + + + Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + - - There are no notifications. - Es sind keine Benachrichtigungen verfügbar. + + Shared devices + Geteilte Laufwerke + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + - - Select a Language - Sprache auswählen + + WAL slots + WAL Slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + - - Last 5 minutes - Last 5 minutes + + How many OSDs per WAL device. + Wie viele OSDs pro WAL-Laufwerk. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + - - Last 15 minutes - Last 15 minutes + + Specify 0 to let Orchestrator backend decide it. + Geben Sie 0 an, um das Orchestrator-Backend entscheiden zu lassen. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + - - Last 30 minutes - Last 30 minutes + + Value should be greater than or equal to 0 + Der Wert sollte größer als oder gleich 0 sein + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + - - Last 1 hour (Default) - Last 1 hour (Default) + + DB slots + DB Slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + - - Last 3 hours - Last 3 hours + + How many OSDs per DB device. + Wie viele OSDs pro DB-Laufwerk. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + - - Last 6 hours - Last 6 hours + + Encryption + Verschlüsselung + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + - - Last 12 hours - Last 12 hours + + OSDs List + OSD-Liste + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + + + + OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - Last 24 hours - Last 24 hours + + OSD(s) will be marked if you proceed. + OSD(s) werden als markiert, wenn Sie fortfahren. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + + + + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + - - Yesterday - Yesterday + + {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {OSD kann} other {OSDs können} } + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + + + + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + + + + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + + + + {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + + + + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + + + + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + + + + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + + + + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + + + + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - Today so far - Today so far + + OSD will be if you proceed. + OSD wird , wenn Sie fortfahren. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + - - Day before yesterday - Day before yesterday + + Preserve OSD ID(s) for replacement. + Bewahren Sie die OSD ID(s) für den Austausch auf. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + - - Last 2 days - Last 2 days + + out + aus + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + - - This day last week - This day last week + + in + ein + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + - - Previous week - Previous week + + down + ausgefallen + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + - - This week so far - This week so far + + Mark + Markieren + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + - - Last 7 days - Last 7 days + + OSD lost + OSD verloren + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + - - Previous month - Previous month + + marked lost + markierter Verlust + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + - - This month so far - This month so far + + Purge + Bereinigen + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + - - Last 30 days - Last 30 days + + OSD + OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + - - Last 90 days - Last 90 days + + purged + bereinigt + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + - - Last 6 months - Last 6 months + + destroy + vernichten + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + - - Last 1 year - Last 1 year + + destroyed + vernichtet + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + - - Previous year - Previous year + + Flags + Flags + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + - - This year so far - This year so far + + Recovery Priority + Wiederherstellungspriorität + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + - - Last 2 years - Last 2 years + + PG scrub + PG Scrub + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + - - Last 5 years - Last 5 years + + Device class + Geräte-Klasse + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + - - Loading panel data... - Bereichsdaten werden geladen... + + PGs + Platzierungsgruppen + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + - - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + + Read bytes + Bytes einlesen + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + + Write bytes + Bytes schreiben + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + - - Grafana Time Picker - Grafana-Zeitauswahl + + Read ops + Lesevorgänge + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + - - Reset Settings - Einstellungen für Zurücksetzungen + + Write ops + Schreibvorgänge + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - - This field is required. - This field is required. + + Edit OSD: + Editiere OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + - - An error occurred. - An error occurred. + + Edit OSD + Editiere OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - - Download - Download + + Updated OSD '' + Aktualisierter OSD '' + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - - Yes, I am sure. - Ja, ich bin sicher. + + Mark OSD + Markiere OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + + Mark + Markiere + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + - - Are you sure that you want to - the selected items? - - Sind Sie sicher dass Sie die ausgewählten Einträge - möchten? - + + delete + löschen + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + - - Are you sure that you want to - the selected - ? - - Sind Sie sicher dass Sie die ausgewählten - - möchten? - + + deleted + gelöscht + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + - - Copy to Clipboard - Copy to Clipboard + + Advanced... + Erweitert... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + - - No items selected. - No items selected. + + Advanced configuration options + Erweiterte Konfigurationsoptionen + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + - - Deselect item to select again - Deselect item to select again + + PG scrub options + PG Scrub-Optionen + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + - - Selection limit reached - Selection limit reached + + Updated PG scrub options + Aktualisierte PG Scrub-Optionen + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + - - Filter tags - Filter tags + + OSD Recovery Priority + OSD-Wiederherstellungspriorität + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + - - Add badge - Add badge + + Priority + Priorität + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + - - There are no items available. - There are no items available. + + Customize priority values + Prioritätswerte anpassen + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - - Warning - Warning + + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - - Error - Error + + The entered value is too high! It must not be greater than . + Der eingegebene Wert ist zu groß! Er darf nicht größer als sein. + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - - Information - Information + + The entered value is too low! It must not be lower than . + Der eingegebene Wert ist zu niedrig! Er darf nicht kleiner als sein. + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + - - Success - Success + + Max Backfills + Max. Abgleiche + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + - - Remove the custom configuration value. The default configuration will be inherited and used instead. - Entfernen Sie den aktuellen Konfigurationswert. Stattdessen wird der Standard-Konfigurationswert übernommen und verwendet. + + Recovery Max Active + Wiederherstellung, max. aktiv + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + - - The entered value is too high! It must not be greater than - . - - Der eingegebene Wert ist zu hoch! Er darf nicht größer als - sein. - + + Recovery Max Single Start + Wiederherstellung, max. - einzelner Start + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + - - The entered value is too low! It must not be lower than - . - - Der eingegebene Wert ist zu niedrig! Er darf nicht kleiner als - sein. - + + Recovery Sleep + Wiederherstellung - Inaktivität + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + - - Toggle navigation - Navigation umschalten + + Custom + Benutzerdefiniert + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - - Monitors - Monitore + + Updated OSD recovery speed priority '' + Priorität für OSD-Wiederherstellungsgeschwindigkeit '' aktualisiert + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - - OSDs - OSDs + + Reweight OSD: + OSD neu gewichten: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + - - CRUSH map - CRUSH-Zuordnung + + The value needs to be between 0 and 1. + Der Wert muss zwischen 0 und 1 liegen. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - - Manager Modules - Manager Modules + + OSDs Scrub + OSD-Scrub + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - - Logs - Protokolle + + {VAR_SELECT, select, true {Deep } other {}} + {VAR_SELECT, select, true {Umfassender} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - - Pools - Pools + + You are about to apply a scrub to the OSD(s): . + Sie sind dabei, einen Scrub auf OSD(s) anzuwenden. + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + - - Images - Images + + {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {umfassenden} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - Mirroring - Spiegelung + + was initialized in the following OSD(s): + wurde in den folgenden OSD(s) initialisiert: + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - - iSCSI - iSCSI + + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + Um jeden aktiven Prometheus-Alarm zu sehen, geben Sie die URL zur API des Prometheus Alertmanagers an, wie in der beschrieben. + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + - - NFS - NFS + + Create Silence + Stummschaltung erstellen + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + + + + Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + - - Users - Benutzer + + Severity + Gewichtung + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + - - Buckets - Buckets + + Started + Gestartet + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + - - Logged in user - Angemeldeter Benutzer + + URL + URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + + + + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + - - Change password - Passwort ändern + + Alerts + Warnungen + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + - - Help - Hilfe + + Silences + Stummschaltungen + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - - documentation - documentation + + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + Um jeden konfigurierten Prometheus-Alarm zu sehen, geben Sie die URL zur Prometheus-API an, wie in der beschrieben. + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + - - API - API + + Group + Gruppe + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + - - About - Über + + Duration + Dauer + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + - - Dashboard Settings - Dashboard-Einstellungen + + Query + Abfrage + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + - - User management - Benutzerverwaltung + + Edit + Bearbeiten + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + - - Telemetry configuration - Telemetry configuration + + Delete + Löschen + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + - - Performance counters not available - Leistungsindikatoren nicht verfügbar + + Editing a silence will expire the old silence and recreate it as a new silence + Das Bearbeiten einer Stummschaltung löscht die vorherige und legt eine neue Stummschaltung an. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + - - (inherited from global config) - (inherited from global config) + + Creator + Ersteller + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + - - -- Select the access type -- - -- Select the access type -- + + Comment + Kommentar + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + - - inherited from global config - inherited from global config + + Start time + Startzeit + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + - - -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + + If the start time lies in the past the creation time will be used + Wenn die Startzeit in der Vergangenheit liegt, wird die Erstellungszeit verwendet + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + - - Clients - Clients + + Duration + Dauer + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + - - Add clients - Clients hinzufügen + + End time + Ende + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + - - Any client can access - Jeder Client hat Zugriff + + Matchers + Matchers + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + - - Addresses - Adressen + + A silence requires at least one matcher + Für eine Stummschaltung ist mindestens ein Matcher erforderlich + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + - - Must contain one or more comma-separated values - Muss mindestens einen kommagetrennten Wert enthalten + + Add matcher + Matcher hinzufügen + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + - - For example: - Beispielsweise: + + silence + Stummschaltung + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + - - Addresses - Addresses + + Attribute name + Attributname + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + - - Squash - Squash + + Regular expression + Regulärer Ausdruck + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + - - NFS Protocol - NFS Protocol + + Please add your Prometheus host to the dashboard configuration and refresh the page + Bitte fügen Sie Ihren Prometheus-Host zur Dashboard-Konfiguration hinzu und aktualisieren die Seite + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - - Transport - Transport + + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + Um Stummschaltungen zu aktivieren, geben Sie die URL zur API des Prometheus Alertmanagers an, wie in der beschrieben. + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + + + + Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + - - CephFS - CephFS + + Created by + Erstellt von + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + - - CephFS User - CephFS User + + Ends + Endet + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + - - CephFS Filesystem - CephFS Filesystem + + Silence + Stummschaltung + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + - - Security Label - Security Label + + {VAR_SELECT, select, true {Edit} other {Add}} + {VAR_SELECT, select, true {bearbeiten} other {hinzufügen} } + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Object Gateway - Object Gateway + + Matcher + Matcher + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Object Gateway User - Object Gateway User + + -- Select an attribute to match against -- + -- Wählen Sie das zu vergleichende Attribut -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + - - Details - Details + + Value + Wert + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + - - Clients ( - ) - - Clients ( - ) - + + Use regular expression + Regulären Ausdruck verwenden + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + - - total - total + + no spec + No Spez. + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + - - up - up - - - - (quorum - ) - - - (quorum - ) - + + unmanaged + nicht verwaltet + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - - active daemon - active daemon + + count: + Anzahl: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - - standby daemons - standby daemons + + label: + Label: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + + + + Service Events + Dienst-Ereignisse + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + + + + Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + - - active - active + + Last Refreshed + Zuletzt aktualisiert + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + + + + CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + + + + Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + + + + Daemon Events + Daemon-Ereignisse + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + + + + Service Name + Dienst-Name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + + + + Service Type + Diensttyp + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + + + + Service Events + Dienst-Ereignisse + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + + + + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + - - standby - standby + + -- Select a service type -- + -- Diensttyp auswählen -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + + + + Backend Service + Backend-Dienst + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + + + + -- No service available -- + -- Kein Dienst verfügbar -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + + + + -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + + + + Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + + + + An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + + + + Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + + + + The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + + + + Service Name + Dienst-Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + + + + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + + + + This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + + + + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + + + + Realm + Bereich + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + + + + -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + + + + Zone Group + Zonen-Gruppe + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + + + + Zone + Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + - - no filesystems - no filesystems + + Unmanaged + Nicht verwaltet + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + + + + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + - - standbyReplay - standbyReplay + + Count + Anzahl + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + + + + Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + - - here - here + + Port + Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + - - Reads - Reads + + The value cannot exceed 65535. + Der Wert darf 65535 nicht überschreiten. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + - - /s - /s + + -- No pools available -- + -- Keine Pools verfügbar -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + - - Writes - Writes + + Trusted IPs + Gesicherte IPs + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + - - IOPS - IOPS + + Comma separated list of IP addresses. + Kommagetrennte Liste der IP-Adressen + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - - Used - Used + + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + Bitte fügen Sie die IP-Adressen des Ceph Manager hier hinzu, andernfalls können die iSCSI-Gateways nicht erreicht werden. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + + + + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + + + + foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + + + + Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + + + + Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + + + + rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + + + + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + + + + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + + + + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + + + + Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + + + + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + + + + 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + + + + Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + + + + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + + + + rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + + + + User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + + + + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + + + + rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + + + + Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + + + + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + + + + client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + + + + Virtual IP + Virtuelle IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + + + + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + Die virtuelle IP-Adresse und das Subnetz (in CIDR-Notation), über die der Eintrittsdienst verfügbar ist. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + + + + Frontend Port + Frontend-Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + + + + The port used to access the ingress service. + Der verwendete Port, um auf den Eintrittsdienst zuzugreifen. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + + + + Monitor Port + Monitor-Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + + + + The port used by haproxy for load balancer status. + Der von Haproxy für den Lastausgleicher-Status verwendete Port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + + + + CIDR Networks + CIDR-Netzwerke + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + + + + A list of networks to identify which network interface to use for the virtual IP address. + Eine Liste von Netzwerken, die angibt, welche Netzwerkschnittstelle für die virtuelle IP-Adresse zu verwenden ist. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + - - Avail. - Avail. + + Version + Version + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + + + + -- Select SNMP version -- + -- SNMP-Version auswählen -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + + + + Destination + Zielort + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + + + + Must be of the format hostname:port. + Muss im folgenden Format sein: hostname:port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + + + + The value does not match the pattern: hostname:port + Der Wert entspricht nicht dem Muster: hostname:port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + + + + Engine Id + Engine-ID + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + + + + Unique identifier for the device (in hex). + Eindeutiger Bezeichner für das Laufwerk (in hex). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + + + + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + Der Wert entspricht nicht dem Muster: muss in hexadezimal sein und die Länge eine Vielfaches von 2 mit einem Mindestwert = 10 und einem Maximalwert = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + + + + Auth Protocol + Auth.-Protokoll + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + + + + -- Select auth protocol -- + -- Auth.-Protokoll auswählen-- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + + + + Privacy Protocol + Datenschutz-Protokoll + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + + + + -- Select privacy protocol -- + -- Datenschutzprotokoll auswählen-- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + + + + Credentials + Anmeldedaten + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + + + + SNMP Community + SNMP-Community + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + - - Clean - Clean + + Username + Benutzername + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + + + + Encryption + Verschlüsselung + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + - - Working - Working + + SSL + SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + - - Unknown - Unknown + + Certificate + Zertifikat + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + - - Healthy - Healthy + + The SSL certificate in PEM format. + Das SSL-Zertifikat im PEM-Format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + - - Misplaced - Misplaced + + Invalid SSL certificate. + Ungültiges SSL-Zertifikat. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + - - Degraded - Degraded + + Private key + Privater Schlüssel + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + - - Unfound - Unfound + + The SSL private key in PEM format. + Der private SSL-Schlüssel im PEM-Format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + - - objects - objects + + Invalid SSL private key. + Ungültiger privater SSL-Schlüssel. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + + + + Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + + + + The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + + + + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + + + + Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + + + + Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + + + + Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + + + + Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + + + + Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + + + + Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + - - Cluster Status - Clusterstatus + + service + Dienst + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + - - Managers - Managers + + Placement + Platzierung + + src/app/ceph/cluster/services/services.component.ts + 154 + - - Object Gateways - Objektgateways + + Running + Ausgeführt + + src/app/ceph/cluster/services/services.component.ts + 160 + - - Metadata Servers - Metadatenserver + + Step of 2: Telemetry report configuration + Schritt von 2: Konfiguration Telemetriebericht + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - - iSCSI Gateways - iSCSI-Gateways + + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + Das Telemetriemodul übermittelt anonyme Daten zu diesem Ceph-Cluster an die Ceph-Entwickler, um zu verdeutlichen, wie Ceph verwendet wird und welche Probleme Benutzer möglicherweise haben. Diese Daten werden in öffentlichen Dashboards visualisiert. So erhält die Community schnell eine zusammenfassende Statistik dazu, wie viele Cluster Berichte zur Verfügung stellen, wie hoch die Gesamtkapazität und die OSD-Anzahl ist und welche Trends zur Versionsbereitstellung vorliegen.Die Daten in den Berichten umfassen keine vertraulichen Informationen wie Pool- oder Objektnamen, Objektinhalte, Hostnamen oder Laufwerksseriennummern. Sie enthalten Indikatoren und Statistiken dazu, wie der Cluster bereitgestellt wurde, zur Ceph-Version, zur Bereitstellung der Hosts und anderen Parametern, die im Projekt zu einem besseren Verständnis der Verwendung von Ceph führen. Die Daten werden gesichert an und (Laufwerksbericht) gesendet. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + - - Capacity - Kapazität + + Deactivate + Deaktivieren + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + - - Raw Capacity - Rohkapazität + + Channels + Kanäle + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - - Objects - Objekte + + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + Der Telemetriebericht ist in mehrere "Kanäle" unterteilt, die jeweils eine andere Art von Informationen enthalten, die unten konfiguriert werden können. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + - - PG Status - Platzierungsgruppenstatus + + Basic + Grundlegend + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + - - PGs per OSD - Platzierungsgruppen pro OSD + + Includes basic information about the cluster: + Enthält grundlegende Informationen zum Cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + - - Performance - Leistung + + Capacity of the cluster + Kapazität des Clusters + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + - - Client Read/Write - Client-Lese-/Schreibvorgänge + + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + Anzahl der Monitore, Manager, OSDs, MDSs, Objektgateways oder anderer Daemons + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + - - Client Throughput - Clientdurchsatz + + Software version currently being used + Derzeit verwendete Softwareversion + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + - - Recovery Throughput - Wiederherstellungsdurchsatz + + Number and types of RADOS pools and CephFS file systems + Anzahl und Typen der RADOS-Pools und CephFS-Dateisysteme + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + - - Scrubbing - Scrubbing + + Names of configuration options that have been changed from their default (but not their values) + Namen der Konfigurationsoptionen, deren Standardeinstellungen geändert wurden (aber nicht ihre Werte) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + - - - - See - Logs - for more details. - - - - See - Logs - for more details. - + + Crash + Absturz + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + - - no spec - no spec + + Includes information about daemon crashes: + Enthält Informationen zu Daemonabstürzen: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + - - unmanaged - unmanaged + + Type of daemon + Daemontyp + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + - - count: - - - count: - - + + Version of the daemon + Daemonversion + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + - - label: - - - label: - - + + Operating system (OS distribution, kernel version) + Betriebssystem (Bereitstellung des Betriebssystems, Kernelversion) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + - - {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + + Stack trace identifying where in the Ceph code the crash occurred + Stacktrace mit Identifikation, wo im Ceph-Code der Absturz auftrat + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + - - - Matcher - - - Matcher - + + Device + Laufwerk + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + - - -- Select an attribute to match against -- - -- Wählen Sie das zu vergleichende Attribut -- + + Includes information about device metrics like anonymized SMART metrics. + Enthält Informationen über Laufwerksmetriken wie anonymisierte SMART-Metriken. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + - - Value - Wert + + Ident + Ident + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + - - Use regular expression - Regulären Ausdruck verwenden + + Includes user-provided identifying information about the cluster: + Enthält vom Benutzer bereitgestellte identifizierende Informationen zum Cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + + + + Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + + + + Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + - - Alerts - Alerts + + Contact Information + Kontaktinformationen + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + - - Silences - Silences + + Submitting any contact information is completely optional and disabled by default. + Das Senden von Kontaktinformationen ist vollständig optional und standardmäßig deaktiviert. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + - - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + + Contact + Kontakt + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + - - {VAR_SELECT, select, true {Deep } other {}} - {VAR_SELECT, select, true {Deep } other {}} + + My first Ceph cluster + Mein erster Ceph-Cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + + + + Organization + Organisation + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + + + + Organization name + Organisationsname + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + - - OSDs - Scrub - - OSDs - Scrub - + + Interval + Intervall + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + - - {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + Das Modul erstellt und sendet standardmäßig alle 24 Stunden einen neuen Bericht. Sie können dieses Intervall anpassen, indem Sie eine andere Anzahl von Stunden einstellen. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + - - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + + The entered value is too low! It must be greater or equal to 8. + Der eingegebene Wert ist zu niedrig. Er muss größer als 8 sein oder diesem Wert entsprechen. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + - - Reweight OSD: - - - Reweight OSD: - - + + Proxy + Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + - - The value needs to be between 0 and 1. - Der Wert muss zwischen 0 und 1 liegen. + + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + Wenn der Cluster keine direkte Verbindung mit dem konfigurierten Telemetrie-Endpunkt (standardmäßig telemetry.ceph.com) herstellen kann, können Sie einen HTTP/HTTPS-Proxyserver konfigurieren, indem Sie beispielsweise https://10.0.0.1:8080 hinzufügen. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + - - Max Backfills - Max Backfills + + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + Sie können bei Bedarf auch einen user:pass hinzufügen, z. B. https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Recovery Max Active - Recovery Max Active + + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + Hinweis: Wenn Sie auf "Weiter" klicken, sehen Sie zunächst eine Vorschau auf den Berichtsinhalt, bevor Sie die automatische Übermittlung Ihrer Daten aktivieren können. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - - Recovery Max Single Start - Recovery Max Single Start + + Step of 2: Telemetry report preview + Schritt von 2: Vorschau Telemetriebericht + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - - Recovery Sleep - Recovery Sleep + + Report ID + Berichts-ID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + - - Custom - Custom + + A randomized UUID to identify a particular cluster over the course of several telemetry reports. + Eine UUID nach dem Zufallsprinzip zur Identifizierung eines bestimmten Clusters im Verlauf mehrerer Telemetrieberichte. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + + + + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + - - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + + The actual telemetry data that will be submitted. + Die tatsächlichen Telemetriedaten, die übermittelt werden. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - - OSD Recovery Priority - OSD-Wiederherstellungspriorität + + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + Ich bin damit einverstanden, dass meine Telemetriedaten im Rahmen der Community-Datenlizenzvereinbarung - Freigabe - Version 1.0 übermittelt werden. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + - - Priority - Priorität + + The Telemetry module has been configured and activated successfully. + Das Telemetriemodul wurde erfolgreich konfiguriert und aktiviert. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + + + + An Error occurred while updating the Telemetry module configuration. Please Try again + Während der Aktualisierung der Telemetriemodul-Konfiguration ist ein Fehler aufgetreten. Versuchen Sie es erneut. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + + + + Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + + + + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + + + + New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + + + + -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + + + + -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + + + + Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + + + + Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + + + + Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + + + + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + + + + Back + Zurück + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + - - Customize priority values - Prioritätswerte anpassen + + Pause + Pause + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + + + + Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + + + + Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + + + + Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + + + + Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + + + + The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + + + + Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + + + + Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + + + + Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + + + + The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + + + + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + + + + View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + + + + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + + + + Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + - - [object Object] - [object Object] + + Cluster Status + Clusterstatus + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + + + + MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + + + + Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + + + + Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + + + + Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + + + + Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + + + + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + + + + Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + + + + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + + + + Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + + + + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + + + + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + + + + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + + + + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + + + + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + + + + Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + + + + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + + + + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + + + + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + + + + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + + + + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + - - The entered value is too high! It must not be greater than - . - - Der eingegebene Wert ist zu hoch! Er darf nicht größer als - sein. - + + Last 5 minutes + Letzte 5 Minuten + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + - - The entered value is too low! It must not be lower than - . - - Der eingegebene Wert ist zu niedrig! Er darf nicht kleiner als - sein. - + + Last 15 minutes + Letzte 15 Minuten + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + - - PG scrub options - PG scrub options + + Last 30 minutes + Letzte 30 Minuten + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + + + + Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + - - Updated PG scrub options - Updated PG scrub options + + Last 3 hours + Letzte 3 Stunden + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + - - Advanced... - Erweitert... + + Last 6 hours + Letzte 6 Stunden + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + - - Advanced configuration options - Erweiterte Konfigurationsoptionen + + Last 12 hours + Letzte 12 Stunden + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + - - No In - No In + + Last 24 hours + Letzte 24 Stunden + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + + + + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + + + + View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + - - OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + + Cluster + Cluster + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + + + + Danger + Gefahr + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + + + + Warning + Warnung + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + + + + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - No Out - No Out + + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + - - OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + + Monitors + Monitore + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + - - No Up - No Up + + OSDs + OSDs + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + - - OSDs are not allowed to start - OSDs are not allowed to start + + Managers + Manager + + src/app/ceph/dashboard/health/health.component.html + 69 + - - No Down - No Down + + Object Gateways + Objektgateways + + src/app/ceph/dashboard/health/health.component.html + 81 + - - OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + + Metadata Servers + Metadatenserver + + src/app/ceph/dashboard/health/health.component.html + 90 + - - Pause - Pause + + iSCSI Gateways + iSCSI-Gateways + + src/app/ceph/dashboard/health/health.component.html + 103 + - - Pauses reads and writes - Pauses reads and writes + + Capacity + Kapazität + + src/app/ceph/dashboard/health/health.component.html + 117 + - - No Scrub - No Scrub + + Raw Capacity + Rohkapazität + + src/app/ceph/dashboard/health/health.component.html + 122 + - - Scrubbing is disabled - Scrubbing is disabled + + PG Status + Platzierungsgruppenstatus + + src/app/ceph/dashboard/health/health.component.html + 144 + - - No Deep Scrub - No Deep Scrub + + PGs per OSD + Platzierungsgruppen pro OSD + + src/app/ceph/dashboard/health/health.component.html + 176 + - - Deep Scrubbing is disabled - Deep Scrubbing is disabled + + Client Read/Write + Client-Lese-/Schreibvorgänge + + src/app/ceph/dashboard/health/health.component.html + 188 + - - No Backfill - No Backfill + + Client Throughput + Clientdurchsatz + + src/app/ceph/dashboard/health/health.component.html + 199 + - - Backfilling of PGs is suspended - Backfilling of PGs is suspended + + Recovery Throughput + Wiederherstellungsdurchsatz + + src/app/ceph/dashboard/health/health.component.html + 210 + - - No Rebalance - No Rebalance + + Scrubbing + Scrubbing + + src/app/ceph/dashboard/health/health.component.html + 218 + - - OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + + Reads + Lesen + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + - - No Recover - No Recover + + /s + /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + - - Recovery of PGs is suspended - Recovery of PGs is suspended + + Writes + Schreiben + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + - - Bitwise Sort - Bitwise Sort + + Avail. + Verf. + + src/app/ceph/dashboard/health/health.component.ts + 185 + - - Use bitwise sort - Use bitwise sort + + Clean + Fehlerfrei + + src/app/ceph/dashboard/health/health.component.ts + 220 + - - Purged Snapdirs - Purged Snapdirs + + Working + In Bearbeitung + + src/app/ceph/dashboard/health/health.component.ts + 221 + - - OSDs have converted snapsets - OSDs have converted snapsets + + Unknown + Unbekannt + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + - - Recovery Deletes - Recovery Deletes + + Healthy + Fehlerfrei + + src/app/ceph/dashboard/health/health.component.ts + 251 + - - Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + + Misplaced + Fehlplatziert + + src/app/ceph/dashboard/health/health.component.ts + 252 + - - PG Log Hard Limit - PG Log Hard Limit + + Degraded + Unvollständig + + src/app/ceph/dashboard/health/health.component.ts + 253 + - - Puts a hard limit on pg log length - Puts a hard limit on pg log length + + Unfound + Nicht gefunden + + src/app/ceph/dashboard/health/health.component.ts + 254 + - - Updated OSD Flags - Updated OSD Flags + + objects + Objekte + + src/app/ceph/dashboard/health/health.component.ts + 266 + + + + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + - - Cluster-wide OSD Flags - Clusterweite OSD-Flags + + here + hier + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + - - The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + + up + aktiv + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + - - Individual OSD Flags - Individual OSD Flags + + no filesystems + keine Dateisysteme + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + - - Restore previous selection - Restore previous selection + + active + aktiv + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + - - Cluster-wide - Cluster-wide + + standby + Standby + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + - - - devices - - - devices - + + standby daemons + Standby-Daemons + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + - - At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + + active daemon + aktiver Daemon + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + - - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + + standbyReplay + standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + - - No available devices - No available devices + + n/a + n. v. + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - Please add primary devices first - Please add primary devices first + + (quorum ) + (Quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + - - Add devices by using filters - Add devices by using filters + + total + insgesamt + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + + + + near full + nahezu voll + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + + + + full + voll + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - - - devices - - - Laufwerke - + + Clients () + Clients () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + - - The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + + Addresses + Adressen + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + - - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + + Access Type + Zugriffstyp + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + - - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + + Squash + Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + - - Add - Hinzufügen + + Cluster + Cluster + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + - - Clear - Löschen + + NFS Protocol + NFS-Protokoll + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + - - Raw capacity: - - - Raw capacity: - - + + Pseudo + Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + - - Attributes (OSD map) - Attribute (OSD-Zuordnung) + + Storage Backend + Speicher-Back-End + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + - - Metadata - Metadaten + + CephFS + CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + - - Device health - Laufwerkszustand + + CephFS User + CephFS-Benutzer + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + - - Performance counter - Leistungsindikator + + CephFS Filesystem + CephFS-Dateisystem + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + - - Metadata not available - Metadaten nicht verfügbar + + Security Label + Sicherheitsbezeichnung + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + - - Performance Details - Leistungsdetails + + Object Gateway + Objektgateway + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + - - OSD creation preview - Vorschau der OSD-Erstellung + + Object Gateway User + Objektgatewaybenutzer + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + - - DriveGroups - DriveGroups + + Any client can access + Jeder Client hat Zugriff + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + - - Identify - Identify + + Addresses + Adressen + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + - - Device path - Device path + + Must contain one or more comma-separated values + Muss mindestens einen kommagetrennten Wert enthalten + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + - - Type - Type + + For example: + Beispielsweise: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + - - Available - Available + + Access Type + Zugriffstyp + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + - - Vendor - Vendor + + Squash + Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + - - Model - Model + + Add clients + Clients hinzufügen + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + - - Identify device - - - Identify device - - + + (inherited from global config) + (aus globaler Konfiguration übernommen) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + - - Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + + -- Select the access type -- + -- Zugriffstyp auswählen -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + - - 1 minute - 1 minute + + inherited from global config + aus globaler Konfiguration übernommen + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + - - 2 minutes - 2 minutes + + -- Select what kind of user id squashing is performed -- + -- Durchzuführende Benutzer-ID-Squashing-Art auswählen -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + - - 5 minutes - 5 minutes + + -- No cluster available -- + -- Kein Cluster verfügbar -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + - - 10 minutes - 10 minutes + + -- Select the cluster -- + -- Cluster auswählen -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + + + + This is the ID of an NFS Service. + Dies ist die ID eines NFS-Dienstes. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + + + + This field is required. To create a new NFS cluster, add a new NFS Service. + Dies ist ein Pflichtfeld. Um einen neuen NFS-Cluster zu erstellen, fügen Sie einen neuen NFS-Dienst hinzu. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + + + + Volume + Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + - - 15 minutes - 15 minutes + + -- No CephFS filesystem available -- + -- Kein CephFS-Dateisystem verfügbar -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + - - Execute - Execute + + -- Select the CephFS filesystem -- + -- CephFS-Dateisystem auswählen -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + - - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + + Security Label + Sicherheitsbezeichnung + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + - - No hostname found. - Hostname nicht gefunden. + + Enable security label + Sicherheitsbezeichnung aktivieren + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + + + + Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + + + + -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + + + + Subvolume + Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + + + + -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + + + + -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + - - The value can be updated at runtime. - The value can be updated at runtime. + + CephFS Path + CephFS-Pfad + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + + + + A path in a CephFS file system. + Ein Pfad in einem CephFS-Dateisystem. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + + + + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + - - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + + Path need to start with a '/' and can be followed by a word + Pfad muss mit einem '/' beginnen und kann von einem Wort gefolgt werden + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + + + + The path does not exist in the selected volume. + Der Pfad existiert im ausgewählten Volume nicht. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + + + + Bucket + Bucket + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + + + + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + Der Bucket ist nicht vorhanden oder nicht im Standardbereich (wenn mehrere Bereiche konfiguriert sind). Erstellen Sie einen neuen Bucket, um fortzufahren. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + - - Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + + NFS Protocol + NFS-Protokoll + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + - - Option only affects cluster creation. - Option only affects cluster creation. + + NFSv3 + NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + - - Option only affects daemon creation. - Option only affects daemon creation. + + NFSv4 + NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + - - Current values - Aktuelle Werte + + Pseudo + Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + + + + The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + - - Min - Min. + + By using different Pseudo options, the same Path may be exported multiple times. + Wenn unterschiedliche Pseudo-Optionen verwendet werden, wird derselbe Pfad möglicherweise mehrfach exportiert. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + + + + The pseudo is already in use by another export. + Pseudo wird bereits von einem anderen Export verwendet. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + - - Max - Max. + + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + Pseudo muss mit einem '/' beginnen und darf folgende Zeichen nicht enthalten: >, <, |, &, ( oder ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + + + + Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + - - Flags - Flags + + -- No access type available -- + -- Kein Zugriffstyp verfügbar -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - - Source - Quelle + + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + - - Level - Ebene + + -- No squash available -- + -- Kein Squash verfügbar -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + + + + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + + + + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + + + + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + + + + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + - - Can be updated at runtime (editable) - Kann zur Laufzeit aktualisiert werden (bearbeitbar) + + Transport Protocol + Transportprotokoll + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + - - Tags - Tags + + UDP + UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + - - Enum values - Auflistungswerte + + TCP + TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + - - See also - Siehe auch + + NFS export + NFS-Export + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + + + + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + + + + Error while retrieving paths. + Fehler beim Abrufen der Pfade. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + + + + Error while retrieving bucket names. + Fehler beim Abrufen der Bucket-Namen. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + - - Directories - Verzeichnisse + + CephFS + CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + - - Allows all operations - Allows all operations + + Object Gateway + Objektgateway + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + + + + Bucket + Bucket + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + - - Allows only operations that do not modify the server - Allows only operations that do not modify the server + + Performance counters not available + Leistungsindikatoren nicht verfügbar + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + - - Allows no access at all - Allows no access at all + + The name can only consist of alphanumeric characters, dashes and underscores. + Der Name darf nur alphanumerische Zeichen, Bindestriche und Unterstriche enthalten. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + - - Origin - Origin + + The chosen erasure code profile name is already in use. + Der ausgewählte Erasure-Coding-Profilname wird bereits verwendet. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + - - Max size - Max size + + Root + Stamm + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + - - Max files - Max files + + Failure domain type + Ausfalldomänen-Typ + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + - - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + + Device class + Geräte-Klasse + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + + + + All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + + + + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + - - Save - Save + + Crush Rule + Crush-Regel + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + - - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + + Plugin + Plugin + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + - - size - size + + Data chunks (k) + Datenblöcke (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + - - files - files + + Must be equal to or greater than 2. + Muss größer oder gleich 2 sein. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - - - quota - from ' - ' - - - quota - from ' - ' - + + Chunks (k+m) have exceeded the available OSDs of . + Blöcke (k+m) haben die verfügbaren OSDs überschritten. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + - - Value has to be at least 0 or more - Value has to be at least 0 or more + + For an equal distribution k has to be a multiple of (k+m)/l. + Für eine gleichmäßige Verteilung muss k ein Vielfaches von (k+m)/l sein. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + - - Value has to be at most - or less - - Value has to be at most - or less - + + K has to be equal to or greater than m in order to recover data correctly through c. + k muss gleich oder größer als m sein, damit die Daten über c korrekt wiederhergestellt werden können. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - - in order to inherit - - - in order to inherit - - + + Distribution factor: + Verteilungsfaktor: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + - - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + + Coding chunks (m) + Datenblöcke für die Codierung (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + - - in order to have no quota on the directory - in order to have no quota on the directory + + Must be equal to or greater than 1. + Muss größer oder gleich 1 sein. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + - - - - - . - - - - - . - + + Durability estimator (c) + Dauerhaftigkeitsschätzung (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + - - Create Snapshot - Create Snapshot + + C has to be equal to or lower than m as m defines the amount of chunks that can be used. + c muss gleich oder kleiner als m sein, da m die Anzahl der Blöcke definiert, die verwendet werden können. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + - - Please enter the name of the snapshot. - Please enter the name of the snapshot. + + Helper chunks (d) + Helper-Blöcke (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + - - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + + Set d manually or use the plugin's default calculation that maximizes d. + Stellen Sie d manuell ein oder verwenden Sie die Standardberechnung des Moduls, die d maximiert. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + - - CephFs Snapshot - CephFs Snapshot + + D is automatically updated on k and m changes + d wird bei Änderungen von k und m automatisch aktualisiert. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + + D can be set from to + D kann von auf gesetzt werden. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - - Snapshots - Snapshots + + D can only be set to + D kann nur auf gesetzt werden. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - - Quotas - Kontingente + + D has to be greater than k (). + D muss größer als k () sein. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - - Standby daemons - Standby daemons + + D has to be lower than k + m (). + D muss niedriger als k + m () sein. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + - - Daemon - Daemon + + Locality (l) + Standort (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + - - Activity - Activity + + Can't split up chunks (k+m) correctly with the current locality. + Blöcke (k+m) können mit dem aktuellen Standort nicht korrekt aufgeteilt werden. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - - Dentries - Dentries + + Locality groups: + Standortgruppen: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + - - Inodes - Inodes + + Crush failure domain + Crush-Ausfalldomäne + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + + + + Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + + + + This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + + + + Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + + + + This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + - - Dirs - Dirs + + Crush Locality + Crush-Standort + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + - - Caps - Caps + + None + Keine + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + - - Pool - Pool + + Scalar mds + Skalar-MDS + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + - - Ranks - Ränge + + Technique + Technik + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + - - Standbys - Standbys + + Packetsize + Paketgröße + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + - - MDS performance counters - MDS Leistungsindikatoren + + Crush root + Crush-Stamm + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + - - id - id + + Crush device class + Crush-Geräteklasse + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + + + + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - - type - type + + Available OSDs: + Verfügbare OSDs: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + - - state - state + + Directory + Verzeichnis + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + - - version - version + + EC Profile + EC-Profil + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + + + + Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + - - root - root + + Cache Tiers Details + Details zu den Cache-Ebenen + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + - - Evicted client ' - ' - - Evicted client ' - ' - + + Cache Mode + Cache-Modus + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + - - Roles - Rollen + + Min Evict Age + Min. Alter für Vertreibung + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + - - Username - Username + + Min Flush Age + Min. Alter für Leerung + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + - - Email - Email + + Target Max Bytes + Max. Bytes für Ziel + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + - - Roles - Roles + + Target Max Objects + Max. Objekte für Ziel + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + - - Deleted user ' - ' - - Deleted user ' - ' - + + No applications added + Keine Anwendungen hinzugefügt + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + - - Failed to delete user ' - ' - - Failed to delete user ' - ' - + + Applications limit reached + Anwendungslimit erreicht + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + - - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + + A pool can only have up to four applications definitions. + Ein Pool kann nur bis zu vier Anwendungsdefinitionen aufweisen. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + - - There are no roles. - There are no roles. + + Allowed characters '_a-zA-Z0-9' + Zulässige Zeichen '_a-zA-Z0-9' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + - - user - user + + Maximum length is 128 characters + Maximale Länge beträgt 128 Zeichen + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + - - Created user ' - ' - - Created user ' - ' - + + Filter or add applications' + Anwendungen filtern oder hinzufügen + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + - - Update user - Update user + + Add application + Anwendung hinzufügen + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + - - Continue - Continue + + The chosen Ceph pool name is already in use. + Der ausgewählte Poolname wird bereits verwendet. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + - - You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + Es ist nicht möglich, einen RBD-Pool mit '/' im Namen zu erstellen. Bitte ändern Sie entweder den Namen oder entfernen 'rbd' aus der Anwendungsliste. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + - - Updated user ' - ' - - Updated user ' - ' - + + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + Der Pool-Name darf nur aus Buchstaben, Ziffern, '.', '-', '_' oder '/' bestehen. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + - - Full name - Vollständiger Name + + Pool type + Pooltyp + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + - - Email - E-Mail-Adresse + + -- Select a pool type -- + -- Pooltyp auswählen -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + - - The username already exists. - The username already exists. + + PG Autoscale + PG Autoskalierung + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + - - Confirm password - Passwort bestätigen + + Placement groups + Platzierungsgruppen + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + - - Password confirmation doesn't match the password. - Passwortbestätigung stimmt nicht mit dem Passwort überein. + + At least one placement group is needed! + Es wird mindestens eine Platzierungsgruppe benötigt. + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + - - Password expiration date - Ablaufdatum des Passworts + + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. + Ihr Cluster kann nicht so viele Platzierungsgruppen verarbeiten. Berechnen Sie die benötigte Anzahl an Platzierungsgruppen. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + - - Password expiration date... - Ablaufdatum des Passworts... + + Calculation help + Hilfe zur Berechnung + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + - - Invalid email. - Ungültige E-Mail-Adresse. + + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + Die aktuellen Einstellungen für die Platzierungsgruppen wurden für Sie berechnet. Stellen Sie vor dem Senden sicher, dass die Werte Ihren Anforderungen entsprechen. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + - - Enabled - Aktiviert + + Replicated size + Reproduzierte Größe + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - - User must change password at next logon - Benutzer muss das Passwort bei der nächsten Anmeldung ändern + + Minimum: + Minimum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - - You are about to remove "user read / update" permissions from your own user. - Sie sind dabei, die Lese-/Aktualisierungsberechtigungen für Benutzer von Ihrem eigenen Benutzer zu entfernen. + + Maximum: + Maximum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - - If you continue, you will no longer be able to add or remove roles from any user. - Wenn Sie den Vorgang fortsetzen, können Sie Benutzerrollen nicht mehr hinzufügen oder entfernen. + + The size specified is out of range. A value from to is usable. + Die spezifizierte Größe liegt außerhalb des Bereichs. Es ist ein Wert von bis zu verwenden. + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + - - Are you sure you want to continue? - Möchten Sie den Vorgang wirklich fortsetzen? + + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + Eine Größe von 1 erzeugt keine Reproduktion des Objekts. Die 'Reproduzierte Größe' beinhaltet das Objekt selbst. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + - - System Role - System Role + + EC Overwrites + EC-Überschreibungen + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + - - Deleted role ' - ' - - Deleted role ' - ' - + + Applications + Anwendungen + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + + + + Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + - - New name - New name + + Mirroring + Spiegelung + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + + + + Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + - - Clone Role - Clone Role + + CRUSH + CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + - - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + + Erasure code profile + Erasure-Coding-Profil + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + - - role - role + + -- No erasure code profile available -- + -- Kein Erasure-Coding-Profil verfügbar -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + - - All - All + + -- Select an erasure code profile -- + -- Erasure-Coding-Profil auswählen -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + - - Read - Read + + This profile can't be deleted as it is in use. + Dieses Profil kann nicht gelöscht werden, da es verwendet wird. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + - - Created role ' - ' - - Created role ' - ' - + + Profile + Profil + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + - - Updated role ' - ' - - Updated role ' - ' - + + Used by pools + In Verwendung durch Pools + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + - - Name... - Name... + + Profile is not in use. + Profil wird nicht verwendet. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + - - Description... - Beschreibung... + + Crush ruleset + Crush-Regelsatz + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + - - Permissions - Berechtigungen + + A new crush ruleset will be implicitly created. + Ein neuer CRUSH Regelsatz wird implizit erstellt. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + + + + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + + + + There are no rules. + Keine Regeln vorhanden. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + + + + -- Select a crush rule -- + -- Crush-Regel auswählen -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + + + + Placement and + replication strategies or distribution policies that allow to + specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + + + + This rule can't be deleted as it is in use. + Diese Regel kann nicht entfernt werden, weil sie noch verwendet wird. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + + + + Crush rule + Crush-Regel + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + + + + Crush steps + Crush-Schritte + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + + + + Rule is not in use. + Regel wird nicht verwendet. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + + + + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + Die Regel kann im aktuellen Cluster nicht verwendet werden, da zu wenige OSDs existieren, um das von dieser Regel geforderte OSD-Minimum zu erfüllen. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + + + + Compression + Komprimierung + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + + + + Algorithm + Algorithmus + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + + + + -- No erasure compression algorithm available -- + -- Kein Komprimierungsalgorithmus für Erasure-Coding verfügbar -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + + + + Minimum blob size + Minimale Blobgröße + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + + + + e.g., 128KiB + z. B. 128KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + + + + Value should be greater than 0 + Wert sollte größer als 0 sein + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + + + + Value should be less than the maximum blob size + Wert sollte niedriger als die maximale Blobgröße sein + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + + + + Maximum blob size + Maximale Blobgröße + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + + + + e.g., 512KiB + z. B. 512KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + + + + Value should be greater than the minimum blob size + Wert sollte größer als die minimale Blobgröße sein + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + + + + Ratio + Verhältnis + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + + + + Compression ratio + Komprimierungsverhältnis + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + + + + Value should be between 0.0 and 1.0 + Wert sollte zwischen 0,0 und 1,0 liegen + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + + + + Max bytes + Max. Bytes + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + + + + Leave it blank or specify 0 to disable this quota. + Lassen Sie das Feld leer oder geben Sie 0 an, um dieses Quota zu deaktivieren. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + + + + A valid quota should be greater than 0. + Ein gültiges Kontingent sollte größer als 0 sein. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + + + + Max objects + Max. Objekte + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + + + + The value should be greater or equal to 0 + Der Wert sollte größer als oder gleich 0 sein + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + + + + pool + Pool + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + + + + erasure code profile + Erasure-Coding-Profil + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + + + + crush rule + Crush-Regel + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + + + + Pools List + Pool-Liste + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + + + + Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + + + + Data Protection + Datenschutz + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + + + + Applications + Anwendungen + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + + + + PG Status + Platzierungsgruppenstatus + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + + + + Crush Ruleset + Crush-Regelsatz + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + + + + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + Das Löschen des Pools ist durch die Konfigurationsoption mon_allow_pool_delete deaktiviert. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + + + + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + + + + Key + Schlüssel + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + + + + This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + + + + Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + + + + Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + + + + Create Realm/Zone Group/Zone + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title + + + Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + + + + Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + + + + Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + + + + Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + + + + Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + + + + Delete Zone + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title + + + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + + + + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + + + + This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + + + + Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + + + + This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + + + + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + + + + No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + + + + Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + + + + Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + + + + Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + + + + Delete Zone Group + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title + + + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + + + + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + + + + This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + + + + Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + + + + Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + + + + Versioning + Versionierung + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + + + + Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + + + + MFA Delete + MFA-Löschung + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + + + + Index type + Indextyp + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + + + + Placement rule + Platzierungsregel + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + + + + Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + + + + Bucket quota + Bucket-Quote + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + + + + Enabled + Aktiv + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + + + + Maximum size + Maximale Größe + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + + + + Unlimited + Unbegrenzt + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + + + + Maximum objects + Maximale Objekte + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + + + + Locking + Sperren + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + + + + Days + Tage + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + + + + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + + + + Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + + + + Bucket policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + + + + Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + + + + ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + + + + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + + + + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + + + + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + + + + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + + + + Id + ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + + + + Bucket names can only contain lowercase letters, numbers, periods and hyphens. + Bucket-Namen dürfen nur Kleinbuchstaben, Zahlen, Punkte und Bindestriche enthalten. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. Der ausgewählte Name wird bereits verwendet. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + + + + Bucket names must not contain uppercase characters or underscores. + Bucket-Namen dürfen keine Großbuchstaben oder Unterstriche enthalten. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + + + + Each label must start and end with a lowercase letter or a number. + Jedes Label muss mit einem Kleinbuchstaben oder einer Zahl beginnen und enden. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + + + + Bucket names cannot be formatted as IP address. + Bucket-Namen können nicht als IP-Adressen formatiert werden. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + + + + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + Bucket-Labels dürfen nicht leer sein und dürfen nur Kleinbuchstaben, Zahlen, Punkte und Bindestriche enthalten. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + + + + Bucket names must be 3 to 63 characters long. + Bucket-Namen müssen zwischen 3 und 63 Zeichen lang sein. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + - - Scope - Scope + + Owner + Inhaber + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + - - Swift Key - Swift Key + + -- Select a user -- + -- Benutzer auswählen -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + - - Secret key - Geheimer Schlüssel + + Enables versioning for the objects in the bucket. + Aktiviert die Versionierung der Objekte im Bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + - - Subuser - Subuser + + Multi-Factor Authentication + Multi-Faktor-Authentifizierung + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + - - Subuser - Unterbenutzer + + Delete enabled + Löschen aktiviert + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + - - Permission - Berechtigung + + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + Aktiviert die MFA-Löschung (Multi-Faktor-Authentifizierung), wofür eine zusätzliche Authentifizierung zum Ändern des Bucket-Versionsstatus erforderlich ist. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + - - -- Select a permission -- - -- Berechtigung auswählen -- + + Token Serial Number + Token Seriennummer + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + - - read, write - lesen, schreiben + + Token PIN + Token PIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + + + + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + + + + Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + - - full - voll + + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. + Aktiviert die Sperrung für die Objekte im Bucket. Die Sperrung kann nur beim Erstellen eines Buckets aktiviert werden. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + + + + Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + + + + Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + + + + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + + + + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + - - The chosen subuser ID is already in use. - Die ausgewählte Unterbenutzer-ID wird bereits verwendet. + + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + Die Anzahl der Tage, die Sie für die Standardaufbewahrungszeit angeben möchten und die auf neue Objekte in diesem Bereich angewendet wird. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + - - Swift key - Swift-Schlüssel + + The entered value must be a positive integer. + Der eingegebene Wert muss eine positive ganze Zahl sein. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + + + + Retention Days must be a positive integer. + Der eingegebene Wert für Aufbewahrungstage muss eine positive ganze Zahl sein. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + + + + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + + + + SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + + + + Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + + + + KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + + + + -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + + + + Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + + + + Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + + + + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + + + + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + + + + Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + + + + Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + + + + Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + + + + Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + + + + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + + + + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + + + + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + + + + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + + + + Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + + + + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + + + + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + + + + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + + + + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + + + + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + - - Auto-generate secret - Geheimnis automatisch generieren + + Placement target + Platzierungsziel + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + - - S3 Key - S3 Key + + -- Select a placement target -- + -- Platzierungsziel wählen -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + + + + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + + + + Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + - - -- Select a username -- - -- Benutzername auswählen -- + + bucket + Bucket + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - - Auto-generate key - Schlüssel automatisch generieren + + Updated Object Gateway bucket ''. + Objektgateway-Bucket '' wurde aktualisiert. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - - Access key - Zugriffsschlüssel + + Created Object Gateway bucket '' + Objektgateway-Bucket '' wurde erstellt. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + + + + No Limit + Kein Limit + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + - - Full name - Full name + + Owner + Inhaber + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + - - Email address - Email address + + Used Capacity + Verwendete Kapazität + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + - - Suspended - Suspended + + Capacity Limit % + Kapazitätslimit % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + - - Max. buckets - Max. buckets + + Object Limit % + Objektlimit % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + + + + Update RGW Encryption Configurations + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title + + + Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + + + + SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + + + + Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + + + + Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + + + + Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + + + + Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + + + + Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + + + + Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + + + + The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + + + + CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + + + + Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + + + + The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + + + + Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + + + + The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + + + + Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + - - Disabled - Disabled + + Performance Counters + Leistungsindikatoren + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + + + + RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + + + + Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + + + + RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + - - Unlimited - Unlimited + + Sync Performance + Synchronisierungsleistung + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + + + + Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + + + + Realm + Bereich + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + + + + Zone Group + Zonen-Gruppe + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + + + + Zone + Zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + + + + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + + + + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + + + + Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + + + + Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + + + + Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + + + + No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + + + + Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + + + + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + + + + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + + + + Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + + + + Export Multi-site Realm Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title + + + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + + + + Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + + + + Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + + + + Import Multi-site Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title + + + Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + + + + Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + + + + Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + + + + The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + + + + Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + + + + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + - - The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + + Only that number of daemons will be created. + Es wird nur diese Anzahl an Daemons erstellt. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + + + + Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + + + + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title + + + The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + + + + Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + + + + The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + + + + Zone group Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + + + + Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + + + + Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + + + + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + + + + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + + + + Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + + + + Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + + + + You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + + + + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + + + + Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + + + + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + + + + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + + + + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title + + + Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + + + + Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + + + + The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + + + + Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + + + + Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + + + + Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + + + + Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + + + + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + + + + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + + + + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + + + + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + + + + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title + + + Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + + + + Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + + + + Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + + + + Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + + + + Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + + + + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + + + + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + + + + All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + + + + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + + + + Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + + + + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + + + + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + + + + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + + + + Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + + + + Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + + + + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + + + + Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + + + + Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + + + + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + + + + Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + + + + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + + + + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + + + + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + + + + Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + + + + Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + + + + Zonegroup + Zonengruppe + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + + + + Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + + + + Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + + + + Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + + + + Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + + + + Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + + + + You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + + + + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + + + + Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + + + + Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + + + + You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + + + + Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + - - users - users + + Data pool + Datenpool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + + + + Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + + + + Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + + + + Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + + + + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + + + + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + + + + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title + + + Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + + + + -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + + + + Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + + + + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + + + + You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + + + + Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + + + + Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + + + + Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + + + + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + + + + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + + + + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + + + + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + + + + Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + + + + Error + Fehler + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + + + + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + + + + Create System User + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title + + + User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + + + + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + - - subuser - subuser + + -- Select a type -- + -- Typ auswählen -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + + + + Permission + Berechtigung + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + + + + -- Select a permission -- + -- Berechtigung auswählen -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + Befähigung + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + - - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + + Keys + Schlüssel + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + - - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + + Show + Anzeigen + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + + + + Tenant + Mandant + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + + + + User ID + Benutzer-ID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + + + + Full name + Vollständiger Name + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address E-Mail-Adresse - - - Max. buckets - Max. Buckets - - - Disabled - Deaktiviert - - - Unlimited - Unbegrenzt - - - Custom - Benutzerdefiniert + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended Angehalten + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + + + + System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + + + + Maximum buckets + Maximale Buckets + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + + + + Subusers + Unterbenutzer + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + + + + Capabilities + Befähigungen + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + + + + MFAs(Id) + MFAs(Id) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota Benutzerquote + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + - - Bucket quota - Bucket-Quote + + Username + Benutzername + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + + + + Unlimited + Unbegrenzt + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + + + + The value is not valid. + Der Wert ist ungültig. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. Die ausgewählte Benutzer-ID wird bereits verwendet. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + + + + Show Tenant + Mandant anzeigen + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + + + + The chosen user ID exists in this tenant. + Die gewählte Benutzer-ID ist in diesem Mandanten vorhanden. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. Dies ist keine gültige E-Mail-Adresse. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. Die ausgewählte E-Mail-Adresse wird bereits verwendet. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + + + + Max. buckets + Max. Buckets + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + + + + Disabled + Deaktiviert + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + + + + Custom + Benutzerdefiniert + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + Der eingegebene Wert muss >= 1 sein. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + + + + Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + + + + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key S3-Schlüssel + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + - - Subusers - Unterbenutzer + + Auto-generate key + Schlüssel automatisch generieren + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + + + + Access key + Zugriffsschlüssel + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + - - - - - - - - - + + Secret key + Geheimer Schlüssel + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. Keine Unterbenutzer vorhanden. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - Keys - Schlüssel + + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + + + + There are no keys. + Keine Schlüssel vorhanden. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + - - There are no keys. - Keine Schlüssel vorhanden. - - - Show - Anzeigen - - - Capabilities - Befähigungen + + There are no capabilities. + Keine Befähigungen vorhanden. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + Alle Befähigungen sind bereits hinzugefügt. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - - - - There are no capabilities. - Keine Befähigungen vorhanden. + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size Unbegrenzte Größe + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size Max. Größe - - - The value is not valid. - Der Wert ist ungültig. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects Unbegrenzte Objekte + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects Max. Objekte + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. Der eingegebene Wert muss >=0 sein. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + - - Maximum buckets - Maximale Buckets - - - Maximum size - Maximale Größe - - - Maximum objects - Maximale Objekte - - - -- Select a type -- - -- Typ auswählen -- - - - Sync Performance - Sync Performance - - - Performance Counters - Leistungsindikatoren - - - Owner - Owner - - - Used Capacity - Used Capacity - - - Capacity Limit % - Capacity Limit % - - - Objects - Objects - - - Object Limit % - Object Limit % - - - bucket - bucket - - - buckets - buckets - - - pool - pool - - - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - - - - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - - - - Owner - Inhaber - - - Placement target - Placement target - - - Locking - Locking - - - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. - - - -- Select a user -- - -- Benutzer auswählen -- - - - -- Select a placement target -- - -- Select a placement target -- - - - Versioning - Versioning - - - Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. - - - Multi-Factor Authentication - Multi-Factor Authentication - - - Delete enabled - Delete enabled - - - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - - - Token Serial Number - Token Serial Number - - - Token PIN - Token PIN - - - Mode - Modus - - - Days - Days - - - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - - - The entered value must be a positive integer. - The entered value must be a positive integer. - - - Index type - Indextyp - - - Placement rule - Platzierungsregel - - - Version - Version - - - MFA Delete - MFA Delete + + user + Benutzer + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + + subuser + Unterbenutzer + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + - - An error with error code - occurred. - - An error with error code - occurred. - + + S3 Key + S3-Schlüssel + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - - Raw - Raw + + Updated Object Gateway user '' + Objektgateway-Benutzer '' wurde aktualisiert. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - - Threshold - Threshold + + Created Object Gateway user '' + Objektgateway-Benutzer '' wurde erstellt. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + + + + Tenant + Mandant + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + - - When Failed - When Failed + + Full name + Vollständiger Name + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + - - Worst - Worst + + Email address + E-Mail-Adresse + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + - - Failed to retrieve SMART data. - Failed to retrieve SMART data. + + Suspended + Angehalten + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + - - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + + Max. buckets + Max. Buckets + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + - - No SMART data available. - No SMART data available. + + users + Benutzer + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + - - SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + + -- Select a username -- + -- Benutzername auswählen -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + - - unknown - unknown + + Subuser + Unterbenutzer + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + - - passed - bestanden + + The chosen subuser ID is already in use. + Die ausgewählte Unterbenutzer-ID wird bereits verwendet. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + - - failed - fehlgeschlagen + + read, write + lesen, schreiben + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + - - Device Information - Laufwerksinformationen + + full + voll + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + - - SMART - SMART + + Swift key + Swift-Schlüssel + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + - - No device information available for this device. - No device information available for this device. + + Auto-generate secret + Geheimnis automatisch generieren + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + - - No SMART data available for this device. - Keine SMART-Daten für dieses Laufwerk verfügbar. + + Subuser + Unterbenutzer + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + - - SMART data is loading. - SMART-Daten werden geladen. + + Swift Key + Swift-Schlüssel + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + - - The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + + Users + Benutzer + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + - - The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + + Roles + Rollen + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + + + + Neither hostname nor OSD ID given + Weder Hostname noch OSD ID angegeben + + src/app/ceph/shared/device-list/device-list.component.html + 7 + + + + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + Laufwerks-ID + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + Integritätszustand + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + Gut + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + Schlecht + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + Veraltet + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + Lebenserwartung + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + Prognoseerstellungsdatum + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name - - - Neither hostname nor OSD ID given - Weder Hostname noch OSD ID angegeben - - - Restore Image - Image wiederherstellen - - - New Name - Neuer Name + Laufwerksname + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + - - Purge Trash - Papierkorb bereinigen - - - All - Alle - - - Pool: - Pool: - - - Pool name... - Poolname... + + Daemons + Daemons + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + + + + Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + + + + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + + + + Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + + + + Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + + + + Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + + + + Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + + + + -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + + + + Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + + + + Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + + + + -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + + + + Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + + + + Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + + + + Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + + + + Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + + + + Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + - - Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + + Failed to retrieve SMART data. + SMART-Daten konnten nicht abgerufen werden. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + - - no active alerts - no active alerts + + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + Die empfangenen Daten sind in der JSON-Formatversion 2.x und daher nicht kompatibel mit dem Dashboard. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + - - 1 active alert - 1 active alert + + No SMART data available. + Keine SMART-Daten verfügbar. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + - - - active alerts - - - active alerts - + + SMART overall-health self-assessment test result + SMART-Selbsteinschätzungs-Testeregbnis zur Allgemeinintegrität + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + - - Matches 1 rule - Matches 1 rule + + unknown + unbekannt + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + - - Matches - rules - - Matches - rules - + + passed + bestanden + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + - - - with - . - - - with - . - + + failed + fehlgeschlagen + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + - - Move an image to trash - Image in Papierkorb verschieben + + Device Information + Laufwerksinformationen + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + - - Protection expires at - Schutz läuft ab am + + No device information available for this device. + Für dieses Laufwerk sind keine Laufwerksinformationen verfügbar. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + - - NOT PROTECTED - NICHT GESCHÜTZT + + SMART + SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + - - This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + + No SMART data available for this device. + Keine SMART-Daten für dieses Laufwerk verfügbar. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + - - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Falsches Datumsformat. Verwenden Sie "TT.MM.JJJJ HH:mm:ss". + + SMART data is loading. + SMART-Daten werden geladen. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - - Protection has already expired. Please pick a future date or leave it empty. - Schutz ist bereits abgelaufen. Wählen Sie ein künftiges Datum aus oder lassen Sie es leer. + + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctl hat ein unbekanntes Argument (Fehlercode ) erhalten. Sie verwenden möglicherweise eine inkompatible Version von smartmontools. Die Version &gt;= 7.0 von smartmontools ist erforderlich, um Daten erfolgreich abzurufen. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - - Namespace - Namespace + + An error with error code occurred. + Ein Fehler mit dem Fehlercode ist aufgetreten. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + - - Deleted At - Deleted At + + Raw + Brutto + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + - - Expired at - Abgelaufen am + + Threshold + Grenzwert + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + - - Protected until - Geschützt bis + + When Failed + Bei Fehlschlag + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + - - This image is protected until - . - - Dieses Image ist geschützt bis - . - + + Worst + Schlimmste + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + + + + Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + + + + Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + + + + Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + + + + Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + + + + Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + + + + Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + + + + Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + - - Namespaces - Namensräume + + Please set a new password. + Bitte legen Sie ein neues Passwort fest. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + - - Trash - Papierkorb + + You will be redirected to the login page afterwards. + Sie werden anschließend auf die Login-Seite weitergeleitet. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + - - -- Select the priority -- - -- Select the priority -- + + The old and new passwords must be different. + Das alte und neue Passwort müssen unterschiedlich sein. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + - - Low - Low + + Password confirmation doesn't match the new password. + Passwortbestätigung stimmt nicht mit dem neuen Passwort überein. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + - - High - High + + Username is required + Benutzername ist erforderlich + + src/app/core/auth/login/login.component.html + 26 + - - PROTECTED - PROTECTED + + Password is required + Passwort ist erforderlich + + src/app/core/auth/login/login.component.html + 48 + - - UNPROTECTED - UNPROTECTED + + Log in + Anmelden + + src/app/core/auth/login/login.component.html + 63 + - - RBD snapshot rollback - RBD snapshot rollback + + Scope + Bereich + + src/app/core/auth/role-details/role-details.component.ts + 27 + - - RBD snapshot - RBD snapshot + + Create + Erstelle + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + - - You are about to rollback - Sie sind dabei, ein Rollback durchzuführen + + Update + Aktualisiere + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + - - RBD Snapshot - RBD Snapshot + + Delete + Löschen + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + - - Total images - Total images + + Description... + Beschreibung... + + src/app/core/auth/role-form/role-form.component.html + 45 + - - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + + Permissions + Berechtigungen + + src/app/core/auth/role-form/role-form.component.html + 55 + - - Namespace contains images - Namespace contains images + + role + Rolle + + src/app/core/auth/role-form/role-form.component.ts + 49 + - - Created namespace ' - / - ' - - Created namespace ' - / - ' - + + Created role '' + Rolle '' erstellt + + src/app/core/auth/role-form/role-form.component.ts + 153 + - - Create Namespace - Namensraum anlegen + + Updated role '' + Rolle '' aktualisiert + + src/app/core/auth/role-form/role-form.component.ts + 169 + - - -- No rbd pools available -- - -- Keine rbd-Pools verfügbar -- + + System Role + Systemrolle + + src/app/core/auth/role-list/role-list.component.ts + 100 + - - Namespace already exists. - Namensraum existiert bereits. + + Deleted role '' + Rolle '' gelöscht + + src/app/core/auth/role-list/role-list.component.ts + 127 + - - Object size - Object size + + New name + Neuer Name + + src/app/core/auth/role-list/role-list.component.ts + 152 + - - Parent - Parent + + Clone Role + Rolle klonen + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + + Cloned role '' from '' + Rolle '' von '' geklont + + src/app/core/auth/role-list/role-list.component.ts + 163 + + + + White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + - - This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + + The username already exists. + Der Benutzername existiert bereits. + + src/app/core/auth/user-form/user-form.component.html + 35 + - - Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + + Confirm password + Passwort bestätigen + + src/app/core/auth/user-form/user-form.component.html + 85 + - - The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + + Password confirmation doesn't match the password. + Passwortbestätigung stimmt nicht mit dem Passwort überein. + + src/app/core/auth/user-form/user-form.component.html + 101 + - - RBD - RBD + + Password expiration date + Ablaufdatum des Passworts + + src/app/core/auth/user-form/user-form.component.html + 115 + - - Deep flatten - Deep flatten + + Password expiration date... + Ablaufdatum des Passworts... + + src/app/core/auth/user-form/user-form.component.html + 135 + - - Layering - Layering + + Email + E-Mail-Adresse + + src/app/core/auth/user-form/user-form.component.html + 175 + - - Exclusive lock - Exclusive lock + + Invalid email. + Ungültige E-Mail-Adresse. + + src/app/core/auth/user-form/user-form.component.html + 186 + - - Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + + User must change password at next logon + Benutzer muss das Passwort bei der nächsten Anmeldung ändern + + src/app/core/auth/user-form/user-form.component.html + 233 + - - Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + + You are about to remove "user read / update" permissions from your own user. + Sie sind dabei, die Lese-/Aktualisierungsberechtigungen für Benutzer von Ihrem eigenen Benutzer zu entfernen. + + src/app/core/auth/user-form/user-form.component.html + 250 + - - Size - Größe + + If you continue, you will no longer be able to add or remove roles from any user. + Wenn Sie den Vorgang fortsetzen, können Sie Benutzerrollen nicht mehr hinzufügen oder entfernen. + + src/app/core/auth/user-form/user-form.component.html + 252 + - - e.g., 10GiB - z. B. 10GiB + + There are no roles. + Keine Rollen vorhanden. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - - Striping - Striping + + Created user '' + Benutzer '' erstellt + + src/app/core/auth/user-form/user-form.component.ts + 208 + - - Object size - Objektgröße + + Update user + Benutzer aktualisieren + + src/app/core/auth/user-form/user-form.component.ts + 221 + - - -- Select stripe unit -- - -- Stripe-Einheit auswählen -- + + You were automatically logged out because your roles have been changed. + Sie wurden automatisch abgemeldet, da Ihre Rollen geändert wurden. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - - - from - - - from - + + Updated user '' + Benutzer '' aktualisiert + + src/app/core/auth/user-form/user-form.component.ts + 283 + + + + User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + - - '/' and '@' are not allowed. - '/' und '@' sind nicht zulässig. + + Email + E-Mail-Adresse + + src/app/core/auth/user-list/user-list.component.ts + 98 + - - -- No namespaces available -- - -- Keine Namensräume verfügbar -- + + Roles + Rollen + + src/app/core/auth/user-list/user-list.component.ts + 104 + + + + Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - - -- Select a namespace -- - -- Namensraum auswählen -- + + Deleted user '' + Benutzer '' gelöscht + + src/app/core/auth/user-list/user-list.component.ts + 156 + - - You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + + Failed to delete user '' + Fehler beim Löschen von Benutzer '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - - Data pool - Datenpool + + You are currently logged in as ''. + Sie sind aktuell als '' angemeldet. + + src/app/core/auth/user-list/user-list.component.ts + 172 + - - You have to increase the size. - Sie müssen die Größe erhöhen. + + Old password + Altes Passwort + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + - - This field is required because stripe count is defined! - Dies ist ein Pflichtfeld, da eine Stripe-Anzahl definiert wurde! + + New password + Neues Passwort + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + - - Stripe unit is greater than object size. - Die Stripe-Einheit ist größer als die Objektgröße. + + Confirm new password + Neues Passwort bestätigen + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + - - This field is required because stripe unit is defined! - Dies ist ein Pflichtfeld, da eine Stripe-Einheit definiert wurde! + + password + Passwort + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - - Stripe count must be greater than 0. - Die Stripe-Anzahl muss größer als 0 sein. + + Updated user password" + Benutzerpasswort aktualisiert + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + + + + Selected Object Gateway: + Ausgewähltes Objektgateway: + + src/app/core/context/context.component.html + 5 + + + + Select Object Gateway + Objektgateway auswählen + + src/app/core/context/context.component.html + 12 + + + + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + + + + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + + + + + + src/app/core/error/error.component.html + 33 + - - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + + Page not Found + Seite nicht gefunden + + src/app/core/error/error.component.html + 53 + + + + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + Leider konnte der gewünschte Inhalt nicht gefunden werden. Die angeforderte Seite wurde vielleicht geändert oder verschoben. + + src/app/core/error/error.component.html + 56,57 + - - Data Pool - Datenpool + + Go To Dashboard + Dashboard öffnen + + src/app/core/error/error.component.html + 65 + - - Created - Erstellt + + Page Not Found + Seite nicht gefunden + + src/app/core/error/error.ts + 10 + - - Provisioned - Bereitgestellt + + Sorry, we couldn’t find what you were looking for. + The page you requested may have been changed or moved. + Leider konnte der gewünschte Inhalt nicht gefunden werden. +Die angeforderte Seite wurde vielleicht geändert oder verschoben. + + src/app/core/error/error.ts + 11,12 + - - Total provisioned - Bereitgestellt gesamt + + Access Denied + Zugang verweigert + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + - - Striping unit - Striping-Einheit + + Sorry, you don’t have permission to view this page or resource. + Sie haben leider keine Berechtigung sich diese Seite oder Ressource anzusehen. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + - - Striping count - Striping-Anzahl + + User Denied + Benutzer abgelehnt + + src/app/core/error/error.ts + 23 + - - Parent - Übergeordnet + + Sorry, the user does not exist in Ceph. + You'll be logged out from the Identity Provider when you retry logging in. + Der Benutzer ist in Ceph leider nicht enthalten. +Sie werden vom Identitätsanbieter abgemeldet, wenn Sie versuchen, sich erneut anzumelden. + + src/app/core/error/error.ts + 24,25 + - - Block name prefix - Präfix für Blockname + + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + - - Order - Reihenfolge + + Help + Hilfe + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + - - Format Version - Format Version + + Security + Sicherheit + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + - - N/A - n. v. + + Trademarks + Marken + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + - - This setting overrides the global value - Diese Einstellung überschreibt den globalen Wert + + Dashboard Settings + Dashboard-Einstellungen + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + - - Image - Image + + User management + Benutzerverwaltung + + src/app/core/navigation/administration/administration.component.html + 17 + - - This is the global value. No value for this option has been set for this image. - Dies ist der globale Wert. Kein Wert für diese Option wurde für dieses Image festgelegt. + + Telemetry configuration + Telemetriekonfiguration + + src/app/core/navigation/administration/administration.component.html + 21 + - - Global - Global + + Help + Hilfe + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + - - Key - Key + + documentation + Dokumentation + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + - - RBD Configuration - RBD-Konfiguration + + API + API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + - - Remove the local configuration value. The parent configuration value will be inherited and used instead. - Entfernen Sie den lokalen Konfigurationswert. Stattdessen wird der übergeordnete Konfigurationswert übernommen und verwendet. + + About + Über + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + + + + Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + - - The minimum value is 0 - The minimum value is 0 + + Logged in user + Angemeldeter Benutzer + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + + + + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + - - Create Bootstrap Token - Create Bootstrap Token + + Change password + Passwort ändern + + src/app/core/navigation/identity/identity.component.html + 20 + + + + Log out + + src/app/core/navigation/identity/identity.component.html + 25 + - - Import Bootstrap Token - Import Bootstrap Token + + Toggle navigation + Navigation umschalten + + src/app/core/navigation/navigation/navigation.component.html + 25 + + + + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + + + + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + - - Size has to be at least - or more - - Size has to be at least - or more - + + CRUSH map + CRUSH-Zuordnung + + src/app/core/navigation/navigation/navigation.component.html + 141 + + + + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + - - Size has to be at most - or less - - Size has to be at most - or less - + + iSCSI + iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + + + + NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + + + + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + - - # Targets - # Targets + + Buckets + Buckets + + src/app/core/navigation/navigation/navigation.component.html + 231 + + + + Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + - - # Sessions - # Sessions + + NFS + NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + + + + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + + + + File Systems + Dateisysteme + + src/app/core/navigation/navigation/navigation.component.html + 281 + + + + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + - - Image - Image + + Logs + Protokolle + + src/app/core/navigation/navigation/navigation.component.html + 315 + + + + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + + + + Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + + + + Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + - - Backstore - Backstore + + Manager Modules + Manager-Module + + src/app/core/navigation/navigation/navigation.component.html + 369 + - - Read Bytes - Read Bytes + + Tasks and Notifications + Aufträge und Benachrichtigungen + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + + + + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + - - Write Bytes - Write Bytes + + The name of the node under which data should be placed. + Der Name des Knotens, unter dem die Daten abgelegt werden sollen. + + src/app/shared/api/crush-rule.service.ts + 14 + - - Read Ops - Read Ops + + The type of CRUSH nodes across which we should separate replicas. + Der Typ der CRUSH-Knoten, über die Replikas getrennt werden sollen. + + src/app/shared/api/crush-rule.service.ts + 15 + + + + The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + - - Write Ops - Write Ops + + Each object is split in data-chunks parts, each stored on a different OSD. + Jedes Objekt wird in Datenblöcke aufgeteilt und jeweils auf einem anderen OSD gespeichert. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + - - A/O Since - A/O Since + + Compute coding chunks for each object and store them on different OSDs. + The number of coding chunks is also the number of OSDs that can be down without losing data. + Berechnen Sie Codierungsdatenblöcke für jedes Objekt und speichern Sie sie auf unterschiedlichen OSDs. + Die Anzahl der Codierungsdatenblöcke entspricht auch der Anzahl der OSDs, die ausfallen können, ohne dass Daten verloren gehen. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + - - Gateways - Gateways + + The jerasure plugin is the most generic and flexible plugin, + it is also the default for Ceph erasure coded pools. + Das jerasure-Modul ist das allgemeinste und flexibelste Modul + und fungiert auch als der Standard für Ceph-Pools mit Löschcodierung. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + - - Target - Target + + The more flexible technique is reed_sol_van : it is enough to set k + and m. The cauchy_good technique can be faster but you need to chose the packetsize + carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents + in the sense that they can only be configured with m=2. + Die flexiblere Technik ist 'reed_sol_van :', wobei es ausreicht, k + und m festzulegen. Die Technik 'cauchy_good' kann schneller sein. Sie müssen jedoch die Paketgröße sorgfältig + auswählen. Sämtliche 'reed_sol_r6_op'-, 'liberation'-, 'blaum_roth'- und 'liber8tion'-Vorgänge sind dahingehend RAID6-Entsprechungen, + dass sie nur mit 'm=2' konfiguriert werden können. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + - - Portals - Portals + + The encoding will be done on packets of bytes size at a time. + Choosing the right packet size is difficult. + The jerasure documentation contains extensive information on this topic. + Die Kodierung wird jeweils für Pakete von Bytegröße durchgeführt. + Die Wahl der richtigen Packungsgröße ist schwierig. + Die jerasure-Dokumentation enthält umfangreiche Informationen zu diesem Thema. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + + + + With the jerasure plugin, when an erasure coded object is stored on + multiple OSDs, recovering from the loss of one OSD requires reading from all the others. + For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading + from the eleven others to repair. + + The lrc erasure code plugin creates local parity chunks to be able to recover using + less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create + an additional parity chunk for every four OSDs. When a single OSD is lost, it can be + recovered with only four OSDs instead of eleven. + Bei Verwendung des Jerasure-Moduls, wenn ein Objekt mit Löschcodierung auf mehreren OSDs gespeichert ist, + müssen alle anderen OSDs gelesen werden, um die verloren gegangenen Daten eines OSDs wiederherzustellen. + Wenn jerasure beispielsweise mit 'k=8' und 'm=4' konfiguriert ist, + müssen bei Verlust eines OSDs zum Reparieren die elf anderen gelesen werden. + + Das lrc-Löschcode-Modul erstellt lokale Paritätsdatenblöcke, um die Wiederherstellung mit weniger OSDs auszuführen. + Wenn lrc beispielsweise mit 'k=8', 'm=4' und 'l=4' konfiguriert ist, wird ein zusätzlicher Paritätsdatenblock für jeweils vier OSDs erstellt. + Geht ein einzelnes OSD verloren, kann es mit nur vier OSDs anstelle + von elf wiederhergestellt werden. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + - - Images - Images + + Group the coding and data chunks into sets of size locality. For instance, + for k=4 and m=2, when locality=3 two groups of three are created. Each set can + be recovered without reading chunks from another set. + Gruppieren Sie die Codierungs- und Datenblöcke in Sätze entsprechend dem Speicherort. + Beispielsweise werden für 'k=4' und 'm=2', wenn der Speicherort '3' entspricht, zwei Dreiergruppen erstellt. + Jeder Satz kann wiederhergestellt werden, ohne dass Datenblöcke aus einem anderen Satz gelesen werden. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + - - Unavailable gateway(s) - Unavailable gateway(s) + + The type of the crush bucket in which each set of chunks defined + by l will be stored. For instance, if it is set to rack, each group of l chunks will be + placed in a different rack. It is used to create a CRUSH rule step such as step choose + rack. If it is not set, no such grouping is done. + Der Typ des Crush-Buckets, in dem jeder durch l definierte Satz von Datenblöcken gespeichert wird. + Wenn er beispielsweise auf 'rack' festgelegt ist, wird jede Gruppe an l-Datenblöcken in einem anderen Rack platziert. + Er wird zum Erstellen eines CRUSH-Regelschritts verwendet, beispielsweise für einen Schritt zum Auswählen des Racks. + Wenn er nicht festgelegt ist, wird keine solche Gruppierung vorgenommen. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + - - Target has active sessions - Target has active sessions + + The isa plugin encapsulates the ISA library. It only runs on Intel processors. + Das isa-Modul kapselt die ISA-Bibliothek und wird nur auf Intel-Prozessoren ausgeführt. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + - - iSCSI target - iSCSI target + + The ISA plugin comes in two Reed Solomon forms. + If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + Das ISA-Modul wird in zwei Reed Solomon-Formularen bereitgestellt. + Wenn 'reed_sol_van' festgelegt ist, entspricht dies Vandermonde. Ist 'cauchy' festgelegt, entspricht dies 'Cauchy'. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + - - iSCSI Targets not available - iSCSI-Ziele nicht verfügbar + + The shec plugin encapsulates the multiple SHEC library. + It allows ceph to recover data more efficiently than Reed Solomon codes. + Das shec-Modul kapselt die SHEC-Mehrfachbibliothek. + Dadurch kann ceph Daten effizienter wiederherstellen als Reed Solomon-Codes. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + + The number of parity chunks each of which includes each data chunk in its + calculation range. The number is used as a durability estimator. For instance, if c=2, + 2 OSDs can be down without losing data. + Die Anzahl der Paritätsdatenblöcke, von denen jeder jeden Datenblock in seinem Berechnungsbereich enthält. + Die Anzahl wird als eine Dauerhaftigkeitsschätzung verwendet. Wenn beispielsweise 'c=2' vorliegt, + können 2 OSDs ausfallen, ohne dass Daten verloren gehen. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + - - Available information: - Verfügbare Informationen: + + CLAY (short for coupled-layer) codes are erasure codes designed to + bring about significant savings in terms of network bandwidth and disk IO when a failed + node/OSD/rack is being repaired. + CLAY Codes (kurz für Coupled Layer) sind Löschcodes für + erhebliche Einsparungen in Bezug auf Netzwerkbandbreite und Festplatten-IO, wenn ein ausgefallener +  Knoten/OSD/Rack repariert wird. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + - - Discovery authentication - Ermittlungsauthentifizierung + + Number of OSDs requested to send data during recovery of a single chunk. + d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better + the savings. + Anzahl der OSDs, die während der Wiederherstellung eines einzelnen Blocks zum Senden von Daten aufgefordert werden. + d muss so gewählt werden, dass k+1 <= d <= k+m-1. Je größer d ist, desto höher +  die Einsparungen. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + - - Changing these parameters from their default values is usually not necessary. - Eine Änderung dieser Parameter von ihren Standardwerten ist in der Regel nicht erforderlich. + + scalar_mds specifies the plugin that is used as a building block + in the layered construction. It can be one of jerasure, isa, shec. + scalar_mds gibt das Modul an, das als Baustein + in der geschichteten Konstruktion verwendet wird. Es kann jerasure, isa oder shec sein. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + - - Configure - Konfigurieren + + technique specifies the technique that will be picked + within the 'scalar_mds' plugin specified. Supported techniques + are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', + 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', + 'cauchy' for isa and 'single', 'multiple' for shec. + technique gibt die Technik an, die innerhalb des Moduls + 'scalar_mds' angegeben ist. Unterstützte Techniken + sind 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', + 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', + 'cauchy' für isa und 'single', 'multiple' für shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + - - Settings - Einstellungen + + The name of the crush bucket used for the first step of the CRUSH rule. + For instance step take default. + Der Name des für den ersten Schritt der CRUSH-Regel verwendeten Crush-Buckets. + Beispielsweise 'step take default'. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + - - Backstore - Backstore + + Ensure that no two chunks are in a bucket with the same failure + domain. For instance, if the failure domain is host no two chunks will be stored on the same + host. It is used to create a CRUSH rule step such as step chooseleaf host. + Stellen Sie sicher, dass sich keine zwei Datenblöcke in einem Bucket mit derselben Ausfalldomäne befinden. + Wenn die Ausfalldomäne beispielsweise als Host fungiert, werden keine zwei Datenblöcke auf demselben Host gespeichert. + Er wird zum Erstellen eines CRUSH-Regelschritts verwendet, beispielsweise 'step chooseleaf host'. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + + + + Number of failure domains to map. Results in a CRUSH MSR rule being created. + Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + + + + Maximum number of OSDs to place in each failure domain -- + defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. + Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + - - Identifier - Bezeichner + + Set the directory name from which the erasure code plugin is loaded. + Legen Sie den Verzeichnisnamen fest, über den das Löschcode-Modul geladen wird. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + - - lun - lun + + Allows all operations + Lässt alle Vorgänge zu + + src/app/shared/api/nfs.service.ts + 23 + - - wwn - wwn + + Allows only operations that do not modify the server + Lässt nur Vorgänge zu, die den Server nicht ändern + + src/app/shared/api/nfs.service.ts + 27 + - - There are no portals available. - There are no portals available. + + Allows no access at all + Lässt überhaupt keinen Zugriff zu + + src/app/shared/api/nfs.service.ts + 31 + + + + Please specify a filesystem volume. + Bitte spezifizieren Sie ein Dateisystem-Volume. + + src/app/shared/api/nfs.service.ts + 96 + - - There are no images available. - There are no images available. + + The feature is disabled because Orchestrator is not available. + Diese Funktion ist deaktiviert, da Orchestrator nicht verfügbar ist. + + src/app/shared/api/orchestrator.service.ts + 17 + - - There are no images available. Please make sure you add an image to the target. - There are no images available. Please make sure you add an image to the target. + + The Orchestrator backend doesn't support this feature. + Das Orchestrator-Backend unterstützt diese Funktion nicht. + + src/app/shared/api/orchestrator.service.ts + 18 + - - There are no initiators available. Please make sure you add an initiator to the target. - There are no initiators available. Please make sure you add an initiator to the target. + + -- Select the priority -- + -- Priorität auswählen -- + + src/app/shared/api/osd.service.ts + 34 + - - target - target + + Low + Niedrig + + src/app/shared/api/osd.service.ts + 44 + - - Target IQN - Ziel-IQN + + High + Hoch + + src/app/shared/api/osd.service.ts + 64 + - - Portals - Portale + + The user list data might be stale. If needed, you can manually reload it. + Die Daten der Benutzerliste könnten veraltet sein. Bei Bedarf können Sie sie manuell neu laden. + + src/app/shared/classes/list-with-details.class.ts + 23 + - - Add portal - Portal hinzufügen + + Retrieving data for . + Daten für werden abgerufen. + + src/app/shared/classes/table-status-view-cache.ts + 16 + - - Add image - Image hinzufügen + + Retrieving data. + Daten werden abgerufen. + + src/app/shared/classes/table-status-view-cache.ts + 16 + - - ACL authentication - ACL-Authentifizierung + + Please wait... + Bitte warten... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - - IQN has wrong pattern. - IQN hat ein fehlerhaftes Muster. + + Displaying previously cached data for . + Zuvor zwischengespeicherte Daten für werden angezeigt. + + src/app/shared/classes/table-status-view-cache.ts + 23 + - - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + + Displaying previously cached data. + Zuvor zwischengespeicherte Daten werden angezeigt. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - Zum Beispiel: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + Could not load data for . + Konnte Daten für nicht laden. + + src/app/shared/classes/table-status-view-cache.ts + 30 + - - More information - Weitere Informationen + + Could not load data. + Konnte Daten nicht laden. + + src/app/shared/classes/table-status-view-cache.ts + 31 + - - This target has modified advanced settings. - Erweiterte Einstellungen bei diesem Ziel wurden geändert. + + Please check the cluster health. + Prüfen Sie die Clusterintegrität. + + src/app/shared/classes/table-status-view-cache.ts + 33 + - - At least - gateways are required. - - Es sind mindestens - Gateways erforderlich. - + + Error + Fehler + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + - - Backstore: - .  - - Backstore: - .  - + + Information + Informationen + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + - - This image has modified settings. - Einstellungen bei diesem Image wurden geändert. + + Success + Erfolg + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + + + + Danger + Gefahr + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + + + + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + - - Duplicated LUN numbers. - Duplicated LUN numbers. + + Remove the custom configuration value. The default configuration will be inherited and used instead. + Entfernen Sie den aktuellen Konfigurationswert. Stattdessen wird der Standard-Konfigurationswert übernommen und verwendet. + + src/app/shared/components/config-option/config-option.component.html + 50 + - - Duplicated WWN. - Duplicated WWN. + + The entered value is too high! It must not be greater than . + Der eingegebene Wert ist zu groß! Er darf nicht größer als sein. + + src/app/shared/components/config-option/config-option.component.html + 66 + - - Mutual User - Gemeinsamer Benutzer + + The entered value is too low! It must not be lower than . + Der eingegebene Wert ist zu niedrig! Er darf nicht kleiner als sein. + + src/app/shared/components/config-option/config-option.component.html + 69 + - - Mutual Password - Gemeinsames Passwort + + Copy to Clipboard + In Zwischenablage kopieren + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + Are you sure that you want to ? + Möchten Sie wirklich ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + Are you sure that you want to the selected items? + Möchten Sie die gewählten Einträge wirklich ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - - Initiators - Initiatoren + + Are you sure that you want to the selected ? + Möchten Sie die gewählten wirklich ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + - - Add initiator - Initiator hinzufügen + + Yes, I am sure. + Ja, ich bin sicher. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + - - Initiator - Initiator + + documentation + Dokumentation + + src/app/shared/components/doc/doc.component.ts + 12 + - - Client IQN - Client-IQN + + Download + Herunterladen + + src/app/shared/components/download-button/download-button.component.ts + 15 + + + + Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + - - Initiator IQN needs to be unique. - Initiator-IQN muss eindeutig sein. + + This field is required. + Dies ist ein Pflichtfeld. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + + + + Size must be a number or in a valid format. eg: 5 GiB + Die Größe muss entweder eine Zahl sein, oder in einem gültigen Format angegeben werden, z. B. 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + - - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + An error occurred. + Ein Fehler ist aufgetreten. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + - - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + Loading panel data... + Bereichsdaten werden geladen... + + src/app/shared/components/grafana/grafana.component.html + 3 + - - Initiator belongs to a group. Images will be configure in the group. - Der Initiator gehört zu einer Gruppe. Images werden in der Gruppe konfiguriert. + + Please consult the on how to configure and enable the monitoring functionality. + Lesen Sie zum Konfigurieren und Aktivieren der Überwachungsfunktion. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - - No items added. - Keine Elemente hinzugefügt. + + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + Das Grafana-Dashboard ist nicht vorhanden. In der wird beschrieben, wie Grafana-Dashboards hinzugefügt werden. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + - - Groups - Gruppen + + Grafana Time Picker + Grafana-Zeitauswahl + + src/app/shared/components/grafana/grafana.component.html + 21 + - - Add group - Gruppe hinzufügen + + Reset Settings + Einstellungen für Zurücksetzungen + + src/app/shared/components/grafana/grafana.component.html + 37 + + + + Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + + + + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + - - Group - Gruppe + + Last 1 hour (Default) + Letzte Stunde (Standard) + + src/app/shared/components/grafana/grafana.component.ts + 58 + - - Updated discovery authentication - Updated discovery authentication + + Yesterday + Gestern + + src/app/shared/components/grafana/grafana.component.ts + 78 + - - Discovery Authentication - Ermittlungsauthentifizierung + + Today so far + Heute bisher + + src/app/shared/components/grafana/grafana.component.ts + 82 + - - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + Day before yesterday + Vorgestern + + src/app/shared/components/grafana/grafana.component.ts + 86 + - - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + Last 2 days + Letzte 2 Tage + + src/app/shared/components/grafana/grafana.component.ts + 90 + - - Retrieving data for - . - - Retrieving data for - . - + + This day last week + Dieser Tag letzte Woche + + src/app/shared/components/grafana/grafana.component.ts + 94 + - - Retrieving data. - Retrieving data. + + Previous week + Vorwoche + + src/app/shared/components/grafana/grafana.component.ts + 98 + - - Please wait... - Please wait... + + This week so far + Diese Woche bisher + + src/app/shared/components/grafana/grafana.component.ts + 102 + - - Displaying previously cached data for - . - - Displaying previously cached data for - . - + + Last 7 days + Letzte 7 Tage + + src/app/shared/components/grafana/grafana.component.ts + 106 + - - Displaying previously cached data. - Displaying previously cached data. + + Previous month + Vormonat + + src/app/shared/components/grafana/grafana.component.ts + 110 + - - Could not load data for - . - - Could not load data for - . - + + This month so far + Dieser Monat bisher + + src/app/shared/components/grafana/grafana.component.ts + 114 + - - Could not load data. - Could not load data. + + Last 30 days + Letzte 30 Tage + + src/app/shared/components/grafana/grafana.component.ts + 118 + - - Please check the cluster health. - Please check the cluster health. + + Last 90 days + Letzte 90 Tage + + src/app/shared/components/grafana/grafana.component.ts + 122 + - - Current - Current + + Last 6 months + Letzte 6 Monate + + src/app/shared/components/grafana/grafana.component.ts + 126 + - - iSCSI Topology - iSCSI-Topologie + + Last 1 year + Letztes Jahr + + src/app/shared/components/grafana/grafana.component.ts + 130 + - - Overview - Übersicht + + Previous year + Vorjahr + + src/app/shared/components/grafana/grafana.component.ts + 134 + - - Targets - Ziele + + This year so far + Dieses Jahr bisher + + src/app/shared/components/grafana/grafana.component.ts + 138 + - - Must be greater than or equal to - . - - Muss grösser oder gleich - sein. - + + Last 2 years + Letzte 2 Jahre + + src/app/shared/components/grafana/grafana.component.ts + 142 + - - Must be less than or equal to - . - - Muss kleiner oder gleich - sein. - + + Last 5 years + Letzte 5 Jahre + + src/app/shared/components/grafana/grafana.component.ts + 146 + - - Quality of Service - Quality of Service + + Select a Language + Sprache auswählen + + src/app/shared/components/language-selector/language-selector.component.html + 7 + - - BPS Limit - BPS Limit + + Clear notifications + Benachrichtigungen löschen + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + - - The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + + Remove notification + Benachrichtigungen entfernen + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + + + + Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + + + + Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + - - IOPS Limit - IOPS Limit + + Duration: + Dauer: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + - - The desired limit of IO operations per second. - The desired limit of IO operations per second. + + There are no notifications. + Es sind keine Benachrichtigungen verfügbar. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + - - Read BPS Limit - Read BPS Limit + + The feature is not supported in the current Orchestrator. + Diese Funktion wird im aktuellen Orchestrator nicht unterstützt. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - - The desired limit of read bytes per second. - The desired limit of read bytes per second. + + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + Orchestrator ist nicht verfügbar. Lesen Sie zum Konfigurieren und Aktivieren der Funktion. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - - Read IOPS Limit - Read IOPS Limit + + Your password will expire in less than 1 day. Click here to change it now. + Das Passwort läuft inweniger als 1 Tag ab. Klicken Siehier, um es jetzt zu ändern. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - - The desired limit of read operations per second. - The desired limit of read operations per second. + + Your password will expire in day(s). Click here to change it now. + Das Passwort läuft in Tag(en) ab. Klicken Sie hier, um es jetzt zu ändern. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + - - Write BPS Limit - Write BPS Limit + + Refresh + Aktualisieren + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + - - The desired limit of write bytes per second. - The desired limit of write bytes per second. + + No items selected. + Keine Elemente ausgewählt. + + src/app/shared/components/select/select-messages.model.ts + 12 + - - Write IOPS Limit - Write IOPS Limit + + Deselect item to select again + Elementauswahl zum erneuten Auswählen aufheben + + src/app/shared/components/select/select-messages.model.ts + 14 + - - The desired limit of write operations per second. - The desired limit of write operations per second. + + Selection limit reached + Auswahllimit erreicht + + src/app/shared/components/select/select-messages.model.ts + 15 + - - BPS Burst - BPS Burst + + Filter tags + Tags filtern + + src/app/shared/components/select/select-messages.model.ts + 17 + - - The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + + Add badge + Badge hinzufügen + + src/app/shared/components/select/select-messages.model.ts + 18 + - - IOPS Burst - IOPS Burst + + There are no items available. + Keine Elemente verfügbar. + + src/app/shared/components/select/select-messages.model.ts + 19 + + + + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + Die Ceph-Community braucht Ihre Unterstützung für weitere Optimierung: Bitte aktivieren Sie das Telemetrie-Modul. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + - - The desired burst limit of IO operations. - The desired burst limit of IO operations. + + Telemetry activation reminder muted + Erinnerung an Telemetrieaktivierung stummgeschaltet + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + - - Read BPS Burst - Read BPS Burst + + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + Sie können das Modul jederzeit auf der Telemetriekonfigurationsseite (<b>Dashboard-Einstellungen</b>-><b>Telemetriekonfiguration</b>) aktivieren. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + + + + Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + + + + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + + + + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + + + + usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + + + + + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + + + + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + + + + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + + + + Export + Export + + src/app/shared/constants/app.constants.ts + 155 + + + + Import + Import + + src/app/shared/constants/app.constants.ts + 157 + + + + Migrate + + src/app/shared/constants/app.constants.ts + 159 + - - The desired burst limit of read bytes. - The desired burst limit of read bytes. + + Add + Hinzufügen + + src/app/shared/constants/app.constants.ts + 165 + - - Read IOPS Burst - Read IOPS Burst + + Set + Einstellen + + src/app/shared/constants/app.constants.ts + 166 + - - The desired burst limit of read operations. - The desired burst limit of read operations. + + Submit + Absenden + + src/app/shared/constants/app.constants.ts + 167 + - - Write BPS Burst - Write BPS Burst + + Remove + Entfernen + + src/app/shared/constants/app.constants.ts + 170 + - - The desired burst limit of write bytes. - The desired burst limit of write bytes. + + Unset + Einstellung aufheben + + src/app/shared/constants/app.constants.ts + 171 + - - Write IOPS Burst - Write IOPS Burst + + Cancel + Abbrechen + + src/app/shared/constants/app.constants.ts + 176 + - - The desired burst limit of write operations. - The desired burst limit of write operations. + + Preview + Vorschau + + src/app/shared/constants/app.constants.ts + 177 + - - Issue - Issue + + Move + Verschieben + + src/app/shared/constants/app.constants.ts + 178 + - - Progress - Progress + + Next + Weiter + + src/app/shared/constants/app.constants.ts + 181 + - - Edit Mode - Edit Mode + + Back + Zurück + + src/app/shared/constants/app.constants.ts + 182 + - - Add Peer - Add Peer + + Clone + Klonen + + src/app/shared/constants/app.constants.ts + 185 + - - Edit Peer - Edit Peer + + Copy + Kopieren + + src/app/shared/constants/app.constants.ts + 186 + - - Delete Peer - Delete Peer + + Deep Scrub + Umfassender Scrub + + src/app/shared/constants/app.constants.ts + 187 + - - Mode - Mode + + Destroy + Vernichten + + src/app/shared/constants/app.constants.ts + 188 + - - Leader - Leader + + Evict + Vertreiben + + src/app/shared/constants/app.constants.ts + 189 + - - # Local - # Local + + Flatten + Vereinfachen + + src/app/shared/constants/app.constants.ts + 190 + - - # Remote - # Remote + + Mark Down + Als ausgefallen markieren + + src/app/shared/constants/app.constants.ts + 191 + - - Health - Health + + Mark In + Mit Befehl 'In' markieren + + src/app/shared/constants/app.constants.ts + 192 + - - mirror peer - mirror peer + + Mark Lost + Als verloren markieren + + src/app/shared/constants/app.constants.ts + 193 + - - {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + + Mark Out + Mit Befehl 'Out' markieren + + src/app/shared/constants/app.constants.ts + 194 + - - - pool mirror peer - - - pool mirror peer - + + Protect + Schützen + + src/app/shared/constants/app.constants.ts + 195 + - - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + + Rename + Umbenennen + + src/app/shared/constants/app.constants.ts + 197 + - - Cluster Name - Clustername + + Restore + Wiederherstellen + + src/app/shared/constants/app.constants.ts + 198 + - - CephX ID - CephX-ID + + Reweight + Neu gewichten + + src/app/shared/constants/app.constants.ts + 199 + - - CephX ID... - CephX-ID... + + Scrub + Scrub + + src/app/shared/constants/app.constants.ts + 201 + - - Monitor Addresses - Adressen der Monitore + + Show + Anzeigen + + src/app/shared/constants/app.constants.ts + 202 + - - Comma-delimited addresses... - Kommagetrennte Adressen... + + Move to Trash + In Papierkorb verschieben + + src/app/shared/constants/app.constants.ts + 203 + - - CephX Key - CephX-Schlüssel + + Unprotect + Schutz aufheben + + src/app/shared/constants/app.constants.ts + 204 + - - Base64-encoded key... - Base64-codierter Schlüssel... + + Change + Ändern + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + + + + Enter Maintenance + Wartung beginnen + + src/app/shared/constants/app.constants.ts + 207 + + + + Exit Maintenance + Wartung verlassen + + src/app/shared/constants/app.constants.ts + 208 + + + + Authorize + + src/app/shared/constants/app.constants.ts + 209 + + + + Start Drain + Entleeren starten + + src/app/shared/constants/app.constants.ts + 211 + + + + Stop Drain + Entleeren stoppen + + src/app/shared/constants/app.constants.ts + 212 + + + + Resync + + src/app/shared/constants/app.constants.ts + 213 + - - The cluster name is not valid. - Der Clustername ist ungültig. + + Recreate + Wiederherstellen + + src/app/shared/constants/app.constants.ts + 215 + - - The CephX ID is not valid. - Die CephX ID ist ungültig. + + Expire + Ablaufen + + src/app/shared/constants/app.constants.ts + 216 + + + + Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + + + + Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + + + + Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + + + + Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + + + + Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + + + + Promote + + src/app/shared/constants/app.constants.ts + 224 + + + + Demote + + src/app/shared/constants/app.constants.ts + 225 + + + + Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + + + + Activate + + src/app/shared/constants/app.constants.ts + 229 + + + + Deactivate + Deaktivieren + + src/app/shared/constants/app.constants.ts + 230 + + + + Attach + + src/app/shared/constants/app.constants.ts + 232 + + + + Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + - - The monitory address is not valid. - Die Anrede ist ungültig. + + Deleted + Gelöscht + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + - - CephX key must be base64 encoded. - CephX-Schlüssel muss base64-codiert sein. + + Added + Hinzugefügt + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + - - Edit pool mirror mode - Spiegelungsmodus für Pool bearbeiten + + Removed + Entfernt + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + + Edited + Bearbeitet + + src/app/shared/constants/app.constants.ts + 298 + - - Peer clusters must be removed prior to disabling mirror. - Vor dem Deaktivieren der Spiegelung müssen Peer-Cluster entfernt werden. + + Canceled + Abgebrochen + + src/app/shared/constants/app.constants.ts + 299 + - - Site Name - Site-Name + + Previewed + Vorschau angezeigt + + src/app/shared/constants/app.constants.ts + 300 + - - Instance - Instance + + Moved + Verschoben + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + - - Import Bootstrap Token - Bootstrap-Token importieren + + Cloned + Geklont + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + + Copied + Kopiert + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + - - Direction - Richtung + + Deep Scrubbed + Umfassender Scrub + + src/app/shared/constants/app.constants.ts + 306 + - - Token - Token + + Destroyed + Vernichtet + + src/app/shared/constants/app.constants.ts + 307 + - - Generated token... - Erzeugtes Token... + + Flattened + Vereinfacht + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + - - At least one pool is required. - Mindestens ein Pool ist erforderlich. + + Marked Down + Als ausgefallen markiert + + src/app/shared/constants/app.constants.ts + 309 + - - The token is invalid. - Der Token ist ungültig. + + Marked In + Markiert in + + src/app/shared/constants/app.constants.ts + 310 + - - Create Bootstrap Token - Bootstrap-Token erstellen + + Marked Lost + Als verloren markieren + + src/app/shared/constants/app.constants.ts + 311 + - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - + + Marked Out + Als ausgefallen markiert + + src/app/shared/constants/app.constants.ts + 312 + - - Generate - Erzeugen + + Protected + Geschützt + + src/app/shared/constants/app.constants.ts + 313 + - - Close - Schließen + + Purged + Bereinigt + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + - - Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + + Renamed + Umbenannt + + src/app/shared/constants/app.constants.ts + 315 + - - Required rules for passwords: - Required rules for passwords: + + Restored + Wiederhergestellt + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + - - Must contain at least - characters - - Must contain at least - characters - + + Reweighted + Neu gewichtet + + src/app/shared/constants/app.constants.ts + 317 + - - Must not be the same as the previous one - Must not be the same as the previous one + + Rolled back + Rollback wurde ausgeführt + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + - - Cannot contain the username - Cannot contain the username + + Scrubbed + Scrub + + src/app/shared/constants/app.constants.ts + 319 + - - Cannot contain any configured keyword - Cannot contain any configured keyword + + Showed + Angezeigt + + src/app/shared/constants/app.constants.ts + 320 + - - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + + Moved to Trash + In den Papierkorb verschoben + + src/app/shared/constants/app.constants.ts + 321 + - - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + + Unprotected + Schutz aufgehoben + + src/app/shared/constants/app.constants.ts + 322 + - - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + + Recreated + Wiederhergestellt + + src/app/shared/constants/app.constants.ts + 326 + - - erasure code profile - erasure code profile + + Expired + Abgelaufen + + src/app/shared/constants/app.constants.ts + 327 + + + + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + + + + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + + + + Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + + + + Close + Schließen + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + + + + Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + + + + Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + + + + Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + + + + Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + + + + Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + + + + Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + - - crush rule - crush rule + + Clear filters + Filter löschen + + src/app/shared/datatable/table/table.component.html + 160 + - - Pool type - Pooltyp + + selected + ausgewählt + + src/app/shared/datatable/table/table.component.html + 221 + + X selected - - -- Select a pool type -- - -- Pooltyp auswählen -- + + found + gefunden + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found - - Applications - Anwendungen + + total + insgesamt + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total + + + + + src/app/shared/datatable/table/table.component.html + 328 + + + + + + src/app/shared/datatable/table/table.component.html + 328,330 + - - Max bytes - Max. Bytes + + Expand/Collapse Row + Zeile erweitern/reduzieren + + src/app/shared/datatable/table/table.component.html + 349 + - - Leave it blank or specify 0 to disable this quota. - Lassen Sie das Feld leer oder geben Sie 0 an, um dieses Quota zu deaktivieren. + + Failed to load data. + Daten konnten nicht geladen werden. + + src/app/shared/datatable/table/table.component.ts + 663 + - - A valid quota should be greater than 0. - Ein gültiges Kontingent sollte größer als 0 sein. + + Loading form data... + Formulardaten werden geladen... + + src/app/shared/directives/form-loading.directive.ts + 20 + - - Max objects - Max. Objekte + + Form data could not be loaded. + Formulardaten konnten nicht geladen werden. + + src/app/shared/directives/form-loading.directive.ts + 27 + - - The chosen Ceph pool name is already in use. - Der ausgewählte Poolname wird bereits verwendet. + + Size has to be at least or more + Größe muss mindestens oder mehr sein + + src/app/shared/forms/cd-validators.ts + 439 + - - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + + Size has to be at most or less + Größe muss mindestens oder weniger sein + + src/app/shared/forms/cd-validators.ts + 459 + + + + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title + + + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + + + + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + + + + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + - - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + + Yes + Ja + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + - - PG Autoscale - PG Autoskalierung + + No + Nein + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + - - Placement groups - Platzierungsgruppen + + in %s + in %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + - - Calculation help - Hilfe zur Berechnung + + %s ago + vor %s + + src/app/shared/pipes/relative-date.pipe.ts + 9 + - - At least one placement group is needed! - Es wird mindestens eine Platzierungsgruppe benötigt. + + a few seconds + einigen Sekunden + + src/app/shared/pipes/relative-date.pipe.ts + 10 + - - Your cluster can't handle this many PGs. Please recalculate the PG amount needed. - Ihr Cluster kann nicht so viele Platzierungsgruppen verarbeiten. Berechnen Sie die benötigte Anzahl an Platzierungsgruppen. + + %d seconds + %d Sekunden + + src/app/shared/pipes/relative-date.pipe.ts + 11 + - - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + + a minute + einer Minute + + src/app/shared/pipes/relative-date.pipe.ts + 12 + - - Replicated size - Reproduzierte Größe + + %d minutes + %d Minuten + + src/app/shared/pipes/relative-date.pipe.ts + 13 + - - Minimum: - - - Minimum: - - + + an hour + einer Stunde + + src/app/shared/pipes/relative-date.pipe.ts + 14 + - - Maximum: - - - Maximum: - - + + %d hours + %d Stunden + + src/app/shared/pipes/relative-date.pipe.ts + 15 + - - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + + a day + einem Tag + + src/app/shared/pipes/relative-date.pipe.ts + 16 + - - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + + %d days + %d Tagen + + src/app/shared/pipes/relative-date.pipe.ts + 17 + - - EC Overwrites - EC-Überschreibungen + + a week + einer Woche + + src/app/shared/pipes/relative-date.pipe.ts + 18 + - - CRUSH - CRUSH + + %d weeks + %d Wochen + + src/app/shared/pipes/relative-date.pipe.ts + 19 + - - Erasure code profile - Erasure-Coding-Profil + + a month + einem Monat + + src/app/shared/pipes/relative-date.pipe.ts + 20 + - - -- No erasure code profile available -- - -- Kein Erasure-Coding-Profil verfügbar -- + + %d months + %d Monaten + + src/app/shared/pipes/relative-date.pipe.ts + 21 + - - -- Select an erasure code profile -- - -- Erasure-Coding-Profil auswählen -- + + a year + einem Jahr + + src/app/shared/pipes/relative-date.pipe.ts + 22 + - - This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + + %d years + %d Jahren + + src/app/shared/pipes/relative-date.pipe.ts + 23 + - - Profile - Profile + + Required rules for passwords: + Erforderliche Regeln für Passwörter: + + src/app/shared/services/password-policy.service.ts + 22 + - - Used by pools - Used by pools + + Must contain at least characters + Muss mindestens Zeichen enthalten + + src/app/shared/services/password-policy.service.ts + 24 + - - Profile is not in use. - Profile is not in use. + + Must not be the same as the previous one + Darf nicht identisch zum vorherigen sein + + src/app/shared/services/password-policy.service.ts + 25 + - - Crush ruleset - Crush-Regelsatz + + Cannot contain the username + Darf nicht den Benutzernamen enthalten + + src/app/shared/services/password-policy.service.ts + 26 + - - A new crush ruleset will be implicitly created. - Ein neuer CRUSH Regelsatz wird implizit erstellt. + + Cannot contain any configured keyword + Darf keine der konfigurierten Schlüsselwörter enthalten + + src/app/shared/services/password-policy.service.ts + 27 + - - There are no rules. - Keine Regeln vorhanden. + + Cannot contain any repetitive characters e.g. "aaa" + Zeichen dürfen sich nicht wiederholen, z.B. "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - - -- Select a crush rule -- - -- Crush-Regel auswählen -- + + Cannot contain any sequential characters e.g. "abc" + Es dürfen keine aufeinander folgenden Zeichen enthalten sein, z.B. "abc" + + src/app/shared/services/password-policy.service.ts + 29 + - - This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + + Must consist of characters from the following groups: + * Alphabetic a-z, A-Z + * Numbers 0-9 + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Any other characters (signs) + Muss aus Zeichen aus den folgenden Gruppen bestehen: + * Alphabetisch a-z, A-Z + * Ziffern 0-9 + * Sonderzeichen: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Andere Zeichen (Symbole) + + src/app/shared/services/password-policy.service.ts + 30,34 + - - Crush rule - Crush-Regel + + Your matcher seems to match no currently defined rule or active alert. + Ihr Matcher scheint mit keiner aktuell definierten Regel oder aktiven Warnung übereinzustimmen. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + - - Crush steps - Crush-Schritte + + no active alerts + keine aktiven Warnungen + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + - - Rule is not in use. - Rule is not in use. + + 1 active alert + 1 aktive Warnung + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + + active alerts + aktive Warnungen + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + - - Compression - Komprimierung + + Matches 1 rule + Stimmt mit 1 Regel überein + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - - Algorithm - Algorithmus + + Matches rules + Stimmt mit Regeln überein + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - Minimum blob size - Minimale Blobgröße + + with . + mit . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + - - e.g., 128KiB - z. B. 128KiB + + Quality of Service + Quality of Service + + src/app/shared/services/rbd-configuration.service.ts + 23 + - - Maximum blob size - Maximale Blobgröße + + BPS Limit + BPS-Limit + + src/app/shared/services/rbd-configuration.service.ts + 28 + - - e.g., 512KiB - z. B. 512KiB + + The desired limit of IO bytes per second. + Das gewünschte Limit der E/A-Bytes pro Sekunde. + + src/app/shared/services/rbd-configuration.service.ts + 29 + - - Ratio - Verhältnis + + IOPS Limit + IOPS-Limit + + src/app/shared/services/rbd-configuration.service.ts + 34 + - - Compression ratio - Komprimierungsverhältnis + + The desired limit of IO operations per second. + Das gewünschte Limit der E/A-Vorgänge pro Sekunde. + + src/app/shared/services/rbd-configuration.service.ts + 35 + - - -- No erasure compression algorithm available -- - -- Kein Komprimierungsalgorithmus für Erasure-Coding verfügbar -- + + Read BPS Limit + BPS-Limit für Lesevorgänge + + src/app/shared/services/rbd-configuration.service.ts + 40 + - - Value should be greater than 0 - Wert sollte größer als 0 sein + + The desired limit of read bytes per second. + Das gewünschte Limit der gelesenen Bytes pro Sekunde. + + src/app/shared/services/rbd-configuration.service.ts + 41 + - - Value should be less than the maximum blob size - Wert sollte niedriger als die maximale Blobgröße sein + + Read IOPS Limit + IOPS-Limit für Lesevorgänge + + src/app/shared/services/rbd-configuration.service.ts + 46 + - - Value should be greater than the minimum blob size - Wert sollte größer als die minimale Blobgröße sein + + The desired limit of read operations per second. + Das gewünschte Limit für Lesevorgänge pro Sekunde. + + src/app/shared/services/rbd-configuration.service.ts + 47 + - - Value should be between 0.0 and 1.0 - Wert sollte zwischen 0,0 und 1,0 liegen + + Write BPS Limit + BPS-Limit für Schreibvorgänge + + src/app/shared/services/rbd-configuration.service.ts + 52 + - - The value should be greater or equal to 0 - Der Wert sollte größer als oder gleich 0 sein + + The desired limit of write bytes per second. + Das gewünschte Limit der geschriebenen Bytes pro Sekunde. + + src/app/shared/services/rbd-configuration.service.ts + 53 + - - Data Protection - Data Protection + + Write IOPS Limit + IOPS-Limit für Schreibvorgänge + + src/app/shared/services/rbd-configuration.service.ts + 58 + - - Applications - Applications + + The desired limit of write operations per second. + Das gewünschte Limit für Schreibvorgänge pro Sekunde. + + src/app/shared/services/rbd-configuration.service.ts + 59 + - - PG Status - PG Status + + BPS Burst + BPS-Block + + src/app/shared/services/rbd-configuration.service.ts + 64 + - - Crush Ruleset - Crush Ruleset + + The desired burst limit of IO bytes. + Das gewünschte Blocklimit der E/A-Bytes. + + src/app/shared/services/rbd-configuration.service.ts + 65 + - - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + + IOPS Burst + IOPS-Block + + src/app/shared/services/rbd-configuration.service.ts + 70 + - - Pools List - Pool-Liste + + The desired burst limit of IO operations. + Das gewünschte Blocklimit der E/A-Vorgänge. + + src/app/shared/services/rbd-configuration.service.ts + 71 + - - Cache Mode - Cache Mode + + Read BPS Burst + BPS-Block für Lesevorgänge + + src/app/shared/services/rbd-configuration.service.ts + 76 + - - Min Evict Age - Min Evict Age + + The desired burst limit of read bytes. + Das gewünschte Blocklimit der gelesenen Bytes. + + src/app/shared/services/rbd-configuration.service.ts + 77 + - - Min Flush Age - Min Flush Age + + Read IOPS Burst + IOPS-Block für Lesevorgänge + + src/app/shared/services/rbd-configuration.service.ts + 82 + - - Target Max Bytes - Target Max Bytes + + The desired burst limit of read operations. + Das gewünschte Blocklimit der Lesevorgänge. + + src/app/shared/services/rbd-configuration.service.ts + 83 + - - Target Max Objects - Target Max Objects + + Write BPS Burst + BPS-Block für Schreibvorgänge + + src/app/shared/services/rbd-configuration.service.ts + 88 + - - Cache Tiers Details - Details zu den Cache-Ebenen + + The desired burst limit of write bytes. + Das gewünschte Blocklimit der geschriebenen Bytes. + + src/app/shared/services/rbd-configuration.service.ts + 89 + - - EC Profile - EC Profile + + Write IOPS Burst + IOPS-Block für Schreibvorgänge + + src/app/shared/services/rbd-configuration.service.ts + 94 + - - Plugin - Plugin + + The desired burst limit of write operations. + Das gewünschte Blocklimit der Schreibvorgänge. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - - Data chunks (k) - Datenblöcke (k) + + Failed to + Fehler bei + + src/app/shared/services/task-message.service.ts + 27 + - - Coding chunks (m) - Datenblöcke für die Codierung (m) + + Executing + Wird ausgeführt + + src/app/shared/services/task-message.service.ts + 54 + - - Crush failure domain - Crush-Ausfalldomäne + + execute + ausführen + + src/app/shared/services/task-message.service.ts + 54 + - - Crush root - Crush-Stamm + + Executed + Ausgeführt + + src/app/shared/services/task-message.service.ts + 54 + - - Crush device class - Crush-Geräteklasse + + unknown task + Unbekannte Aufgabe + + src/app/shared/services/task-message.service.ts + 58 + - - Available OSDs: - - - Available OSDs: - - + + Creating + Wird erstellt + + src/app/shared/services/task-message.service.ts + 67 + - - Directory - Verzeichnis + + create + erstellen + + src/app/shared/services/task-message.service.ts + 67 + - - The name can only consist of alphanumeric characters, dashes and underscores. - Der Name darf nur alphanumerische Zeichen, Bindestriche und Unterstriche enthalten. + + Updating + Wird aktualisiert + + src/app/shared/services/task-message.service.ts + 68 + - - The chosen erasure code profile name is already in use. - Der ausgewählte Erasure-Coding-Profilname wird bereits verwendet. + + update + aktualisieren + + src/app/shared/services/task-message.service.ts + 68 + - - Must be equal to or greater than 2. - Muss größer oder gleich 2 sein. + + Deleting + Wird gelöscht + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + - - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + + Adding + Füge hinzu + + src/app/shared/services/task-message.service.ts + 70 + - - For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + + add + hinzufügen + + src/app/shared/services/task-message.service.ts + 70 + - - K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + + Removing + Entferne + + src/app/shared/services/task-message.service.ts + 71 + - - Distribution factor: - - - Distribution factor: - - + + remove + entfernen + + src/app/shared/services/task-message.service.ts + 71 + - - Must be equal to or greater than 1. - Muss größer oder gleich 1 sein. + + Importing + Importiere + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + - - Durability estimator (c) - Dauerhaftigkeitsschätzung (c) + + import + importieren + + src/app/shared/services/task-message.service.ts + 72 + - - C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + + Imported + Importiert + + src/app/shared/services/task-message.service.ts + 72 + + + + activate + + src/app/shared/services/task-message.service.ts + 75 + + + + Activated + + src/app/shared/services/task-message.service.ts + 76 + + + + deactivate + + src/app/shared/services/task-message.service.ts + 80 + + + + Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - - Helper chunks (d) - Helper chunks (d) + + RBD '' + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - - Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + + RBD snapshot '@' + RBD Snapshot '@' + + src/app/shared/services/task-message.service.ts + 112 + - - D is automatically updated on k and m changes - D is automatically updated on k and m changes + + mirroring site name + Spiegelung des Site-Namens + + src/app/shared/services/task-message.service.ts + 116 + - - D can be set from - to - - - D can be set from - to - - + + bootstrap token + Bootstrap-Token + + src/app/shared/services/task-message.service.ts + 117 + - - D can only be set to - - - D can only be set to - - + + mirror mode for pool '' + Spiegelungsmodus für Pool '' + + src/app/shared/services/task-message.service.ts + 118 + - - D has to be greater than k ( - ). - - D has to be greater than k ( - ). - + + mirror peer for pool '' + Peer für '' spiegeln + + src/app/shared/services/task-message.service.ts + 119 + - - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + + all dashboards + Alle Dashboards + + src/app/shared/services/task-message.service.ts + 123 + - - Locality (l) - Standort (l) + + Identifying + Identifiziere + + src/app/shared/services/task-message.service.ts + 133 + - - Locality groups: - - - Locality groups: - - + + identify + identifizieren + + src/app/shared/services/task-message.service.ts + 133 + - - Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + + Identified + Identifiziert + + src/app/shared/services/task-message.service.ts + 133 + - - Crush Locality - Crush-Standort + + device '' on host '' + Laufwerk '' auf Host '' + + src/app/shared/services/task-message.service.ts + 134 + - - None - Keine + + OSDs (DriveGroups: ) + OSDs (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - - Scalar mds - Scalar mds + + Name is already used by . + Name wird bereits von verwendet. + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - Technique - Technik + + is busy. + ist beschäftigt. + + src/app/shared/services/task-message.service.ts + 199 + - - Packetsize - Paketgröße + + contains snapshots. + enthält Snapshots. + + src/app/shared/services/task-message.service.ts + 200 + - - Crush Rule - Crush Rule + + Cloning + Wird geklont + + src/app/shared/services/task-message.service.ts + 204 + - - Root - Root + + clone + klonen + + src/app/shared/services/task-message.service.ts + 204 + - - Failure domain type - Failure domain type + + Snapshot of must be protected. + Snapshot von muss geschützt sein. + + src/app/shared/services/task-message.service.ts + 208 + - - Device class - Laufwerksklasse + + Copying + Wird kopiert + + src/app/shared/services/task-message.service.ts + 212 + - - No applications added - No applications added + + copy + kopieren + + src/app/shared/services/task-message.service.ts + 212 + - - Applications limit reached - Applications limit reached + + Flattening + Wird vereinfacht + + src/app/shared/services/task-message.service.ts + 219 + - - A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + + flatten + vereinfachen + + src/app/shared/services/task-message.service.ts + 219 + - - Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + + Cannot unprotect because it contains child images. + Der Schutz von kann aufgrund untergeordneter Images nicht aufgehoben werden. + + src/app/shared/services/task-message.service.ts + 234,236 + - - Maximum length is 128 characters - Maximum length is 128 characters + + Cannot delete because it's protected. + kann nicht gelöscht werden, da es geschützt ist. + + src/app/shared/services/task-message.service.ts + 243 + - - Filter or add applications' - Filter or add applications' + + Rolling back + Rollback wird ausgeführt + + src/app/shared/services/task-message.service.ts + 248 + - - Add application - Add application + + rollback + Rollback + + src/app/shared/services/task-message.service.ts + 249 + - - The name of the node under which data should be placed. - The name of the node under which data should be placed. + + Moving + Wird verschoben + + src/app/shared/services/task-message.service.ts + 256 + - - The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + + move + verschieben + + src/app/shared/services/task-message.service.ts + 256 + - - Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + + image '' to trash + Image '' in den Papierkorb + + src/app/shared/services/task-message.service.ts + 257 + - - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + + Could not find image. + Image konnte nicht gefunden werden. + + src/app/shared/services/task-message.service.ts + 259 + - - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + + Restoring + Wird wiederhergestellt + + src/app/shared/services/task-message.service.ts + 263 + - - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + + restore + wiederherstellen + + src/app/shared/services/task-message.service.ts + 263 + - - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + + image '' into '' + Image '' in '' + + src/app/shared/services/task-message.service.ts + 264 + - - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. - - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. - - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + + Image name '' is already in use. + Imagename '' wird bereits verwendet + + src/app/shared/services/task-message.service.ts + 266 + - - Group the coding and data chunks into sets of size locality. For instance, - for k=4 and m=2, when locality=3 two groups of three are created. Each set can - be recovered without reading chunks from another set. - Group the coding and data chunks into sets of size locality. For instance, - for k=4 and m=2, when locality=3 two groups of three are created. Each set can - be recovered without reading chunks from another set. + + image '' + Image '' + + src/app/shared/services/task-message.service.ts + 271 + - - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + + Purging + Wird bereinigt + + src/app/shared/services/task-message.service.ts + 274 + - - The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + + purge + bereinigen + + src/app/shared/services/task-message.service.ts + 274 + - - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + + all pools + alle Pools + + src/app/shared/services/task-message.service.ts + 276 + - - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + + images from + Images von + + src/app/shared/services/task-message.service.ts + 280 + - - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + + Cannot disable mirroring because it contains a peer. + Spiegelung kann nicht deaktiviert werden, da sie einen Peer enthält. + + src/app/shared/services/task-message.service.ts + 303 + - - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + + host '' + Host '' + + src/app/shared/services/task-message.service.ts + 488 + - - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + + OSD '' + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + + pool '' + Pool '' + + src/app/shared/services/task-message.service.ts + 496 + - - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + + erasure code profile '' + Löschcode-Profil '' + + src/app/shared/services/task-message.service.ts + 500 + - - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + + crush rule '' + Crush-Regel '' + + src/app/shared/services/task-message.service.ts + 504 + - - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + + target '' + Ziel '' + + src/app/shared/services/task-message.service.ts + 508 + + + + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + + + + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + + + + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + + + + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + + + + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - - Set the directory name from which the erasure code plugin is loaded. - Set the directory name from which the erasure code plugin is loaded. + + NFS ':' + NFS ':' + + src/app/shared/services/task-message.service.ts + 531,533 + + + + service '' + + src/app/shared/services/task-message.service.ts + 537 + + + + '' + + src/app/shared/services/task-message.service.ts + 552 + + + + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + + + + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + + + + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + + + + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + + + + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.es-ES.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.es-ES.xlf index f612fa452f8..5e2e7ebb0e2 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.es-ES.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.es-ES.xlf @@ -1,8827 +1,17313 @@ - - + + Close - Close + Cerrar + + node_modules/src/ngb-config.ts + 13 + HH HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + Cerrar + + node_modules/src/ngb-config.ts + 13 + «« «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + Seleccionar mes + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + El mes pasado + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours - Hours + Horas + + node_modules/src/ngb-config.ts + 13 + « « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Anterior + + node_modules/src/ngb-config.ts + 13 + MM MM + + node_modules/src/ngb-config.ts + 13 + » » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + Seleccionar año + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + El próximo mes + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + Siguiente + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + Minutos + + node_modules/src/ngb-config.ts + 13 + »» »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + Añadir horas + + node_modules/src/ngb-config.ts + 13 + First - First + Primer + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Anterior + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + Eliminar horas + + node_modules/src/ngb-config.ts + 13 + Next - Next + Siguiente + + node_modules/src/ngb-config.ts + 13 + Increment minutes - Increment minutes + Añadir minutos + + node_modules/src/ngb-config.ts + 13 + Last - Last + Último + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + Eliminar minutos + + node_modules/src/ngb-config.ts + 13 + SS SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + Segundos + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + Añadir segundos + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + Eliminar segundos + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + Debe ser mayor o igual que . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + Debe ser menor o igual que . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + Resumen + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets - Targets + Destinos + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology - iSCSI Topology + Topología iSCSI + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + Nombre + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + Actual + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + Opción por defecto + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication - Discovery Authentication + Autenticación de descubrimiento + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + Usuario + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + Este campo es obligatorio. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Los nombres de usuario deben tener una longitud de entre 8 y 64 caracteres y puede incluir letras, números y los caracteres: ".", ",", "@", "-", "_" o ":". + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + Contraseña + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Las contraseñas deben tener una longitud de entre 12 y 16 caracteres y pueden incluir letras, números y los caracteres: "@", "-", "_" o "/". + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + Usuario mutuo + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + Contraseña mutua + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + Autenticación de descubrimiento actualizada + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + IQN de destino + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + El IQN tiene un patrón erróneo. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + Los IQN tienen esta notación: iqn.$year-$month.$reversedAddress:$definedName + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Por ejemplo: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + Más información + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + Este destino tiene ajustes avanzados modificados. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + Portales + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + Añadir portal + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + Se necesitan al menos puertas de enlace. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images - Images + Imágenes + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + Almacén: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + Esta imagen tiene ajustes modificados. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + Números de LUN duplicados. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + WWN duplicado. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + Añadir imagen + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + Autenticación de ACL + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Los nombres de usuario deben tener una longitud de entre 8 y 64 caracteres y puede incluir letras, números y los caracteres: ".", "@", "-", "_" o ":". + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Las contraseñas deben tener una longitud de entre 12 y 16 caracteres y pueden incluir letras, números y los caracteres: "@", "-", "_" o "/". + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + Iniciadores + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + Iniciador + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + IQN del cliente + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + El IQN del iniciador debe ser exclusivo. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Los nombres de usuario deben tener una longitud de entre 8 y 64 caracteres y puede incluir letras, números y los caracteres: ".", "@", "-", "_" o ":". + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Las contraseñas deben tener una longitud de entre 12 y 16 caracteres y pueden incluir letras, números y los caracteres: "@", "-", "_" o "/". + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + El iniciador pertenece a un grupo. Las imágenes se configurarán en el grupo. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + No se ha añadido ningún elemento. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + Añadir iniciador + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + Grupos + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + Grupo + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + Nombre + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + Añadir grupo + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. - There are no portals available. + No hay ningún portal disponible. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + No hay ninguna imagen disponible. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. - There are no images available. Please make sure you add an image to the target. + No hay ninguna imagen disponible. Asegúrese de añadir una imagen al destino. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. - There are no initiators available. Please make sure you add an initiator to the target. + No hay ningún iniciador disponible. Asegúrese de añadir un iniciador al destino. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + destino + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + Configurar + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + Normalmente no es necesario cambiar los valores por defecto de estos parámetros. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + Identificador + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + Ajustes + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore - Backstore + Almacén + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + Ajustes avanzados + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + Destinos iSCSI no disponibles + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + Consulte para obtener información sobre cómo configurar y habilitar la función de gestión de destinos iSCSI. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + Información disponible: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + Autenticación de descubrimiento + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + Destino + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + Portales + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + Imágenes + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions - # Sessions + N.º de sesiones + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + Puertas de enlace no disponibles + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + El destino tiene sesiones activas + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + Destino iSCSI + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + Puertas de enlace + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + Estado + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + N.º de destinos + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool - Pool + Repositorio + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image - Image + Imagen + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore - Backstore + Almacén + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + Bytes de lectura + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + Bytes de escritura + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + Operaciones de lectura + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + Operaciones de escritura + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + A/O desde + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token - Create Bootstrap Token + Crear testigo de arranque + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + Para crear un testigo de arranque que un clúster de sitio de pares pueda importar, proporcione el nombre del sitio local, seleccione los repositorios en los que la duplicación estará habilitada y haga clic en Generar. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + Nombre del sitio + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + Nombre... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + Repositorios + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + Se necesita al menos un repositorio. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + Generar + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + Testigo + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + Testigo generado... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + Cerrar + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + Importar testigo de arranque + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + Para importar un testigo de arranque que haya creado un clúster de sitio de pares, proporcione el nombre del sitio local, seleccione los repositorios en los que la duplicación estará habilitada, proporcione el testigo generado y haga clic en Importar. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + Dirección + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + El testigo no es válido. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + Instancia + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname - Hostname + Nombre de host + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version - Version + Versión + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + Estado + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + Problema + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + Progreso + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description - Description + Descripción + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons Daemons + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + Crear testigo de arranque + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + Importar testigo de arranque + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + Editar modo de duplicación de repositorio + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + Para editar el modo de duplicación del repositorio , seleccione un modo nuevo en la lista y haga clic en Actualizar. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + Modo + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + Los clústeres de par deben eliminarse antes de inhabilitar la duplicación. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + Inhabilitado + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + {VAR_SELECT, select, edit {Editar} other {Añadir}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + par de duplicación del repositorio + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + los atributos del par de duplicación del repositorio para el repositorio y haga clic en Enviar. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + Nombre del clúster + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + El nombre del clúster no es válido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID - CephX ID + ID de CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... - CephX ID... + ID de CephX... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + El ID de CephX no es válido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + Direcciones de monitores + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + Direcciones delimitadas por comas... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + La dirección del monitor no es válida. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key - CephX Key + Clave de CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Clave con cifrado base64... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. - CephX key must be base64 encoded. + La clave de CephX debe tener cifrado base64 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + N.º locales + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + N.º remotos + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + Editar modo + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer - Add Peer + Añadir par + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer - Edit Peer + Editar par + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + Suprimir par + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode - Mode + Modo + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader - Leader + Líder + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + N.º locales + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + N.º remotos + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + duplicar par + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + Puerto + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + Iniciador + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + Cargando... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host Host + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport - Transport + Transportar + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool - Pool + Repositorio + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- - -- Select a pool -- + -- Seleccione un repositorio -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + No se permiten los caracteres "/" ni "@". + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + Espacio de nombres + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS - IOPS + E/S por segundo + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + Detalles + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + Espacios de nombres + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. - The value must be at least 1. + El valor debe ser al menos 1. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration - RBD Configuration + Configuración de RBD + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. - Remove the local configuration value. The parent configuration value will be inherited and used instead. + Elimina el valor de configuración local. Se heredará y usará en su lugar el valor de configuración padre. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + El valor mínimo es 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global Global + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + Imagen + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + Clave + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + Origen + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + Valor + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + Solo disponible para imágenes RBD con fast-diff habilitado + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + Repositorio de datos + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + Creados + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + Tamaño + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + Objetos + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + Tamaño del objeto + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + Características + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + Aprovisionados + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A - N/A + N/D + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned - Total provisioned + Total aprovisionado + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + Unidad de repartición + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + Recuento de repartición + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + Padre + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + Prefijo de nombre de bloque + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + Orden + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + Versión de formato + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + Instantáneas + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + Configuración + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + Rendimiento + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + No se puede mostrar la información para el RBD con el estado Eliminando. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + Este ajuste sustituye al valor global + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + Este es el valor global. No se ha definido ningún valor para esta opción para esta imagen. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + Necesita más de un repositorio con la etiqueta de aplicación RBD para usar un repositorio de datos dedicado. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- No hay ningún repositorio de datos disponible -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- No hay ningún espacio de nombres disponible -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- Seleccione un espacio de nombres -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + Debe aumentar el tamaño. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping - Striping + Repartición + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- Seleccione la unidad de repartición -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + Este campo es obligatorio porque se ha definido el recuento de repartición. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + La unidad de repartición es mayor que el tamaño del objeto. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + Este campo es obligatorio porque se ha definido la unidad de repartición. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + El recuento de repartición debe ser mayor que 0. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + Aplanamiento profundo + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + En capas + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + Bloqueo exclusivo + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + Mapa de objetos (requiere bloqueo exclusivo) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + Diferencias rápidas (interbloqueo con mapa de objetos) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + Si se suprime esta imagen, también se suprimirán todas sus instantáneas. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + Las instantáneas siguientes están protegidas actualmente y se eliminarán: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + RBD con el estado Eliminando + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + Tamaño + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + Uso + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + Objetos + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + Tamaño del objeto + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + Padre + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + Duplicación + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + Advertencia + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + Este RBD tiene instantáneas clonadas. Suprima los RBD relacionados antes de suprimir este RBD. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + Esta imagen RBD tiene un nombre no válido y no se puede gestionar con ceph. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + Acción no disponible para un RBD con el estado Eliminando + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + Crear espacio de nombres + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- No hay ningún repositorio RBD disponible -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. - Namespace already exists. + El espacio de nombres ya existe. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + Espacio de nombres / creado + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + Número total de imágenes + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + Espacio de nombres / suprimido + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + El espacio de nombres contiene imágenes + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + Instantánea de RBD + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + Para poder clonarse, la instantánea debe estar protegida. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + Se dispone a revertir + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + Usado + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + CON PROTECCIÓN + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + SIN PROTECCIÓN + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + Creados + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + Reversión de instantánea RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + Revertir + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + Instantánea RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + Papelera + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + Rendimiento general + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + Vaciar papelera + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + Caducó a las + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + Protección hasta + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + Esta imagen está protegida hasta el . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status - Status + Estado + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At - Deleted At + Suprimido a las + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + Mover una imagen a la papelera + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + Esta imagen contiene instantáneas, lo que impedirá que se elimine después de moverla a la papelera. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + Para mover a la papelera, haga clic en Mover. Opcionalmente, puede seleccionar una fecha de caducidad. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + La protección caduca a las + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + SIN PROTECCIÓN + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Formato de fecha erróneo. Use el formato "AAAA-MM-DD HH:mm:ss". + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + La protección ya ha caducado. Seleccione una fecha del futuro o deje el campo vacío. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + Para limpiar, seleccione Todo o seleccione un repositorio y haga clic en Limpiar.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: - Pool: + Repositorio: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + Nombre del repositorio... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + todos + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + Restaurar imágenes + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + Para restaurar @, escriba el nombre nuevo de la imagen y haga clic en Restaurar. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + Nombre nuevo + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + Este campo es obligatorio. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id - id + ID + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + tipo + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + estado + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + versión + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + raíz + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + Cliente expulsado + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + Clasificaciones + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + Reservas + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + Contadores de rendimiento de MDS + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + Daemons de reserva + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + Clasificación + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon Daemon + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + Actividad + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries Dentries + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + Inodos + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + Directorios + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + Capacidades + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + Tipo + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + Cuotas + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + Origen + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + Ruta + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + No es posible crear instantáneas para los archivos/carpetas del subvolumen + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + Tamaño máximo + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + Número máximo de archivos + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + El elemento heredado es el valor máximo que se puede usar. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + Guardar + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + Cuota de CephFS para + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + tamaño + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + archivos + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + Cuota de + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + El valor debe ser 0 o más como mínimo + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + El valor debe ser o menos como máximo + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + Actualizado + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - in order to inherit - - + in order to inherit + para poder heredar + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + que no se usa porque se hereda + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + para no tener cuota en el directorio + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + Crear instantánea + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + Indique el nombre de la instantánea + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + Instantánea creada para + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + Instantánea de CephFS + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + Instantánea suprimida para + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + Colocación + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts Hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label - Label + Etiqueta + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + No hay ningún host. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + Filtrar hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled - Enabled + Habilitado + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + Hora de inicio + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + Conectando de nuevo. Espere... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + Opción por defecto + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + ej.: 10 GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + todos + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + Lectura + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute - Execute + Ejecutar + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + Repositorio de datos + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + Directorios + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + Clientes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + Detalles de rendimiento + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + Descripción + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + Descripción larga + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values - Current values + Valores actuales + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + Daemon por defecto + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + Tipo + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + Mín. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + Máx. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + Indicadores + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + Servicios + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source - Source + Origen + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + Nivel + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + Se puede actualizar en el tiempo de ejecución (editable) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + Etiquetas + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + Valores Enum + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + Véase también + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + El valor se puede actualizar en el tiempo de ejecución. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + Los daemons/clientes no extraen este valor de la + base de datos de configuración del monitor. No se recomienda definir esta opción con "ceph config + set ...". Esta opción se debe configurar mediante ceph.conf o a través + de la línea de comandos. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + La opción solo surte efecto durante el inicio del daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + La opción solo afecta a la creación del clúster. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + La opción solo afecta a la creación del daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + Valores + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + -- Por defecto -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true - true + verdadero + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false - false + falso + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + El valor introducido es demasiado alto. No debe ser mayor que . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + El valor introducido es demasiado bajo. No debe ser menor que . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - Updated config option - - + Updated config option + Opción de configuración actualizada + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + Modificado + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + Nivel + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service - Service - - - Modified - Modified + Servicio + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + Valor actual + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable Editable + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + Recursos de clúster + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + Capacidad de almacenamiento + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + Número de dispositivos + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + Capacidad en bruto + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs CPUs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + Memoria + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + Detalles del host + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + Le damos la bienvenida a + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + Primero, expanda el clúster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + Expandir clúster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + Omitir + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + Añadir hosts + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + Crear OSDs + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + Crear servicios + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + Va a omitir el proceso de expansión del clúster. Debe desplazarse por los menús para añadir hosts y servicios. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + ¿Seguro que desea continuar? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + Continuar + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + Expansión del clúster omitida por el usuario + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + El clúster se ha expandido correctamente + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + Expandir clúster + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + Visor del mapa de CRUSH + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + Dispositivos + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + Discos físicos + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + Estado del dispositivo + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + No se encuentra ningún nombre de host. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + Nombre de host + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + Para añadir varios hosts a la vez, puede introducir: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + una lista separada por comas de nombres de host (por ejemplo: ejemplo-01,ejemplo-02,ejemplo-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + una expresión de intervalo (por ejemplo: ejemplo-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + una expresión de intervalo separada por comas (por ejemplo: ejemplo-[01-05].lab.com,ejemplo2-[1-4].lab.com,ejemplo3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + El nombre de host que ha elegido ya está en uso. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + Dirección de red + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + El valor no es una dirección IP válida. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + Etiquetas + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + Modo de mantenimiento + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + No hay etiquetas. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + Filtrar o añadir etiquetas + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label - Add label + Añadir etiqueta + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host host + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + Lista de hosts + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + Los datos solo estarán disponibles si Orchestrator está disponible. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs SSD, NVMEs + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + La función está inhabilitada porque el host seleccionado no se gestiona con Orchestrator. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + Etiquetas + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + Modelo + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs CPUs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + Núcleos + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + Memoria total + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity - Raw Capacity + Capacidad en bruto + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + Discos duros + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + Tarjetas NIC + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + Editar host: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + Editar host + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + Host actualizado + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + movido a mantenimiento + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + no se puede poner en mantenimiento + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - " - " has exited maintenance - + "" has exited maintenance + ha salido del mantenimiento + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + ha detenido el vaciado + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + ha iniciado el vaciado + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + Identificar + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + Vía del dispositivo + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + Disponible + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + Proveedor + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs OSDs + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + Identificar dispositivo + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + Indique cuánto tiempo parpadeará la luz LED. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + 1 minuto + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + 2 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + 5 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + 10 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + 15 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + Se ha iniciado la identificación de en el host + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + Registros del clúster + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + Registros de auditoría + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + Prioridad: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + Palabra clave: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + Fecha: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + Intervalo temporal: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + No se encuentra ninguna entrada de registro. Seleccione opciones de filtro distintas. + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + Restablecer filtro. + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module - Edit Manager module + Módulo del gestor de edición + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + El valor introducido no es un UUID válido, por ejemplo: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + El valor introducido debe ser una dirección IP válida. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - The entered value is too high! It must be lower or equal to - . - + The entered value is too high! It must be lower or equal to . + El valor introducido es demasiado alto. Debe ser menor o igual que . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + El valor introducido es demasiado bajo. Debe ser mayor o igual que . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. - The entered value needs to be a number. + El valor introducido debe ser un número. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + El valor introducido debe ser un número o un decimal. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + Opciones actualizadas para el módulo . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + Siempre activo + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + Editar + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + Habilitar + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + Inhabilitar + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + Este módulo de gestor siempre está activo. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status - Status + Estado + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + ID de clúster + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + Mapa de supervisión modificado + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + Época de mapa de supervisión + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con - quorum con + quórum de con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon - quorum mon + quórum de mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con - required con + con requerido + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + mon requerido + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + Con quórum + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + Sin quórum + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + Dirección pública + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + Sesiones abiertas + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + Vista previa de creación de OSD + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + Atributos (mapa de OSD) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + Metadatos + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + Los metadatos no están disponibles + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + Contandor de rendimiento + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + dispositivos + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + Los dispositivos de almacenamiento primarios. Estos dispositivos contienen todos los datos de OSD. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + Dispositivos WAL (Write-Ahead-Log, escritura anticipada en registro). Estos dispositivos se usan para el diario interno de BlueStore. Usar un dispositivo WAL solo resulta útil si el dispositivo es más rápido que el dispositivo primario (p. ej., dispositivos NVME o SSD). Si solo hay una pequeña cantidad de espacio de almacenamiento rápido disponible (p. ej., menos de un gigabyte), se recomienda usarlo como dispositivo WAL. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + Los dispositivos de base de datos se pueden usar para almacenar metadatos internos de BlueStore. Aprovisionar un dispositivo de BD solo resulta útil si es más rápido que el dispositivo primario (p. ej. dispositivos NVME o SSD). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + Añadir + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + Borrar + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + Capacidad en bruto: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + No hay dispositivos disponibles + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + Añada primero dispositivos primarios + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters - Add devices by using filters + Añada dispositivos usando filtros + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + dispositivos + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + Se debe aplicar al menos uno de estos filtros para poder continuar: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + Número de dispositivos: . Capacidad en bruto: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + Indicadores de OSD individuales + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + En todo el clúster + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + Restaurar selección anterior + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + No activar + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + No se permite que los OSD se inicien + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + No desactivar + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + Se ignoran los informes de error de OSD, de forma que los monitores no desactivarán los OSD + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + No incluir + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + Los OSD que se excluyeron anteriormente no se volverán a incluir cuando se inicien + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + No excluir + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + Los OSD no se excluirán automáticamente después del intervalo configurado + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + El indicador se ha habilitado para todo el clúster. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + Indicadores de OSD actualizados + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + Indicadores OSD de todo el clúster + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + Pausa + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes - Pauses reads and writes + Pone en pausa las lecturas y escrituras + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + No depurar + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + La depuración está inhabilitada + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + No depuración profunda + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + La depuración profunda está inhabilitada + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + No reponer + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended - Backfilling of PGs is suspended + La reposición de grupos de colocación se suspende + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + Sin reequilibrar + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + El OSD optará por no reponerse a no ser que el grupo de colocación también se baje de nivel + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + No recuperar + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + La recuperación de los grupos de colocación se suspende + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + Orden bit a bit + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort - Use bitwise sort + Usar orden bit a bit + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + Snapdir limpiados + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + Los OSD tienen snapset convertidos + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + Supresiones de recuperación + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + Supresiones realizadas durante la recuperación, en lugar de emparejamientos + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + Límite estricto de registro del grupo de colocación + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + Establece un límite estricto para la longitud del registro del grupo de colocación + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices - Shared devices + Dispositivos compartidos + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + Ranuras para WAL + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + Indica el número de OSD por dispositivo WAL. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + Especifique 0 para dejar que el motor de Orchestrator lo decida. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + El valor debe ser mayor o igual que 0. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + Ranuras para BD + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + Indica el número de OSD por dispositivo BD. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption - Encryption + Cifrado + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + Lista de OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + Si continúa, los OSD se marcarán como . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {el OSD sea} other {los OSD sean}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + Si continúa, el OSD . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + Conservar ID(s) de OSD para sustitución. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + excluir + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + Incluir + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + desactivar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + Marcar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + OSD perdido + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + marcado como perdido + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + Limpiar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + limpiado + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + destruir + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + destruido + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + Indicadores + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + Prioridad de recuperación + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + Depuración de grupo de colocación + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + Clase de dispositivo + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + Grupos de colocación + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + Bytes de lectura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + Bytes de escritura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops - Read ops + Operaciones de lectura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + Operaciones de escritura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + Editar OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + Editar OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + OSD actualizado + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + Marcar OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + Marcar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + suprimir + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + suprimido + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + Avanzado... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + Opciones de configuración avanzadas + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + Opciones de depuración de grupo de colocación + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + Opciones de depuración de grupo de colocación actualizadas + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + Prioridad de recuperación de OSD + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + Prioridad + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + Personalizar valores de prioridad + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + El valor introducido es demasiado alto. No debe ser mayor que . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + El valor introducido es demasiado bajo. No debe ser menor que . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + Número máximo de reposiciones + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active - Recovery Max Active + Máximo de recuperaciones activas + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + Máximo de recuperaciones de inicio único + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + Reposo de recuperación + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + Personalizar + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + Prioridad de velocidad de recuperación de OSD actualizada + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + Reequilibrar peso de OSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + El valor debe estar entre 0 y 1. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSDs - Scrub - + OSDs Scrub + Depuración de OSDs + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} - {VAR_SELECT, select, true {Deep } other {}} + {VAR_SELECT, select, true {Profundo } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + Va a aplicar una depuración a los OSD: . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {profundo } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + se ha inicializado en los OSD siguientes: + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + Para ver todas las alertas activas de Prometheus, proporcione la URL a la API del gestor de alertas de Prometheus, como se describe en . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + Crear silencio + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + Gravedad + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + Iniciado + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + Alertas + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + Silencios + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + Para ver todas las alertas configuradas de Prometheus, proporcione la URL a la API de Prometheus, como se describe en . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + Grupo + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + Duración + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + Consulta + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + Editar + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + Suprimir + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + Si se edita un silencio, el silencio anterior caducará y se volverá a crear como silencio nuevo. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + Creador + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + Comentario + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + Hora de inicio + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + Si la hora de inicio queda en el pasado, se usará la hora de creación + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + Duración + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + Hora de finalización + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + Buscadores de coincidencias + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + Un silencio requiere al menos un buscador de coincidencias + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + Añadir buscador de coincidencias + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + silencio + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + Nombre del atributo + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + Expresión regular + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + Añada su host de Prometheus a la configuración de la consola y actualice la página + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + Para habilitar los silencios, proporcione la URL a la API del gestor de alertas de Prometheus, como se describe en . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + Creado por + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + Finaliza el + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + Silencio + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + {VAR_SELECT, select, true {Editar} other {Añadir}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + buscador de coincidencias + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + -- Seleccione un atributo con el que deba coincidir -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + Valor + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + Usar expresión regular + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + sin especificar + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + sin gestionar + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + recuento: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + etiqueta: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + Eventos de servicio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + Última actualización + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + Eventos de daemon + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + Nombre del servicio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + Tipo de servicio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + Eventos de servicio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- Seleccione un tipo de servicio -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + Servicio de motor + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- - -- No service available -- + -- No hay ningún servicio disponible -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + Nombre del servicio + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + Dominio + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + Grupo de zonas + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + Zona + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + Sin gestionar + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + Recuento + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + Puerto + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + El valor no puede ser superior a 65535. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- No hay repositorios disponibles -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + IPs de confianza + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + Lista separada por comas de direcciones IP. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + Añada aquí las direcciones IP de Ceph Manager o no se podrá acceder a las puertas de enlace iSCSI. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + IP virtual + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + La dirección IP virtual y la subred (en notación CIDR) donde estará disponible el servicio de ingreso. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + Puerto de interfaz de usuario + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + El puerto usado para acceder al servicio de ingreso. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + Puerto de monitor + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + El puerto usado por haproxy para cargar el estado del equilibrador. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + Redes CIDR + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + Lista de redes para identificar qué interfaz de red se usará para la dirección IP virtual. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + Versión + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + -- Seleccione la versión de SNMP -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + Destino + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - Must be of the format hostname:port. + Debe tener el formato nombrehost:puerto. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + El valor no coincide con el patrón: nombrehost:puerto + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + ID de motor + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + Identificador exclusivo del dispositivo (hexadecimal). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + El valor no coincide con el patrón: debe ser hexadecimal y su longitud debe ser un múltiplo de 2 con un valor mínimo = 10 y máximo = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + Protocolo de autenticación + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- - -- Select auth protocol -- + -- Seleccione el protocolo de autenticación -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + Protocolo de privacidad + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + -- Seleccione el protocolo de privacidad -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + Credenciales + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + Comunidad SNMP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + Nombre de usuario + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + Cifrado + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + Certificado + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + El certificado SSL en formato PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. - Invalid SSL certificate. + Certificado SSL no válido. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + Clave privada + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + La clave privada SSL en formato PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + Clave privada SSL no válida. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + servicio + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + Colocación + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + En ejecución + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + Paso de 2: configuración de informe de telemetría + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + El módulo de telemetría envía datos anónimos sobre este clúster de Ceph a los desarrolladores de Ceph para que les ayuden a comprender cómo se usa Ceph y qué problemas pueden experimentar los usuarios. Los datos se muestran en consolas públicas que permiten a la comunidad ver rápidamente un resumen de las estadísticas sobre cuántos clústeres envían información, su capacidad total y el número de OSD y las tendencias de distribución de la versión. No se informa sobre ningún dato sensible como nombres de repositorio, nombres de objetos, contenidos de objetos, nombres de host o números de serie de dispositivos. Los datos contienen recuentos y estadísticas sobre cómo se ha distribuido el clúster, la versión de Ceph, la distribución de los host y otros parámetros que ayudan al proyecto a entender mejor cómo se usa Ceph. Los datos se envían de forma segura a y (informe de dispositivo). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + Desactivar + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + Canales + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + El informe de telemetría se divide en numerosos "canales". Cada uno ofrece un tipo distinto de información que se puede configurar abajo. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + Básica + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: - Includes basic information about the cluster: + Incluye información básica sobre el clúster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + Capacidad del clúster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + El número de monitores, gestores, OSD, MDS, puertas de enlace de objetos u otros daemons. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + Versión del software que se usa + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + Número y tipos de repositorios RADOS y sistemas de archivos CephFS + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + Nombres de las opciones de configuración que se han cambiado desde las opciones por defecto (pero no sus valores) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + Detención por fallo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: - Includes information about daemon crashes: + Incluye información sobre las detenciones por fallo del daemon: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + Tipo de daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + Versión del daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + Sistema operativo (distribución de SO, versión del núcleo) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + Seguimiento de pila donde se identifica en qué lugar del código de Ceph se ha producido la detención por fallo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + Dispositivo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + Incluye información sobre las métricas del dispositivo como métricas SMART anonimizadas. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + Identificación + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + Incluye información de identificación proporcionada por el usuario sobre el clúster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + Información de contacto + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + Enviar cualquier información de contacto es completamente opcional y la función está inhabilitada por defecto. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + Contacto + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + Mi primer clúster de Ceph + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + Organización + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name - Organization name + Nombre de la organización + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + Intervalo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + El módulo compila y envía un informe nuevo cada 24 horas por defecto. Puede ajustar este intervalo definiendo otro número de horas. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. - The entered value is too low! It must be greater or equal to 8. + El valor introducido es muy bajo. Debe ser mayor o igual que 8. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + Si el clúster no se puede conectar directamente con el puesto final de telemetría configurado (telemetry.ceph.com por defecto), puede configurar un servidor de proxy HTTP/HTTPS, por ejemplo, añadiendo https://10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + También puede incluir un user:pass si fuera necesario, por ejemplo, https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + Nota: al hacer clic en Siguiente, verá una vista previa del contenido del informe y podrá activar el envío automático de los datos. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + Paso de 2: vista previa del informe de telemetría + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + ID de informe + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + Un UUID aleatorizado para identificar un clúster concreto durante varios informes de telemetría. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + Los datos de telemetría reales que se enviarán. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + Acepto que mis datos de telemetría se envíen bajo la licencia Community Data License Agreement - Sharing - versión 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + El módulo de telemetría se ha configurado y activado correctamente. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + Error al actualizar la configuración del módulo de telemetría. Vuelva a intentarlo + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + Atrás + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + Pausa + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + Estado del clúster + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + Últimos 5 minutos + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + Últimos 15 minutos + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + Últimos 30 minutos + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours - Last 3 hours + Últimas 3 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + Últimas 6 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + Últimas 12 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + Últimas 24 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster - Cluster + Clúster + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + Peligro + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning - Warning + Advertencia + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + Monitores + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs OSDs + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + Gestores + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + Instancias de Object Gateway + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + Servidores de metadatos + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + Puertas de enlace iSCSI + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + Capacidad + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity - Raw Capacity + Capacidad en bruto + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status - PG Status + Estado del grupo de colocación + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + Grupos de colocación por OSD + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + Lectura/escritura de cliente + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + Rendimiento del cliente + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + Rendimiento de recuperación + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + Depuración + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + Lecturas + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + Escrituras + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + Dispon. + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean - Clean + Limpio + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + En curso + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + Desconocido + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + En buen estado + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + Mal colocado + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + Degradado + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + No se encuentra + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + objetos + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + aquí + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + activo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + sin sistemas de archivos + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + activo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + reserva + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + daemons en reserva + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + daemon activo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a - n/a + n/d + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + (quórum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total total + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + casi lleno + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + todos + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + Clientes () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + Destinatarios + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + Tipo de acceso + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash - Squash + Reducir privilegios + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster - Cluster + Clúster + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + Protocolo NFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + Motor de almacenamiento + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User - CephFS User + Usuario de CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + Sistemas de archivos CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + Etiqueta de seguridad + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway Object Gateway + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + Usuario de Object Gateway + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + Cualquier cliente puede acceder + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + Destinatarios + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + Debe contener uno o varios valores separados por comas + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + Por ejemplo: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + Tipo de acceso + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash - Squash + Reducir privilegios + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + Añadir clientes + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (se hereda de la configuración global) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- - -- Select the access type -- + -- Seleccione el tipo de acceso -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + se hereda de la configuración global + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- Seleccione el tipo de reducción de privilegios de ID de usuario que se va a realizar -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- No hay ningún clúster disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- Seleccione el clúster -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + Este es el ID de un servicio NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + Este campo es obligatorio. Para crear un clúster NFS nuevo, añada un nuevo servicio NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume - Volume + Volumen + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- No hay ningún sistema de archivos CephFS disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- Seleccione el sistema de archivos CephFS -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + Etiqueta de seguridad + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + Habilitar etiqueta de seguridad + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + Ruta de CephFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + Una vía de un sistema de archivos CephFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + La ruta debe empezar por "/" y puede ir seguida de una palabra + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + La vía no existe en el volumen seleccionado. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + Papelera + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + La papelera no existe o no está en el dominio por defecto (si hay varios dominios configurados). Para continuar, cree una papelera nueva. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + Protocolo NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. - By using different Pseudo options, the same Path may be exported multiple times. + Al usar distintas opciones de Pseudo, la misma Ruta se puede exportar varias veces. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + Pseudo ya está en uso en otra exportación. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + Pseudo debe empezar con "/" y no puede incluir estos caracteres: >, <, |, &, ( ni ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- No hay ningún tipo de acceso disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- No hay ninguna reducción de privilegios disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + Protocolo de transporte + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + Exportación de NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + Error al recuperar las vías. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + Error al recuperar los nombres de papeleras. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway Object Gateway + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + Papelera + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + Los contadores de rendimiento no están disponibles + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + El nombre solo puede tener caracteres alfanuméricos, guiones y guiones bajos. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + El nombre del perfil de código de borrado que ha elegido ya está en uso. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + Raíz + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + Tipo de dominio de error + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + Clase de dispositivo + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule - Crush Rule + Regla de CRUSH + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + Complemento + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + Porciones de datos (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + Debe ser igual o mayor que 2. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + Las pociones (k+m) han superado el número disponible de OSDs de . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + Para que la distribución sea uniforme, k debe ser un múltiplo de (k+m)/l. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + K tiene que ser igual o mayor que m para poder recuperar datos correctamente mediante c. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + Factor de distribución: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + Porciones de código (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + Debe ser igual o mayor que 1. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + Estimador de durabilidad (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + C tiene que ser igual o menor que m, porque m define el número de porciones que se pueden usar. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) - Helper chunks (d) + Porciones de Ayudante (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + Defina d manualmente o use el cálculo por defecto del complemento que maximiza d. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + D se actualiza automáticamente cuando k y m cambian. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + D se puede definir de a + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + D solo se puede definir como + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D has to be greater than k ( - ). - + D has to be greater than k (). + D tiene que ser mayor que k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + D tiene que ser menor que k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + Localización (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + Con la localidad actual, no es posible dividir las porciones (k+m) correctamente. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + Grupos de localidad : + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + Dominio de error de CRUSH + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + Localización de CRUSH + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + Ninguna + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + MDS escalar + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + Técnica + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + Tamaño del paquete + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + Raíz de CRUSH + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + Clase de dispositivo de CRUSH + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + OSD disponibles: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + Directorio + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + Perfil de código de borrado + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + Detalles de niveles de caché + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode - Cache Mode + Modo de caché + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + Antigüedad mínima de expulsión + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + Antigüedad mínima de vaciado + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + Número máximo de bytes de destino + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + Número máximo de objetos de destino + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + No se ha añadido ninguna aplicación + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + Se ha alcanzado el límite de aplicaciones + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + Un repositorio solo puede tener hasta cuatro definiciones de aplicaciones. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + Caracteres permitidos: _, a-z, A-Z y 0-9 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters - Maximum length is 128 characters + La longitud máxima es 128 caracteres + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + Filtrar o añadir aplicaciones + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + Añadir aplicación + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + El nombre del repositorio de Ceph que ha elegido ya está en uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + No es posible crear un repositorio RBD si incluye el carácter "/" en el nombre. Cambie el nombre o elimine "rbd" de la lista de aplicaciones. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + El nombre del repositorio solo puede contener letras, números y estos caracteres: ".", "-", "_" y "/". + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + Tipo de repositorio + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- Seleccione un tipo de repositorio -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + Autoescala de grupo de colocación + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + Grupos de colocación + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + Se necesita al menos un grupo de colocación. + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. - Your cluster can't handle this many PGs. Please recalculate the PG amount needed. + El clúster no puede gestionar tantos grupos de colocación. Vuelva a calcular la cantidad que necesita. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help - Calculation help + Ayuda para el cálculo + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + Se ha calculado automáticamente la configuración de los grupos de colocación actuales. Asegúrese de que los valores se ajustan a sus necesidades antes de enviar. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + Tamaño replicado + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + Mínimo: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + Máximo: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + El tamaño especificado está fuera del intervalo. Se puede usar un valor entre y . + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + El tamaño 1 no creará una réplica del objeto. El valor de Tamaño replicado incluye el propio objeto. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + Sustituciones de códigos de borrado + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + Aplicaciones + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + Duplicación + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + Perfil de código de borrado + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- No hay ningún perfil de código de borrado disponible -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- Seleccione un perfil de código de borrado -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + El perfil no se puede suprimir porque está en uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + Perfil + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + Usado por repositorios + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + El perfil no está en uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset - Crush ruleset + Conjunto de reglas de CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + Se creará implícitamente un conjunto de reglas de CRUSH nuevo. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + No hay ninguna regla. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- Seleccione una regla de CRUSH -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + Esta regla no se puede suprimir porque está en uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + Regla de CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps - Crush steps + Pasos de CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + La regla no está en uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + No es posible usar la regla en el clúster actual porque no tiene suficientes OSD para cumplir el mínimo de OSDs requerido por la regla. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + Compresión + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + Algoritmo + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- No hay ningún algoritmo de compresión de borrado disponible -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + Tamaño de Blob mínimo + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + p. ej. 128 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + El valor debe ser mayor que 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + El valor debe ser menor que el tamaño de Blob máximo + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + Tamaño de Blob máximo + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + p. ej. 512 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + El valor debe ser mayor que el tamaño de Blob mínimo + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + Relación + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + Relación de compresión + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + El valor debe estar entre 0,0 y 1,0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + Número máximo de bytes + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + Para inhabilitar esta cuota, deje el campo en blanco o especifique 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + Una cuota válida debe ser mayor que 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + Número máximo de objetos + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + El valor debe ser mayor o igual que 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + repositorio + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + perfil de código de borrado + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + regla de CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + Lista de repositorios + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + Protección de datos + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + Aplicaciones + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status - PG Status + Estado del grupo de colocación + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + Conjunto de reglas de CRUSH + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + El valor de configuración mon_allow_pool_delete inhabilita la supresión del repositorio. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key - Key + Clave + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + Control de versiones + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + Supresión de MFA + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + Tipo de índice + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + Regla de colocación + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + Cuota de papelera + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + Habilitado + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + Tamaño máximo + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + Sin límite + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + Número máximo de objetos + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + Bloqueo + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days - Days + Días + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id - Id + ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + Los nombres de papeleras solo pueden incluir minúsculas, números, puntos y guiones. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + El nombre que ha elegido ya está en uso. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + Los nombres de papeleras no deben incluir mayúsculas ni guiones bajos. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + Las etiquetas deben empezar y terminar con una minúscula o un número. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + Los nombres de papeleras no pueden tener formato de dirección IP. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + Las etiquetas de papelera no pueden estar vacías y solo pueden incluir minúsculas, números y guiones. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + Los nombres de papeleras deben tener entre 3 y 63 caracteres. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + Propietario + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- Seleccione un usuario -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + Habilita el control de versiones de los objetos de la papelera. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + Autenticación multifactor + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + Suprimir habilitado + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + Habilita la supresión de autenticación multifactor (MFA), lo que requiere autenticación adicional para cambiar el estado del control de versiones de la papelera. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + Número de serie del testigo + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + PIN del testigo + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. + Habilita el bloqueo de los objetos de la papelera. El bloqueo solo se puede habilitar mientras se crea una papelera. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + El número de días que desea especificar para el período de retención por defecto que se aplicará a los nuevos objetos colocados en esta papelera. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + Se debe introducir un valor entero positivo. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + El valor de Días de retención debe ser un número entero positivo. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + Destino de colocación + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- Seleccione un destino de colocación -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + papelera + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + Papelera de Object Gateway actualizada. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + Papelera de Object Gateway creada. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + Sin límite + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + Propietario + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + Capacidad usada + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + % de límite de capacidad + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + % de límite de objeto + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + Contadores de rendimiento + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + Sincronizar rendimiento + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + Dominio + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group - Zone Group + Grupo de zonas + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + Zona + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + Solo se creará ese número de daemons. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + Grupo de zona + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + Repositorio de datos + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error Error + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- - -- Select a type -- + -- Seleccione un tipo -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + Permiso + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- - -- Select a permission -- + -- Seleccione un permiso -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + capacidad + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + Claves + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show - Show + Mostrar + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + Inquilino + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + ID de usuario + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + Nombre completo + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + Dirección de correo electrónico + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + Suspendido + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + Número máximo de papeleras + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + Subusuarios + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + Capacidades + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) MFAs(Id) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + Cuota de usuario + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + Nombre de usuario + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + Sin límite + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + El valor no es válido. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + El ID de usuario que ha elegido ya está en uso. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + Mostrar inquilino + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + El ID de usuario seleccionado no existe en este inquilino. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. - This is not a valid email address. + Esta dirección no es válida. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + La dirección de correo electrónico que ha elegido ya está en uso. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + Máx. papeleras + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + Inhabilitado + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom - Custom + Personalizar + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + El valor introducido debe ser mayor o igual que 1. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + Clave S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key - Auto-generate key + Autogenerar clave + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + Clave de acceso + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + Clave secreta + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + No hay ningún subusuario. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + No hay ninguna clave. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + No hay ninguna capacidad + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + Ya se han añadido todas las capacidades. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + Tamaño ilimitado + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + Tamaño máx. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + Objetos ilimitados + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + Objetos máx. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + El valor introducido debe ser mayor o igual que 0. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + usuario + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + subusuario + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + Clave S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + Usuario de Object Gateway actualizado. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + Usuario de Object Gateway creado. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + Inquilino + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + Nombre completo + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + Dirección de correo electrónico + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + Suspendido + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + Máx. papeleras + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users - users + usuarios + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- Seleccione un nombre de usuario -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + Subusuario + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + El ID de subusuario que ha elegido ya está en uso. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + lectura, escritura + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + todos + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Clave Swift + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + Autogenerar secreto + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + Subusuario + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + Clave Swift + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + Usuarios + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + Funciones + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + No se ha indicado ni el nombre de host ni el ID de OSD + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + ID de dispositivo + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + Estado + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + Bueno + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + Malo + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + Inactivo + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + Esperanza de vida + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + Fecha de creación de predicción + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + Nombre del dispositivo + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons Daemons + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + Error al leer los datos SMART. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + Los datos recibidos tiene formato JSON versión 2.x y, actualmente, no es compatible con la consola. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + No hay datos SMART disponibles. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + Resultado de la prueba de autoevaluación de estado general de SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + desconocido + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + aprobado + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + con error + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + Información del dispositivo + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + No hay información de dispositivo disponible para este dispositivo. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + No hay datos SMART disponibles para este dispositivo. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + Los datos SMART se están cargando. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctl ha recibido un argumento desconocido (código de error ). Puede que esté usando una versión no compatible de smartmontools. Se requiere la versión 7.0 o una posterior de smartmontools para poder recuperar datos correctamente. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + Error con el código . + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + Bruto + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + Umbral + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + Cuando se produce un error + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + Peor + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + Defina una contraseña nueva. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + Después se le redirigirá a la página de entrada. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + Las contraseñas antigua y la nueva deben ser diferentes. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. - Password confirmation doesn't match the new password. + La contraseña de confirmación no coincide con la contraseña nueva. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + El nombre de usuario es obligatorio + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + La contraseña es obligatoria + + src/app/core/auth/login/login.component.html + 48 + Log in - Log in + Entrar + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + Ámbito + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + Crear + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + Actualizar + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + Suprimir + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + Descripción... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + Permisos + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + función + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + Función creada. + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + Función actualizada. + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role - System Role + Función del sistema + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + Función suprimida. + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + Nombre nuevo + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + Clonar función + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + Función clonada de + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + El nombre de usuario ya existe. + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + Confirmar contraseña + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + Las contraseñas no coinciden. + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + Fecha de caducidad de la contraseña + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + Fecha de caducidad de la contraseña... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + Correo electrónico + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + Correo electrónico no válido. + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + El usuario debe cambiar la contraseña la próxima vez que entre + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + Se dispone a eliminar los permisos "lectura/actualización de usuario" de su propio usuario. + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + Si continúa, no podrá añadir ni eliminar funciones en ningún usuario. + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + No hay ninguna función. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Created user ' - ' - + Created user '' + Usuario creado. + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + Actualizar usuario + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + La sesión se ha cerrado automáticamente porque sus funciones han cambiado. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + Usuario actualizado. + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + Correo electrónico + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + Funciones + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + Usuario suprimido. + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + Error al suprimir el usuario + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + Ha entrado como . + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + Contraseña anterior + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + Contraseña nueva + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + Confirmar contraseña nueva + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + contraseña + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + Contraseña de usuario actualizada" + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + Object Gateway seleccionado: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + Seleccionar Object Gateway + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + Página no encontrada + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + No se encuentra lo que busca. Puede que la página que ha solicitado haya cambiado o se haya movido. + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + Ir a la consola + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + Página no encontrada + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + No se encuentra lo que busca. +  Puede que la página que ha solicitado haya cambiado o se haya movido. + + src/app/core/error/error.ts + 11,12 + Access Denied - Access Denied + Acceso denegado + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + No tiene permiso para ver esta página o recurso. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + Usuario denegado + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. + El usuario no existe en Ceph. + Saldrá del proveedor de identidades cuando intente entrar de nuevo. + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + Ayuda + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + Seguridad + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + Marcas comerciales + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + Ajustes de la consola + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + Gestión del usuario + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + Configuración de telemetría + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + Ayuda + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + documentación + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + Acerca de + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + Usuario que ha entrado + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + Cambiar contraseña + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + Alternar navegación + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + Mapa de CRUSH + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + Papeleras + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + Sistemas de archivos + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + Registros + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + Módulos de gestor + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + Tareas y notificaciones + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + El nombre del nodo en el que se deben colocar los datos. + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + El tipo de nodos CRUSH entre los que se deben separar las réplicas. + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + Cada objeto se divide en porciones de datos, cada una almacenada en un OSD distinto. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + Calcula las porciones de código para cada objeto y las almacena en distintos OSD. + El número de porciones de código es también el número de OSD que pueden estar inactivos sin que se pierdan datos. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + El complemento jerasure es el más genérico y flexible, + y también el complemento por defecto para los repositorios de código de borrado de Ceph. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + La técnica más flexible es reed_sol_van: basta con definir k y m. + La técnica cauchy_good puede ser más rápida, pero hay que elegir con cuidado el tamaño + del paquete. reed_sol_r6_op, liberation, blaum_roth y liber8tion son todas equivalentes a RAID6 + en el sentido de que solo se pueden configurar con m=2. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + La codificación se realizará según el tamaño de los paquetes de bytes de uno en uno. + Elegir el tamaño correcto es difícil. + La documentación de jerasure incluye información completa sobre el tema. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,79 +17319,119 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + Con el complemento jerasure, cuando un objeto de código de borrado se almacena + en varios OSD, para recuperarse de la pérdida de un OSD es necesario leer de todos los demás. + Por ejemplo, si jerasure está configurado con k=8 y m=4, cuando se pierde un OSD es necesario leer + de los otros once para repararlo. - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + El complemento de código de borrado lrc crea porciones de paridad local para poder realizar la recuperación con + menos OSDs. Por ejemplo, is lrc está configurado con k=8, m=4 y l=4, creará + una porción de paridad adicional para cada cuatro OSDs. Si se pierde un solo OSD, se puede recuperar + solo con cuatro OSD, en lugar de con once. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, for k=4 and m=2, when locality=3 two groups of three are created. Each set can be recovered without reading chunks from another set. - Group the coding and data chunks into sets of size locality. For instance, - for k=4 and m=2, when locality=3 two groups of three are created. Each set can - be recovered without reading chunks from another set. + Agrupa las porciones de código y de datos en localizaciones de conjuntos de tamaño. Por ejemplo, + para k=4 y m=2, si locality=3, se crean dos grupos de tres. Cada conjunto + se puede recuperar sin leer porciones de otro conjunto. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + El tipo de papelera de CRUSH en el que se almacenará cada + conjunto de porciones definido por l. Por ejemplo, si se define como bastidor, cada grupo de l porciones + se colocará en un bastidor distinto. Se usa para crear un paso de regla de CRUSH, por ejemplo, "step choose + rack". Si no se define, no se realiza este tipo de agrupamiento. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + El complemento isa encapsula la biblioteca ISA. Solo funciona en procesadores Intel. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + El complemento ISA viene en dos formatos de Reed Solomon. + Si se define reed_sol_van, se trata de Vandermonde; si se define cauchy, se trata de Cauchy. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + El complemento shec encapsula las distintas bibliotecas SHEC. + Permite a Ceph recuperar datos de forma más eficiente que los códigos de Reed Solomon. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + El número de porciones de paridad. Cada uno de ellas incluye cada porción de datos + en su intervalo de cálculo. El número se usa como estimador de durabilidad. Por ejemplo, si c=2, + 2 OSD pueden estar inactivos sin que se pierdan datos. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + Los códigos CLAY (abreviación de coupled-layer, capa emparejada) son códigos de borrado diseñados + para ahorrar de forma significativa ancho de banda de red y E/S de disco cuando se repara + un nodo/OSD/bastidor que falla. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + El número de OSD a los que se ha pedido que envíen datos durante la recuperación de una sola porción. + El valor de d debe cumplir que k+1 <= d <= k+m-1. Cuanto mayor sea el valor de d, más + se ahorrará. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + scalar_mds especifica el complemento que se usa como bloque + de construcción en la construcción a capas. Puede ser jerasure, isa o shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8913,1738 +17439,2846 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + technique especifica la técnica que se seleccionará + en el complemento "scalar_mds" especificado. +Las técnicas admitidas son: + "reed_sol_van", "reed_sol_r6_op", "cauchy_orig", + "cauchy_good" o "liber8tion" para jerasure; "reed_sol_van" o + "cauchy" para isa y "single" o "multiple" para shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + El nombre de la papelera de CRUSH usado para el primer paso de la regla de CRUSH. + Por ejemplo, "step take default". + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + Asegúrese de que no hay dos porciones en una papelera con el mismo + dominio de error. Por ejemplo, si el dominio de error es host, no debe haber dos porciones almacenadas en el mismo + host. Se usa para crear un paso de regla de CRUSH, por ejemplo, "step chooseleaf host". + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. - Set the directory name from which the erasure code plugin is loaded. + Define el nombre de directorio del que se cargará el complemento de código de borrado. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + Permite todas las operaciones + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + Permite solo las operaciones que no modifican el servidor + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + No permite ningún tipo de acceso + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. - Please specify a filesystem volume. + Especifique un volumen del sistema de archivos. + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + La función está inhabilitada porque Orchestrator no está disponible. + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + El motor de Orchestrator no admite esta función. + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- Seleccione la prioridad -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + Baja + + src/app/shared/api/osd.service.ts + 44 + High - High + Alta + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + Puede que los datos de la lista de usuarios estén inactivos. Si fuera necesario, puede volver a cargarlos manualmente. + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + Recuperando datos de . + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + Recuperando datos. + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... - Please wait... + Espere... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + Mostrando datos guardados anteriormente en caché de . + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + Mostrando datos guardados anteriormente en caché. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + No es posible cargar los datos de . + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + No es posible cargar los datos. + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + Consulte el estado del clúster. + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error Error + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + Información + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + Correcto + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + Peligro + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + Elimina el valor de configuración personalizado. Se heredará y usará en su lugar la configuración por defecto. + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + El valor introducido es demasiado alto. No debe ser mayor que . + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + El valor introducido es demasiado bajo. No debe ser menor que . + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + Copiar al portapapeles + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + ¿Seguro que desea ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + ¿Seguro que desea los elementos seleccionados? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + ¿Seguro que desea el elemento seleccionado? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. - Yes, I am sure. + Sí, seguro. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation - documentation + documentación + + src/app/shared/components/doc/doc.component.ts + 12 + Download - Download + Descargar + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + Este campo es obligatorio. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + Error. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + Cargando datos del panel... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + Consulte para obtener información sobre cómo configurar y habilitar la función de supervisión. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + La consola de Grafana no existe. Consulte para obtener información sobre cómo añadir consolas a Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Selector de hora de Grafana + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + Restablecer ajustes + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + Última hora (opción por defecto) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday - Yesterday + Ayer + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + Hoy hasta ahora + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + Anteayer + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + Los últimos 2 días + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + Este día la semana pasada + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week - Previous week + La semana pasada + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + Esta semana hasta ahora + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + Los últimos 7 días + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + El mes pasado + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + Este mes hasta ahora + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + Los últimos 30 días + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + Los últimos 90 días + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + Los últimos 6 meses + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + El último año + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + El año pasado + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + Este año hasta ahora + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + Los últimos 2 años + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + Los últimos 5 años + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + Seleccione un idioma + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + Borrar notificaciones + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + Eliminar notificación + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + Duración: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + No hay notificaciones. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + La función no se admite en la instancia actual de Orchestrator. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + Orchestrator no está disponible. Consulte para obtener información sobre cómo configurar y habilitar la función. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + Su contraseña caduca en menos de 1 día. Haga clic aquí para cambiarla ahora. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + Su contraseña caduca en días. Haga clic aquí para cambiarla ahora. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + Actualizar + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + No se ha seleccionado ningún elemento. + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + Deseleccione el elemento para volver a seleccionarlo + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + Se ha alcanzado el límite de selección + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + Filtrar etiquetas + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + Añadir insignia + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + No hay ningún elemento disponible. + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + La comunidad de Ceph necesita su ayuda para seguir mejorando: active el módulo Telemetría. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + Recordatorio de activación de telemetría silenciado + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + Puede activar el módulo en la página de configuración de telemetría (<b>Ajustes de la consola</b> > <b>Configuración de telemetría</b>) en cualquier momento. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export - Export + Exportar + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + Importar + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + Añadir + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + Definir + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + Enviar + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + Eliminar + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + Anular definición + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + Cancelar + + src/app/shared/constants/app.constants.ts + 176 + Preview - Preview + Vista previa + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + Mover + + src/app/shared/constants/app.constants.ts + 178 + Next - Next + Siguiente + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + Atrás + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + Clonar + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + Copiar + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + Depuración profunda + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + Destruir + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + Expulsar + + src/app/shared/constants/app.constants.ts + 189 + Flatten - Flatten + Aplanar + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + Marcar para desactivar + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + Marcar para incluir + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + Marcar como perdido + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + Marcar para excluir + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + Proteger + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + Renombrar + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + Restaurar + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + Reequilibrar peso + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + Depuración + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + Mostrar + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + Mover a la papelera + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + Desproteger + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + Cambiar + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + Entrar en mantenimiento + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + Salir de mantenimiento + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + Iniciar vaciado + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain - Stop Drain + Detener vaciado + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + Volver a crear + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + Caducar + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + Desactivar + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + Suprimido + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + Añadido + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + Eliminado + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + Editado + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + Cancelado + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + En vista previa + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + Movido + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + Clonado + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + Copiado + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + Depurado en profundidad + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + Destruido + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + Aplanado + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + Marcado como desactivado + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + Marcado para incluir + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + Marcado como perdido + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + Marcado para excluir + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + Protegido + + src/app/shared/constants/app.constants.ts + 313 + Purged - Purged + Limpiado + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + Renombrado + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + Restaurado + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + Peso reequilibrado + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + Revertido + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + Depurado + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + Mostrado + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + Movido a la papelera + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + Desprotegido + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + Vuelto a crear + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + Caducado + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + Cerrar + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + Borrar filtros + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + seleccionados + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + encontrados + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total total - X total + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row - Expand/Collapse Row + Expandir o contraer fila + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + Error al cargar los datos. + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + Cargando datos de formulario... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + No es posible cargar los datos de formulario. + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + El tamaño debe ser de o más + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + El tamaño debe ser de o menos + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + Sí + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No No + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + en %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + hace %s + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + unos segundos + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d segundos + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + un minuto + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + %d minutos + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + una hora + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d horas + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + un día + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d días + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + una semana + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d semanas + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + un mes + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months - %d months + %d meses + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year - a year + un año + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d años + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + Reglas requeridas para las contraseñas: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Must contain at least - characters - + Must contain at least characters + Debe tener al menos caracteres + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + No debe ser igual que la anterior + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + No puede contener el nombre de usuario + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + No puede contener ninguna palabra clave configurada + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + No puede contener ningún carácter repetido (p. ej., "aaa") + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + No puede contener ninguna secuencia de caracteres (p. ej., "abc") + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + Debe incluir carecteres de los grupos siguientes: + * Letras (a-z, A-Z) + * Números (0-9) + * Caracteres especiales (!"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~) + * Cualquier otro caracter (signos) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + Parece que el buscador de coincidencias no encuentra ninguna regla definida ni alerta activa que coincida. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts - no active alerts + no hay alertas activas + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1 alerta activa + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + alertas activas + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + Coincide con una regla + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + Coincide con reglas + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + con . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + Calidad del servicio + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + Límite de BPS + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + El límite deseado de bytes de E/S por segundo. + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + Límite de IOPS + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + El límite deseado de operaciones de E/S por segundo. + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + Límite de BPS de lectura + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + El límite deseado de bytes de lectura por segundo. + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + Límite de IOPS de lectura + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + El límite deseado de operaciones de lectura por segundo. + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + Límite de BPS de escritura + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + El límite deseado de bytes de escritura por segundo. + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + Límite de IOPS de escritura + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + El límite deseado de operaciones de escritura por segundo. + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + Ráfaga de BPS + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + El límite deseado de ráfaga de bytes de E/S. + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + Ráfaga de IOPS + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + El límite deseado de ráfaga de operaciones de E/S. + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + Ráfaga de BPS de lectura + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + El límite deseado de ráfaga de bytes de lectura. + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + Ráfaga de IOPS de lectura + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + El límite deseado de ráfaga de operaciones de lectura. + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + Ráfaga de BPS de escritura + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + El límite deseado de ráfaga de bytes de escritura. + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + Ráfaga de IOPS de escritura + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + El límite deseado de ráfaga de operaciones de escritura. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + Error al + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + Ejecutando + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + ejecutar + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + Ejecutado + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + tarea desconocida + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + Creando + + src/app/shared/services/task-message.service.ts + 67 + create - create + crear + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + Actualizando + + src/app/shared/services/task-message.service.ts + 68 + update - update + actualizar + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + Suprimiendo + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding - Adding + Añadiendo + + src/app/shared/services/task-message.service.ts + 70 + add - add + añadir + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + Eliminando + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + eliminar + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + Importando + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + importar + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + Importado + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + RBD + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + Instantánea de RBD @ + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + duplicando nombre del sitio + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + testigo de arranque + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + modo de duplicación para el repositorio + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + par de duplicación para el repositorio + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + todas las consolas + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + Identificando + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + identificar + + src/app/shared/services/task-message.service.ts + 133 + Identified - Identified + Identificado + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + dispositivo en el host + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + OSDs (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + ya está usando el nombre. + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + está ocupado. + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + contiene instantáneas. + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + Clonando + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + clonar + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + La instantánea de debe protegerse. + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + Copiando + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + copiar + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + Aplanando + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + aplanar + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + No es posible anular la protección de porque contiene imágenes hijas. + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + No es posible suprimir porque está protegido. + + src/app/shared/services/task-message.service.ts + 243 + Rolling back - Rolling back + Revirtiendo + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + revertir + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + Moviendo + + src/app/shared/services/task-message.service.ts + 256 + move - move + mover + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + la imagen a la papelera + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. - Could not find image. + No se encuentra la imagen. + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + Restaurando + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + restaurar + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + la imagen en + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + Image name '' is already in use. + El nombre de imagen ya está en uso. + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + imagen + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + Limpiando + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + limpiar + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + todos los repositorios + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + imágenes de + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + No es posible inhabilitar la duplicación porque contiene un par + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - host ' - ' - + host '' + host + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + OSD + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + repositorio + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + perfil de código de borrado + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + reglas de CRUSH + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + destino + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + NFS ":" + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.fr-FR.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.fr-FR.xlf index e0369896554..2a21408e26d 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.fr-FR.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.fr-FR.xlf @@ -1,8827 +1,17313 @@ - - + + Close - Close + Fermer + + node_modules/src/ngb-config.ts + 13 + HH HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + Fermer + + node_modules/src/ngb-config.ts + 13 + «« «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + Sélectionnez un mois + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + Le mois dernier + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours - Hours + Heures + + node_modules/src/ngb-config.ts + 13 + « « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Précédent + + node_modules/src/ngb-config.ts + 13 + MM MM + + node_modules/src/ngb-config.ts + 13 + » » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + Sélectionnez une année + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + Mois suivant + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + Suivant + + node_modules/src/ngb-config.ts + 13 + Minutes Minutes + + node_modules/src/ngb-config.ts + 13 + »» »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + Incrémenter les heures + + node_modules/src/ngb-config.ts + 13 + First - First + Premier + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Précédent + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + Décrémenter les heures + + node_modules/src/ngb-config.ts + 13 + Next - Next + Suivant + + node_modules/src/ngb-config.ts + 13 + Increment minutes - Increment minutes + Incrémenter les minutes + + node_modules/src/ngb-config.ts + 13 + Last - Last + Dernier + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + Décrémenter les minutes + + node_modules/src/ngb-config.ts + 13 + SS SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + Secondes + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + Incrémenter les secondes + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + Décrémenter les secondes + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + Doit être supérieur ou égal à . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + Doit être inférieur ou égal à . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + Présentation + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets - Targets + Cibles + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology - iSCSI Topology + Topologie iSCSI + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + Nom + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + Actuel + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + Valeur par défaut + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication - Discovery Authentication + Authentification de la découverte + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + Utilisateur + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + Ce champ est obligatoire. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Les noms d'utilisateur doivent avoir une longueur comprise entre 8 et 64 caractères et peuvent contenir des caractères alphanumériques : '.', '@', '-', '_' ou ':'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + Mot de passe + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Les mots de passe doivent avoir une longueur comprise entre 12 et 16 caractères et peuvent contenir des caractères alphanumériques : '@', '-', '_' ou '/'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + Utilisateur commun + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + Mot de passe commun + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + Authentification de la découverte mise à jour + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + IQN cible + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + Modèle IQN incorrect. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + Un IQN est associé à la notation 'iqn.$year-$month.$reversedAddress:$definedName' + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Par exemple : iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + Plus d'informations + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + Des paramètres avancés de cette cible ont été modifiés. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + Portails + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + Ajouter un portail + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + Au moins passerelles sont obligatoires. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images Images + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + Backstore : .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + Des paramètres avancés de cette image ont été modifiés. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + Numéros LUN en double. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + WWN en double. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + Ajouter une image + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + Authentification ACL + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Les noms d'utilisateur doivent avoir une longueur comprise entre 8 à 64 caractères et peuvent contenir des caractères alphanumériques : '.', '@', '-', '_' ou ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Les mots de passe doivent avoir une longueur comprise entre 12 et 16 caractères et peuvent contenir des caractères alphanumériques : '@', '-', '_' ou '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + Initiateurs + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + Initiateur + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + IQN client + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + L'IQN de l'initiateur doit être unique. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Les noms d'utilisateur doivent avoir une longueur comprise entre 8 et 64 caractères et peuvent contenir des caractères alphanumériques : '.', '@', '-', '_' ou ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Les mots de passe doivent avoir une longueur comprise entre 12 et 16 caractères et peuvent contenir des caractères alphanumériques '@', '-', '_' ou '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + L'initiateur appartient à un groupe dans lequel les images seront configurées. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + Aucun élément ajouté. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + Ajouter un initiateur + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + Groupes + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + Groupe + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + Nom + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + Ajouter un groupe + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. - There are no portals available. + Il n'y a aucun portail disponible. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + Il n'y a aucune image disponible. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. - There are no images available. Please make sure you add an image to the target. + Il n'y a aucune image disponible. Veillez à ajouter une image à la cible. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. - There are no initiators available. Please make sure you add an initiator to the target. + Il n'y a aucun initiateur disponible. Veillez à ajouter un initiateur à la cible. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + cible + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + Configurer + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + Il n'est généralement pas nécessaire de modifier ces paramètres par défaut. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + Identifiant + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + Paramètres + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore Backstore + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + Paramètres avancés + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + Cibles iSCSI non disponibles + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + Veuillez consulter pour apprendre comment configurer et activer la fonctionnalité de gestion des cibles iSCSI. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + Informations disponibles : + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + Authentification de la découverte + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + Cible + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + Portails + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images Images + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions - # Sessions + Nbre de sessions + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + Passerelle(s) non disponible(s) + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + La cible comporte des sessions actives + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + Cible iSCSI + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + Passerelles + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + État + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + Nbre de cibles + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool - Pool + Réserve + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image Image + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore Backstore + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + Octets de lecture + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + Octets d'écriture + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + Opérations de lecture + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + Opérations d'écriture + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + A/O depuis + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token - Create Bootstrap Token + Créer un jeton Bootstrap + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + Pour créer un jeton Bootstrap pouvant être importé par une grappe de sites homologues, indiquez le nom du site local, sélectionnez les réserves pour lesquelles la mise en miroir sera activée, puis cliquez sur  Générer. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + Nom du site + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + Nom... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + Réserves + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + Au moins une réserve est requise. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + Générer + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + Jeton + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + Jeton généré... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + Fermer + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + Importer un jeton Bootstrap + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + Pour importer un jeton Bootstrap pouvant être créé par une grappe de sites homologues, indiquez le nom du site local, sélectionnez les réserves pour lesquelles la mise en miroir sera activée, indiquez le jeton généré, puis cliquez sur Importer. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction Direction + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + Le jeton n'est pas valide. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance Instance + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname - Hostname + Nom d'hôte + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version Version + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + Santé + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + Problème + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + Avancement + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description Description + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons Daemons + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + Créer un jeton Bootstrap + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + Importer un jeton Bootstrap + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + Modifier le mode de mise en miroir de la réserve + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + Pour modifier le mode de mise en miroir de la réserve  , sélectionnez un nouveau mode dans la liste, puis cliquez sur  Mettre à jour. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode Mode + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + Les grappes d'homologues doivent être supprimées avant de désactiver la mise en miroir. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + Désactivé + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + {VAR_SELECT, select, edit {Modifier} other {Ajouter}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + Homologue de mise en miroir de la réserve + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + les attributs de mise en miroir de la réserve , puis cliquez sur Soumettre. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + Nom de grappe + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + Le nom de grappe n'est pas valide. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID - CephX ID + ID CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... - CephX ID... + ID CephX... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + L'ID CephX n'est pas valide. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + Adresses du moniteur + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + Adresses séparées par une virgule... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + L'adresse du moniteur n'est pas valide. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key - CephX Key + Clé CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Clé Base64... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. - CephX key must be base64 encoded. + La clé CephX doit être codée en base64. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + nb en local + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + nb à distance + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + Mode d'édition + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer - Add Peer + Ajouter un homologue + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer - Edit Peer + Modifier un homologue + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + Supprimer un homologue + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode Mode + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader Leader + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + nb en local + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + nb à distance + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + mettre en miroir l'homologue + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port Port + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + Initiateur + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + Chargement... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host - Host + Hôte + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport Transport + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool - Pool + Réserve + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- - -- Select a pool -- + -- Sélectionnez une réserve -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + Les caractères '/' et '@' ne sont pas autorisés. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + Espace de noms + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + Détails + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + Espaces de noms + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. - The value must be at least 1. + La valeur doit être au moins égale à 1. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration - RBD Configuration + Configuration RBD + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. - Remove the local configuration value. The parent configuration value will be inherited and used instead. + Supprimez la valeur de configuration locale. La valeur de configuration parent sera héritée et utilisée à la place. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + La valeur minimale est de 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global Global + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image Image + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + Clé + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source Source + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + Valeur + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + Uniquement disponible pour les images RBD avec la fonction fast-diff activée + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + Réserve de données + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + Créé + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + Taille + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + Objets + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + Taille de l'objet + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + Fonctionnalités + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + Provisionné + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A N/A + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned - Total provisioned + Provisionnement total + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + Unité de segmentation + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + Nombre de segmentations + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent Parent + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + Préfixe du nom de bloc + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + Tri + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + Version du format + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + Instantanés + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration Configuration + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance Performance + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + Les informations ne peuvent pas être affichées pour les RBD ayant le statut 'En cours de suppression'. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + Ce paramètre remplace la valeur globale + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + Il s'agit de la valeur globale. Aucune valeur de cette option n'a été définie pour cette image. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + Vous devez avoir plusieurs réserves utilisant le libellé de l'application rbd pour utiliser une réserve de données dédiée. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- Aucune réserve de données disponible -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- Aucun espace de noms disponible -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- Sélectionnez un espace de noms -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + Vous devez augmenter la taille. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping - Striping + Segmentation + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- Sélectionnez une unité de segmentation -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + Ce champ est obligatoire, car le nombre de segments est défini. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + L'unité de segmentation est supérieure à la taille de l'objet. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + Ce champ est obligatoire, car l'unité de segmentation est définie. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + Le nombre de segments doit être supérieur à 0. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + Aplatissement en profondeur + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + Superposition + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + Verrou exclusif + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + Assignation d'objet (nécessite exclusive-lock) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + Fast diff (interverrouillage avec object-map) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + La suppression de cette image entraînera également la suppression de ses instantanés. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + Les instantanés suivants sont actuellement protégés et seront supprimés : + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + RBD ayant le statut 'En cours de suppression' + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + Taille + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + Utilisation + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + Objets + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + Taille de l'objet + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent Parent + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + Mise en miroir + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + Avertissement + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + Ce RBD comporte des instantanés clonés. Supprimez les RBD associés avant de supprimer ce RBD. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + Le nom de cette image RBD n'est pas valide. Cette image ne peut pas être gérée par ceph. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + Action impossible sur un RBD ayant le statut 'En cours de suppression' + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + Créer un espace de noms + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- Aucune réserve RBD disponible -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. - Namespace already exists. + L'espace de noms existe déjà. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + Espace de noms créé '/' + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + Nbre total d'images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + Espace de noms supprimé '/' + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + L'espace de noms contient des images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + Instantané RBD + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + L'instantané doit être protégé pour pouvoir être cloné. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + Vous êtes sur le point de revenir à l'état initial + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + Utilisé + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + PROTÉGÉ + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + NON PROTÉGÉ + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + Créé + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + Retour à l'état initial de l'instantané RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + Revenir à l'état initial + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + Intantané RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + Corbeille + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + Performance globale + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + Vider la corbeille + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + Expiration le + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + Protection jusqu'au + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + Cette image est protégée jusqu'au . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status - Status + Statut + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At - Deleted At + Supprimé le + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + Déplacer une image vers la corbeille + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + Cette image contient un ou plusieurs instantanés, ce qui l'empêchera d'être supprimée après avoir été déplacée vers la corbeille. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + Pour déplacer vers la corbeille, cliquez sur Déplacer. Vous pouvez éventuellement sélectionner une date d'expiration. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + La protection expire le + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + NON PROTÉGÉ + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Format de date incorrect. Veuillez utiliser "AAAA-MM-JJ HH:mm:ss". + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + La protection a déjà expiré. Veuillez sélectionner une date ultérieure ou laisser le champ vide. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + Pour purger, sélectionnez  Tout  ou une réserve, puis cliquez sur  Purger.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: - Pool: + Réserve : + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + Nom de la réserve... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + Tout + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + Restaurer l'image + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + Pour restaurer  @,  entrez le nouveau nom de l'image, puis cliquez sur  Restaurer. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + Nouveau nom + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + Ce champ est obligatoire ! + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id - id + ID + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type type + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + état + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version version + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + racine + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + Client '' évincé + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + Rangs + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + Veilles + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + Compteurs de performance MDS + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + Daemons en veille + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + Rang + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon Daemon + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + Activité + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries Dentries + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes Inodes + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + Répertoires + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + Capacités + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type Type + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas Quotas + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + Origine + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + Chemin + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + Impossible de créer des instantanés pour les fichiers/dossiers du sous-volume + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + Taille max. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + Nbre max. de fichiers + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + La valeur héritée est la valeur maximale à utiliser. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + Sauvegarder + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + Quota CephFS pour '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + taille + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + fichiers + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + quota à partir de '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + La valeur doit être au minimum égale à 0 ou supérieure + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + La valeur doit être au maximum égale à ou inférieure + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + Mis à jour + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - in order to inherit - - + in order to inherit + pour hériter + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + inutilisé(e) en raison de l'héritage de la fonction + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + pour ne pas avoir de quota sur le répertoire + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + Créer un instantané + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + Entrez le nom de l'instantané. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + Instantané '' créé pour '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + Instantané CephFs + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + Instantané '' supprimé pour '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement Placement + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + Serveurs + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label - Label + Libellé + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + Il n'y a pas d'hôtes. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + Filtrer les hôtes + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled - Enabled + Activé + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + Heure de début + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + Reconnexion en cours… Veuillez patienter. + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + Valeur par défaut + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + par exemple, 10 Gio + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + Tout + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + Lecture + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute - Execute + Exécuter + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + Réserve de données + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + Répertoires + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients Clients + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + Détails des performances + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description Description + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + Description longue + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values - Current values + Valeurs actuelles + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + Valeur par défaut du daemon + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type Type + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + Minimum + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + Maximum + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + Drapeaux + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services Services + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source Source + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + Niveau + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + Mise à jour possible lors de l'exécution (modifiable) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + Balises + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + Valeurs d'énumération + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + Voir aussi + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + La valeur peut être mise à jour au moment de l'exécution. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + Les daemons/clients ne tirent pas cette valeur de +  la base de données de configuration de Monitor. Nous n'autorisons pas le réglage de cette option via 'ceph config +  set ...'. Cette option doit être configurée via ceph.conf ou via +  la ligne de commande. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + L'option ne prend effet qu'au démarrage du daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + L'option n'affecte que la création des grappes. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + L'option n'affecte que la création des daemons. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + Valeurs + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + -- Valeur par défaut -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true - true + vrai + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false - false + faux + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + La valeur saisie est trop élevée ! Elle ne doit pas être supérieure à . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + La valeur saisie est trop basse ! Elle ne doit pas être inférieure à . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - Updated config option - - + Updated config option + Option de configuration mise à jour + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + Modifié + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + Niveau + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service Service - - - Modified - Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + Valeur actuelle + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + Modifiable + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + Ressources de la grappe + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + Capacité de stockage + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + Nombre de périphériques + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + Capacité brute + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs - CPUs + Processeurs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + Mémoire + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + Détails de l'hôte + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + Bienvenue dans + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + Veuillez d'abord développer votre grappe + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + Développer la grappe + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + Passer + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + Ajouter des hôtes + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + Créer des OSD + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + Créer des services + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + Vous êtes sur le point de passer le processus d'expansion de la grappe. Vous devrez naviguer dans le menu pour ajouter des hôtes et des services. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + Voulez-vous vraiment continuer ? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + Continuer + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + Étape d'expansion de la grappe passée par l'utilisateur + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + La grappe a été étendue + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + Développer la grappe + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + Visionneuse de carte CRUSH + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + Périphériques + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + Disques physiques + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + Santé du périphérique + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + Aucun nom d'hôte trouvé. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + Nom d'hôte + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + Pour ajouter plusieurs hôtes simultanément, vous pouvez saisir : + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + une liste de noms d'hôtes séparés par des virgules (par exemple : exemple-01,exemple-02,exemple-03) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + une expression de plage (par exemple : exemple-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + une expression de plage séparée par des virgules (par exemple : exemple-[01-05].lab.com,exemple2-[1-4].lab.com,exemple3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + Le nom d'hôte sélectionné est déjà utilisé. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + Adresse réseau + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + La valeur n'est pas une adresse IP valide. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + Libellés + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + Mode Maintenance + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + Il n'y a aucun libellé. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + Filtrer ou ajouter des libellés + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label - Add label + Ajouter un libellé + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host - host + hôte + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + Liste d'hôtes + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + Les données ne seront disponibles que si l'orchestrateur est disponible. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + SSD, NVME + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + La fonction est désactivée, car l'hôte sélectionné n'est pas géré par l'orchestrateur. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + Libellés + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + Modèle + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + Processeurs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + Coeurs + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + Mémoire totale + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity - Raw Capacity + Capacité brute + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + Disques durs + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + Cartes d'interface réseau + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + Modifier l'hôte : + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + Modifier l'hôte + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + Hôte mis à jour &quot;&quot; + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + &quot;&quot; déplacé(e) vers la maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + &quot;&quot; ne peut pas être placé en maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - " - " has exited maintenance - + "" has exited maintenance + &quot;&quot; a quitté la maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + &quot;&quot; a cessé de se vider + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + &quot;&quot; a commencé à se vider + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + Identifier + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + Chemin du périphérique + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + Disponible + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + Fournisseur + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + OSD + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + Identifier le périphérique + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + Entrez la durée de clignotement de la LED. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute 1 minute + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes 2 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes 5 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes 10 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes 15 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + L'identification de '' a démarré sur l'hôte '' + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + Journaux de grappes + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + Journaux d'audit + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + Priorité : + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + Mot clé : + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + Date : + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + Période : + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + Aucune entrée de journal n'a été trouvée. Essayez de sélectionner d'autres options de filtrage. + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + Réinitialisez le filtre. + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module - Edit Manager module + Modifier le module Manager + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + La valeur entrée n'est pas un UUID valide, par exemple : 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + La valeur entrée doit être une adresse IP valide. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - The entered value is too high! It must be lower or equal to - . - + The entered value is too high! It must be lower or equal to . + La valeur saisie est trop élevée ! Elle doit être inférieure ou égale à . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + La valeur saisie est trop basse ! Elle doit être supérieure ou égale à . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. - The entered value needs to be a number. + La valeur entrée doit être un nombre. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + La valeur entrée doit être un nombre ou une valeur décimale. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + Options mises à jour pour le module ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + Toujours actif + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + Modifier + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + Activer + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + Désactiver + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + Ce module Manager est toujours actif. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status - Status + Statut + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + ID de grappe + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + monmap modifié + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch monmap epoch + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con quorum con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon quorum mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con required con + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon required mon + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + Dans le quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + Hors quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + Adresse publique + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + Sessions ouvertes + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + Aperçu de la création OSD + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + Attributs (carte OSD) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + Métadonnées + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + Métadonnées non disponibles + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + Compteur de performance + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + Périphériques + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + Périphériques de stockage primaires. Ces périphériques contiennent toutes les données OSD. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + Périphériques Write-Ahead-Log. Ces périphériques sont utilisés pour le journal interne de BlueStore. Un périphérique WAL n'est utile que s'il est plus rapide que le périphérique primaire (par exemple, périphériques NVME ou SSD). Si la quantité d'espace de stockage rapide disponible est limitée (par exemple, moins d'un gigaoctet), nous recommandons de l'utiliser en tant que périphérique WAL. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + Les périphériques DB peuvent être utilisés pour stocker les métadonnées internes de BlueStore. Le provisioning d'un périphérique DB n'est utile que s'il est plus rapide que le périphérique primaire (par exemple, périphériques NVME ou SSD). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + Ajouter + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + Effacer + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + Capacité brute : + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + Aucun périphérique disponible + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + Ajoutez d'abord les périphériques primaires + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters - Add devices by using filters + Ajouter des périphériques à l'aide de filtres + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + Périphériques + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + Au moins un de ces filtres doit être appliqué pour pouvoir continuer : + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + Nombre de périphériques : . Capacité brute : . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + Drapeaux OSD individuels + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + À l'échelle de la grappe + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + Restaurer la sélection précédente + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + Pas démarrés + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + Les OSD ne sont pas autorisés à démarrer. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + Pas arrêtés + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + Les rapports de défaillance des OSD sont ignorés, de sorte que les moniteurs ne marquent pas les OSD comme étant arrêtés. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + Pas rentrés + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + Les OSD qui ont été marqués comme sortis ne seront pas marqués comme rentrés à leur démarrage. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + Pas sortis + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + Les OSD ne seront pas marqués automatiquement comme sortis après l'intervalle configuré. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + Le drapeau a été activé pour toute la grappe. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + Drapeaux OSD mis à jour + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + Drapeaux OSD à l'échelle de la grappe + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause Pause + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes - Pauses reads and writes + Met en pause les lectures et écritures + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + Pas de nettoyage + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + Nettoyage désactivé + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + Pas de nettoyage en profondeur + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + Le nettoyage en profondeur est désactivé + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + Pas de renvoi + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended - Backfilling of PGs is suspended + Le renvoi des groupes de placements est suspendu + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + Pas de rééquilibrage + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + L'OSD choisira de n'effectuer un renvoi que si un groupe de placements est également détérioré + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + Pas de récupération + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + La récupération des groupes de placements est suspendue + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + Tri au niveau du bit + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort - Use bitwise sort + Utiliser le tri au niveau du bit + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + Variables snapdir purgées + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + Les OSD ont converti les variables snapset + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + Suppressions des récupérations + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + Suppressions effectuées pendant la restauration et non l'homologation + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + Limite stricte de journalisation des groupes de placements + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + Impose une limite stricte à la longueur du journal des groupes de placements + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices - Shared devices + Périphériques partagés + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + Connecteurs WAL + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + Nombre de périphériques OSD par périphérique WAL. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + Indiquez 0 pour laisser le backend de l'orchestrateur en décider. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + La valeur doit être supérieure ou égale à 0. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + Connecteurs DB + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + Nombre de périphériques OSD par périphérique DB. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption - Encryption + Chiffrement + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + Liste des OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + Les OSD seront marqués en tant que si vous continuez. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {l'OSD est} other {les OSD sont}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + L'OSD sera si vous continuez. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + Conserver le(s) ID OSD pour le remplacement. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + sorti + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + rentré + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + arrêté + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + Marquer + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + OSD perdu + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + marqué comme perdu + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + Purger + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + purgé + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + détruire + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + détruit + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + Drapeaux + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + Priorité de récupération + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + Nettoyage du groupe de placements + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + Classe de périphérique + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + Groupes de placements + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + Octets de lecture + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + Octets d'écriture + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops - Read ops + Opérations de lecture + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + Opérations d'écriture + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + Modifier l'OSD : + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + Modifier l'OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + OSD '' mis à jour + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + Marquer l'OSD en tant que + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + Marquer + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + supprimer + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + supprimé + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + Avancé... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + Options de configuration avancées + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + Options de nettoyage du groupe de placements + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + Options de nettoyage du groupe de placements mises à jour + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + Priorité de récupération des OSD + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + Priorité + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + Personnaliser les valeurs de priorité + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + La valeur saisie est trop élevée ! Elle ne doit pas être supérieure à . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + La valeur saisie est trop basse ! Elle ne doit pas être inférieure à . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + Nbre max. de renvois + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active - Recovery Max Active + Nombre maximum de récupérations actives + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + Nombre maximum de démarrages uniques de récupérations + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + Mise en veille de la récupération + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + Personnalisé + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + Priorité mise à jour de la vitesse de récupération de l'OSD '' + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + Réévaluer l'OSD : + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + La valeur doit être comprise entre 0 et 1. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSDs - Scrub - + OSDs Scrub + Nettoyage des OSD + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} - {VAR_SELECT, select, true {Deep } other {}} + {VAR_SELECT, select, true {En profondeur} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + Vous êtes sur le point d'appliquer un nettoyage aux OSD : . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {en profondeur} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + a été initialisé dans le ou les OSD suivant(s) : + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + Pour afficher toutes les alertes actives de Prometheus, veuillez fournir l'URL de l'API du gestionnaire d'alertes de Prometheus, comme décrit dans . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + Créer un silence + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + Gravité + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + Démarré + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + Alertes + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences Silences + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + Pour afficher toutes les alertes configurées de Prometheus, veuillez fournir l'URL de l'API de Prometheus, comme décrit dans . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + Groupe + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + Durée + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + Requête + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + Modifier + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + Supprimer + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + La modification d'un silence fera expirer l'ancien silence et le recréera comme un nouveau silence. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + Créateur + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + Commentaire + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + Heure de début + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + Si l'heure de début se situe dans le passé, l'heure de création est utilisée. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + Durée + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + Heur de fin + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + Comparateurs + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + Un silence nécessite au moins un comparateur. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + Ajouter un comparateur + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence silence + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + Nom de l'attribut + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + Expression régulière + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + Ajoutez votre hôte Prometheus à la configuration du tableau de bord et rafraîchissez la page + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + Pour activer les silences, veuillez fournir l'URL de l'API du gestionnaire d'alertes de Prometheus, tel que décrit dans . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + Auteur + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + Fin + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence Silence + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + {VAR_SELECT, select, true {Modifier} other {Ajouter}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + Comparateur + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + -- Sélectionnez un attribut à comparer -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + Valeur + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + Utilisez une expression régulière + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + aucune spécification + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + non géré(e) + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + nombre : + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + libellé : + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + Événements de service + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + Dernier rafraîchissement + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + Événements du daemon + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + Nom du service + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + Type de service + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + Événements de service + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- Sélectionnez un type de service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + Service Backend + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- - -- No service available -- + -- Aucun service disponible -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + Nom du service + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + Domaine + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + Groupe de zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + Non géré(e) + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + Nombre + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + La valeur ne peut pas dépasser 65535. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- Aucune réserve disponible -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + Adresses IP approuvées + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + Liste d'adresses IP séparées par des virgules. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + Veuillez ajouter les adresses IP de Ceph Manager ici, car sinon les passerelles iSCSI ne seront pas joignables. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + Adresse IP virtuelle + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + Adresse IP virtuelle et sous-réseau (en notation CIDR) dans lequel le service d'entrée sera disponible. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + Port Frontend + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + Port utilisé pour accéder au service d'entrée. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + Port du moniteur + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + Port utilisé par haproxy pour le statut de l'équilibreur de charge. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + Réseaux CIDR + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + Liste de réseaux permettant d'identifier l'interface réseau à utiliser pour l'adresse IP virtuelle. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version Version + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + -- Sélectionnez la version SNMP -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination Destination + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - Must be of the format hostname:port. + Doit être au format nomhôte:port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + La valeur ne correspond pas au modèle : nomhôte:port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + ID du moteur + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + Identifiant unique du périphérique (en valeur hexadécimale). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + La valeur ne correspond pas au modèle : Doit être une valeur hexadécimale et sa longueur doit être un multiple de 2 avec une valeur minimale de 10 et une valeur maximale de 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + Protocole d'authentification + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- - -- Select auth protocol -- + -- Sélectionnez un protocole d'authentification -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + Protocole de confidentialité + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + -- Sélectionnez un protocole de confidentialité -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + Informations d'identification + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + Communauté SNMP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + Nom d'utilisateur + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + Chiffrement + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + Certificat + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + Certificat SSL au format PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. - Invalid SSL certificate. + Certificat SSL non valide. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + Clé privée + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + Clé privée SSL au format PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + Clé privée SSL non valide. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service service + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement Placement + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + En cours d'exécution + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + Étape sur 2 : configuration du rapport de télémétrie + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + Le module de télémétrie renvoie des données anonymes sur cette grappe Ceph aux développeurs de Ceph afin de les aider à comprendre comment Ceph est utilisé et quels problèmes les utilisateurs peuvent rencontrer. Ces données sont visualisées sur des tableaux de bord publics qui permettent à la communauté de consulter rapidement un résumé des statistiques sur le nombre de grappes signalées dans le rapport, leur capacité totale et le nombre d'OSD, ainsi que les tendances de distribution des versions. Les données rapportées ne contiennent pas de données sensibles comme les noms de réserves, les noms d'objets, le contenu des objets, les noms d'hôtes ou les numéros de série des périphériques. Elles contiennent des compteurs et des statistiques sur la façon dont la grappe a été déployée, la version de Ceph, la distribution des hôtes et d'autres paramètres qui aident à mieux comprendre la façon dont Ceph est utilisé dans le cadre du projet. Les données sont envoyées de manière sécurisée à et (rapport du périphérique). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + Désactiver + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + Canaux + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + Le rapport de télémétrie est divisé en plusieurs "canaux", chacun ayant un type d'information différent pouvant être configuré ci-dessous. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + Informations de base + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: - Includes basic information about the cluster: + Contient des informations de base sur la grappe : + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + Capacité de la grappe + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + Nombre de moniteurs, de gestionnaires, d'OSD, de MDS, de passerelles Object Gateway ou d'autres daemons + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + Version du logiciel actuellement utilisée + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + Nombre et types de réserves RADOS et systèmes de fichiers CephFS + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + Noms des options de configuration qui ont été modifiées par rapport à leur valeur par défaut (mais pas leurs valeurs) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + Incident + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: - Includes information about daemon crashes: + Contient des informations sur les incidents avec le daemon : + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + Type de daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + Version du daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + Système d'exploitation (distribution OS, version du kernel) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + Trace de la pile identifiant l'endroit où s'est produit l'incident dans le code Ceph + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + Périphérique + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + Comprend des informations sur les mesures des périphériques comme des mesures SMART anonymisées. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + Identification + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + Comprend des informations d'identification fournies par l'utilisateur concernant la grappe : + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + Coordonnées + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + L'envoi de coordonnés est entièrement facultatif et désactivé par défaut. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact Contact + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + Ma première grappe Ceph + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + Organisation + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name - Organization name + Nom de l'organisation + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + Intervalle + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + Par défaut, le module compile et envoie un nouveau rapport toutes les 24 heures. Vous pouvez ajuster cet intervalle en définissant un nombre d'heures différent. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. - The entered value is too low! It must be greater or equal to 8. + La valeur entrée est trop basse ! Elle doit être supérieure ou égale à 8. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + Si la grappe ne peut pas se connecter directement au noeud d'extrémité de télémétrie configuré (par défaut telemetry.ceph.com), vous pouvez configurer un serveur proxy HTTP/HTTPS en ajoutant, par exemple, https://10.0.0.1:8080. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + Vous pouvez également inclure un user:pass si nécessaire, par exemple https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + Remarque : en cliquant sur 'Suivant', vous verrez d'abord un aperçu du contenu du rapport avant de pouvoir activer l'envoi automatique de vos données. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + Étape sur 2 : aperçu du rapport de télémétrie + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + ID du rapport + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + UUID randomisé permettant d'identifier une grappe en particulier au cours de plusieurs rapports de télémétrie. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + Données de télémétrie qui seront réellement soumises. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + J'accepte que mes données de télémétrie soient soumises dans le cadre de l'Accord de licence visant à partager les données de la communauté - Version 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + Le module de télémétrie a été configuré et activé. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + Une erreur s'est produite lors de la mise à jour de la configuration du module de télémétrie. Veuillez réessayer. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + Retour + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause Pause + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + Statut de la grappe + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + Les 5 dernières minutes + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + Les 15 dernières minutes + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + Les 30 dernières minutes + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours - Last 3 hours + Les 3 dernières heures + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + Les 6 dernières heures + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + Les 12 dernières heures + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + Les 24 dernières heures + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster - Cluster + Grappe + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger Danger + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning - Warning + Avertissement + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + Moniteurs + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + OSD + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + Gestionnaires + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + Passerelles Object Gateway + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + Serveurs de métadonnées + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + Passerelles iSCSI + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + Capacité + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity - Raw Capacity + Capacité brute + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status - PG Status + Statut du groupe de placements + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + Groupes de placements par OSD + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + Lectures/Écritures client + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + Débit client + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + Débit de récupération + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + Nettoyage + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + Lectures + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + Écritures + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + Dispo. + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean - Clean + Nettoyé + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + En cours + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + Inconnu + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + Sain + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + Mal placé + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + Détérioré + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + Introuvable + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + objets + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + ici + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + opérationnel + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + aucun système de fichiers + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + actif + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + veille + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + daemons en veille + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + daemon actif + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a n/a + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + (quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total total + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + presque plein(e) + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + complet + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + Clients () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + Adresses + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + Type d'accès + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash - Squash + Écraser + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster - Cluster + Grappe + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + Protocole NFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + Backend de stockage + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User - CephFS User + Utilisateur CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + Système de fichiers CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + Libellé de sécurité + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway Object Gateway + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + Utilisateur Object Gateway + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + Accès possible par tous les clients + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + Adresses + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + Doit contenir une ou plusieurs valeurs séparées par une virgule + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + Par exemple : + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + Type d'accès + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash - Squash + Écraser + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + Ajouter des clients + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (hérité de la configuration globale) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- - -- Select the access type -- + -- Sélectionnez le type d'accès -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + hérité de la configuration globale + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- Sélectionnez le type d'écrasement d'ID utilisateur effectué -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- Aucune grappe disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- Sélectionnez la grappe -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + Il s'agit de l'ID d'un service NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + Ce champ est obligatoire. Pour créer une nouvelle grappe NFS, ajoutez un nouveau service NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- Aucun système de fichiers CephFS disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- Sélectionnez le système de fichiers CephFS -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + Libellé de sécurité + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + Activer le libellé de sécurité + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + Chemin CephFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + Chemin dans un système de fichiers CephFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + Le chemin doit commencer par '/' et peut être suivi d'un mot + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + Le chemin n'existe pas dans le volume sélectionné. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + Compartiment + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + Le compartiment n'existe pas ou n'est pas dans le domaine par défaut (si plusieurs domaines sont configurés). Pour continuer, créez un nouveau compartiment. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + Protocole NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. - By using different Pseudo options, the same Path may be exported multiple times. + En utilisant différentes options de pseudo, il est possible d'exporter plusieurs fois le même chemin. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + Le pseudo est déjà utilisé par une autre exportation. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + Le pseudo doit commencer par un '/' et ne peut contenir aucun des caractères suivants : >, <, |, &, ( ou ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- Aucun type d'accès disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- Aucun écrasement disponible -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + Protocole de transport + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + Export NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + Erreur lors de la récupération des chemins. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + Erreur lors de la récupération des noms de compartiments. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway Object Gateway + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + Compartiment + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + Compteurs de performance non disponibles + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + Le nom doit être exclusivement composé de caractères alphanumériques, de tirets et de traits de soulignement. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + Le nom de profil du code d'effacement sélectionné est déjà utilisé. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + Racine + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + Type de domaine de défaillance + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + Classe de périphérique + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule - Crush Rule + Règle Crush + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + Plug-in + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + Blocs de données (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + Doit être égal ou supérieur à 2. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + Les blocs (k+m) ont dépassé les OSD disponibles de . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + Pour une distribution égale, k doit être un multiple de (k+m)/l. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + k doit être égal ou supérieur à m pour que les données puissent être récupérées correctement par le biais de c. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + Facteur de distribution : + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + Blocs de codage (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + Doit être égal ou supérieur à 1. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + Estimateur de durabilité (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + c doit être égal ou inférieur à m, car m définit la quantité de blocs pouvant être utilisés. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) - Helper chunks (d) + Blocs de programme auxiliaire (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + Définissez d manuellement ou utilisez le calcul par défaut du plug-in qui optiimise d. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + d est automatiquement mis à jour lorsque k et m changent + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + D peut être défini à partir de sur + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + D peut uniquement être défini sur + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D has to be greater than k ( - ). - + D has to be greater than k (). + D doit être supérieur à k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + D doit être inférieur à k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + Localité (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + Impossible de répartir correctement les blocs (k+m) avec la localité actuelle. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + Groupes de localité : + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + Domaine de défaillance Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + Localité Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + Aucun + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + MDS scalaire + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique Technique + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + Taille de paquet + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + Racine Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + Classe de périphérique Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + OSD disponibles : + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + Répertoire + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + Profil du code d'effacement + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + Détails des niveaux de mise en cache + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode - Cache Mode + Mode cache + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + Âge min. évinc. + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + Âge vidage min. + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + Nombre max d'octets cibles + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + Nombre max. d'objets cibles + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + Aucune application ajoutée + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + Limite d'applications atteinte + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + Une réserve peut avoir quatre définitions d'application maximum. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + Caractères autorisés '_a-zA-Z0-9' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters - Maximum length is 128 characters + La longueur maximale est de 128 caractères. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + Filtrer ou ajouter des applications' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + Ajouter une application + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + Le nom de réserve Ceph sélectionné est déjà utilisé. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + Il n'est pas possible de créer une réserve RBD dont le nom contient '/'. Veuillez modifier son nom ou supprimer 'rbd' de la liste des applications. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + Le nom de la réserve ne peut contenir que des lettres, des chiffres, '.', '-', '_' ou '/'. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + Type de réserve + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- Sélectionner un type de réserve -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + Mise à l’échelle automatique des groupes de placements + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + Groupes de placements + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + Au moins un groupe de placements est nécessaire. + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. - Your cluster can't handle this many PGs. Please recalculate the PG amount needed. + Votre grappe ne peut pas gérer autant de groupes de placements. Veuillez recalculer le nombre de groupes de placements nécessaires. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help - Calculation help + Aide au calcul + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + Les paramètres actuels des groupes de placement ont été calculés pour vous. Vous devez vérifier que les valeurs correspondent à vos besoins avant de les soumettre. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + Taille de réplication + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + Minimum : + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + Maximum : + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + La taille spécifiée se trouve en dehors de la plage. Vous devez utiliser une valeur comprise entre et . + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + Une taille de 1 ne créera pas de réplication de l'objet. La 'taille répliquée' comprend l'objet proprement dit. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + Écrasements de code d'effacement + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications Applications + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + Mise en miroir + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + Profil de code d'effacement + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- Aucun profil de code d'effacement n'est disponible -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- Sélectionner un profil de code d'effacement -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + Ce profil ne peut pas être supprimé, car il est en cours d'utilisation. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + Profil + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + Utilisé par les réserves + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + Le profil n'est pas en cours d'utilisation. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset - Crush ruleset + Jeu de règles Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + Un nouveau jeu de règles Crush sera créé implicitement. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + Il n'y a pas de règles. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- Sélectionner une règle Crush -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + Cette règle ne peut pas être supprimée, car elle est en cours d'utilisation. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + Règle Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps - Crush steps + Étapes Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + La règle n'est pas en cours d'utilisation. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + La règle ne peut pas être utilisée dans la grappe actuelle, car elle contient un nombre d'OSD inférieur au minimum requis par cette règle. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression Compression + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + Algorithme + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- Aucun algorithme de compression d'effacement n'est disponible -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + Taille de blob minimale + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + par ex. 128 Kio + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + La valeur doit être supérieure à 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + La valeur doit être inférieure à la taille de blob maximale. + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + Taille de blob maximale + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + par ex., 512 Kio + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + La valeur doit être supérieure à la taille de blob minimale. + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + Rapport + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + Rapport de compression + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + La valeur doit se situer entre 0,0 et 1,0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + Nombre max. d'octets + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + Laissez le champ vide ou indiquez 0 pour désactiver ce quota. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + Un quota valide doit être supérieur à 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + Nombre max. d'objets + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + La valeur doit être supérieure ou égale à 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + réserve + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + profil de code d'effacement + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + règle Crush + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + Liste des réserves + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + Protection des données + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications Applications + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status - PG Status + Statut du groupe de placements + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + Jeu de règles Crush + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + La suppression de réserve est désactivée par le paramètre de configuration mon_allow_pool_delete. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key - Key + Clé + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + Contrôle des versions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + Suppression MFA + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + Type d'index + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + Règle de placement + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + Quota de compartiments + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + Activé + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + Taille maximale + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + Illimité + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + Nombre maximal d'objets + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + Verrouillage + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days - Days + Jours + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id - Id + ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + Les noms de compartiments ne peuvent contenir que des minuscules, des chiffres, des points et des traits d'union. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + Le nom sélectionné est déjà en cours d'utilisation. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + Les noms de compartiments ne doivent pas contenir de majuscules ni de caractères de soulignement. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + Chaque libellé doit commencer et se terminer par une minuscule ou un chiffre. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + Les noms de compartiments ne peuvent pas avoir le format d'une adresse IP. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + Les étiquettes des compartiments ne peuvent pas être vides et ne peuvent contenir que des minuscules, des chiffres et des traits d'union. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + Les noms de compartiments doivent être compris entre 3 et 63 caractères. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + Propriétaire + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- Sélectionner un utilisateur -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + Active le contrôle des versions pour les objets du compartiment. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + Authentification multi-critères + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + Suppression activée + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + Active la suppression MFA (authentification multi-critères), qui nécessite une authentification supplémentaire pour modifier l'état du contrôle des versions du compartiment. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + Numéro de série du jeton + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + Code PIN du jeton + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. + Active le verrouillage pour les objets du compartiment. Le verrouillage peut uniquement être activé lors de la création d'un compartiment. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + Nombre de jours que vous souhaitez spécifier pour la période de conservation par défaut à appliquer aux nouveaux objets placés dans ce compartiment. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + La valeur entrée doit être un entier positif. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + Le nombre de jours de conservation doit être un entier positif. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + Cible de placement + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- Sélectionner une cible de placement -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + compartiment + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + Compartiment Object Gateway '' mis à jour. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + Compartiment Object Gateway '' créé + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + Aucune limite + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + Propriétaire + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + Capacité utilisée + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + % limite de capacité + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + % limite d'objet + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + Compteurs de performance + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + Performance de synchronisation + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + Domaine + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group - Zone Group + Groupe de zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone Zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + Seul ce nombre de daemon sera créé. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + Groupe de zones + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + Réserve de données + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + Erreur + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- - -- Select a type -- + -- Sélectionner un type -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + Autorisation + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- - -- Select a permission -- + -- Sélectionner une autorisation -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + fonctionnalité + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + Clés + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show - Show + Afficher + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + Locataire + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + ID utilisateur + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + Nom complet + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + Adresse électronique + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + Suspendu + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + Nombre maximal de compartiments + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + Utilisateurs secondaires + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + Fonctionnalités + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + MFA (ID) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + Quota utilisateur + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + Nom d'utilisateur + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + Illimité + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + La valeur n'est pas valide. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + L'ID utilisateur spécifié est déjà utilisé. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + Afficher le locataire + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + L'ID utilisateur choisi existe dans ce locataire. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. - This is not a valid email address. + Ceci n'est pas une adresse électronique valide. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + L'adresse électronique spécifiée est déjà utilisée. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + Nombre max. de compartiments + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + Désactivé + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom - Custom + Personnalisé + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + La valeur entrée doit être >= 1. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + Clé S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key - Auto-generate key + Générer automatiquement la clé + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + Clé d'accès + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + Clé secrète + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + Il n'y a aucun utilisateur secondaire. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + Il n'y a pas de clé. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + Il n'y a aucune fonctionnalité. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + Toutes les fonctionnalités ont déjà été ajoutées. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + Taille illimitée + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + Taille max. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + Objets illimités + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + Nombre max. d'objets + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + La valeur saisie doit être >= 0. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + utilisateur + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + utilisateur secondaire + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + Clé S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + Utilisateur Object Gateway '' mis à jour. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + Utilisateur Object Gateway '' créé + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + Locataire + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + Nom complet + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + Adresse électronique + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + Suspendu + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + Nombre max. de compartiments + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users - users + utilisateurs + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- Sélectionner un nom d'utilisateur -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + Utilisateur secondaire + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + L'ID d'utilisateur secondaire sélectionné est déjà utilisé. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + lire, écrire + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + complet + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Clé Swift + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + Générer automatiquement le secret + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + Utilisateur secondaire + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + Clé Swift + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + Utilisateurs + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + Rôles + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + Ni le nom d'hôte ni l'ID OSD ne sont indiqués. + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + ID du périphérique + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + État de santé + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + Bon + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + Mauvais + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + Obsolète + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + Espérance de vie + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + Date de création de la prédiction + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + Nom du périphérique + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons Daemons + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + Échec de récupération des données SMART. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + Les données reçues sont au format JSON version 2.x et ne sont actuellement pas prises en charge par le tableau de bord. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + Aucune donnée SMART n'est disponible. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + résultat du test d'auto-évaluation de santé globale SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + inconnu(e) + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + réussite + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + échec + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + Informations sur le périphérique + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + Aucune information n'est disponible pour ce périphérique. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + Aucune donnée SMART n'est disponible pour ce périphérique. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + Les données SMART sont en cours de chargement. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctl a reçu un argument inconnu (code d'erreur ). Vous utilisez peut-être une version incompatible de smartmontools. La version &gt;= 7.0 de smartmontools est nécessaire pour pouvoir récupérer les données. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + Une erreur s'est produite avec le code d'erreur . + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + Brut + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + Seuil + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + En cas d'échec + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + Pire + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + Veuillez définir un nouveau mot de passe. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + Vous serez ensuite redirigé vers la page de connexion. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + L'ancien et le nouveau mot de passe doivent être différents. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. - Password confirmation doesn't match the new password. + Le mot de passe de confirmation ne correspond pas au nouveau mot de passe. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + Le nom d'utilisateur est obligatoire. + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + Le mot de passe est obligatoire. + + src/app/core/auth/login/login.component.html + 48 + Log in - Log in + Connexion + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + Périmètre + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + Créer + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + Mise à jour + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + Supprimer + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... Description... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + Autorisations + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + rôle + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + Rôle '' créé + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + Rôle '' mis à jour + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role - System Role + Rôle système + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + Rôle '' supprimé + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + Nouveau nom + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + Cloner le rôle + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + Rôle '' cloné à partir de '' + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + Le nom d'utilisateur existe déjà. + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + Confirmer le mot de passe + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + Le mot de passe de confirmation ne correspond pas au mot de passe. + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + Date d'expiration du mot de passe + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + Date d'expiration du mot de passe... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + Adresse électronique + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + L'adresse électronique n'est pas valide. + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + L'utilisateur doit changer le mot de passe à la prochaine connexion + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + Vous êtes sur le point de supprimer les autorisations "lecture/mise à jour utilisateur" de votre propre utilisateur. + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + Si vous continuez, vous ne serez plus en mesure d'ajouter ni de supprimer des rôles pour n'importe quel utilisateur. + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + Il n'existe aucun rôle. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Created user ' - ' - + Created user '' + Utilisateur '' créé + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + Mettre à jour l'utilisateur + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + Vous avez été automatiquement déconnecté, car vos rôles ont changé. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + Utilisateur '' mis à jour + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + Adresse électronique + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + Rôles + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + Utilisateur '' supprimé + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + Échec de la suppression de l'utilisateur '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + Vous êtes actuellement connecté en tant que ''. + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + Ancien mot de passe + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + Nouveau mot de passe + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + Confirmer le nouveau mot de passe + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + mot de passe + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + Mot de passe utilisateur mis à jour* + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + Passerelle Object Gateway sélectionnée : + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + Sélectionner une passerelle Object Gateway + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + Page introuvable + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + Désolés, nous n'avons pas pu trouver ce que vous cherchiez. La page que vous avez demandée a peut-être été modifiée ou déplacée. + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + Accéder au tableau de bord + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + Page introuvable + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + Désolés, nous n'avons pas pu trouver ce que vous cherchiez. + La page que vous avez demandée a peut-être été modifiée ou déplacée. + + src/app/core/error/error.ts + 11,12 + Access Denied - Access Denied + Accès refusé + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + Désolé, vous n'êtes pas autorisé à consulter cette page ou cette ressource. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + Utilisateur refusé + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. + Désolé, l'utilisateur n'existe pas dans Ceph. + Vous serez déconnecté du fournisseur d'identité lorsque vous réessaierez de vous connecter. + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + Aide + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + Sécurité + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + Marques commerciales + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + Paramètres du tableau de bord + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + Gestion des utilisateurs + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + Configuration de la télémétrie + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + Aide + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation documentation + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + À propos de + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + Utilisateur connecté + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + Changer le mot de passe + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + Activer/Désactiver la navigation + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + Carte CRUSH + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + Compartiments + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + Systèmes de fichiers + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + Journaux + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + Modules Manager + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + Tâches et notifications + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + Nom du nœud sous lequel les données doivent être placées. + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + Type de nœuds CRUSH entre lesquels les répliques doivent être séparées. + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + Chaque objet est divisé en parties de blocs de données, chacune étant stockée sur un OSD différent. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + Calculez des blocs de codage pour chaque objet et stockez-les sur différents OSD. + Le nombre de blocs de codage correspond également au nombre d'OSD qui peuvent être arrêtés sans perdre de données. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + Le plug-in jerasure est le plug-in le plus générique et le plus flexible, +  c'est aussi la valeur par défaut des réserves codées à effacement Ceph. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + La technique la plus flexible est reed_sol_van_van : il suffit de définir k + et m. La technique cauchy_good peut être plus rapide, mais vous devez choisir la taille du paquet + avec précaution. reed_sol_r6_op, liberation, blaum_roth et liber8tion sont des équivalents RAID6 + en ce sens qu'ils ne peuvent être configurés qu'avec m=2. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + L'encodage se fera sur des paquets de taille d'octets. + Choisir la bonne taille de paquet est difficile. + La documentation de jerasure contient de nombreuses informations à ce sujet. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,79 +17319,119 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + Avec le plug-in jerasure, lorsqu'un objet codé à effacement est stocké sur + plusieurs OSD, la récupération à la suite de la perte d'un OSD nécessite la lecture de tous les autres. + Par exemple, si jerasure est configuré avec k=8 et m=4, la perte d'un OSD nécessite de lire + les onze autres pour pouvoir effectuer une réparation. - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + Le plug-in de code d'effacement lrc crée des blocs de parité locale pour permettre la récupération avec + moins d'OSD. Par exemple, si lrc est configuré avec k=8, m=4 et l=4, + un bloc de parité supplémentaire est créé pour chaque groupe de quatre OSD. Lorsqu'un seul OSD est perdu, il peut être + récupéré avec seulement quatre OSD au lieu de onze. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, for k=4 and m=2, when locality=3 two groups of three are created. Each set can be recovered without reading chunks from another set. - Group the coding and data chunks into sets of size locality. For instance, - for k=4 and m=2, when locality=3 two groups of three are created. Each set can - be recovered without reading chunks from another set. + Regroupez les blocs de données et de codage en ensembles de localité de taille. Par exemple, + pour k=4 et m=2, lorsque locality=3, deux groupes de trois sont créés. Chaque ensemble peut + être récupéré sans lire les blocs d'un autre jeu. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + Type de compartiment Crush dans lequel chaque ensemble de blocs défini + par I sera stocké. Par exemple, s'il est réglé sur rack, chaque groupe de blocs I sera + placé dans un rack différent. Il est utilisé pour créer une étape de la règle CRUSH telle que l'étape de choix + d'un rack. S'il n'est pas défini, aucun regroupement de ce type n'est effectué. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + Le plug-in isa encapsule la bibliothèque ISA. Il ne fonctionne qu'avec des processeurs Intel. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + Le plug-in ISA se présente sous deux formes Reed Solomon. + Si reed_sol_van est défini, il équivaut à Vandermonde. Si cauchy est configuré, il équivaut à Cauchy. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + Le plug-in shec encapsule la bibliothèque SHEC multiple. + Il permet à Ceph de récupérer les données plus efficacement qu'avec les codes Reed Solomon. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + Nombre de blocs de parité, chacun incluant chaque bloc de données dans sa + plage de calcul. Ce nombre est utilisé comme estimateur de durabilité. Par exemple, si c=2, + 2 OSD peuvent être arrêtés sans perte de données. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + Les codes CLAY (abréviation de "coupled-layer", à savoir couche couplée ) sont des codes d'effacement conçus pour + réaliser des économies significatives de bande passante réseau et d'entrées/sorties disque en cas de + réparation d'un nœud/OSD/rack défectueux. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + Nombre d'OSD demandés pour envoyer des données lors de la récupération d'un bloc unique. + d doit être choisi de sorte que k+1 <= d <= k+m-1. Plus d est élevé, + plus les économies sont importantes. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + scalar_mds spécifie le plug-in utilisé comme bloc pour la construction + en couches. Il peut s'agir de jerasure, isa, shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8913,1738 +17439,2845 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + technique spécifie la technique qui sera sélectionnée + dans le plug-in 'scalar_mds' indiqué. Les techniques prises + en charge sont 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', + 'cauchy_good' et 'liber8tion' pour jerasure, 'reed_sol_van' et + 'cauchy' pour isa, et 'single' et 'multiple' pour shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + Nom du compartiment crush utilisé pour la première étape de la règle CRUSH. + Par exemple, l'étape de définition des valeurs par défaut. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + Vérifiez qu'il n'existe pas deux blocs dans un compartiment avec le même domaine de + défaillance. Par exemple, si le domaine de défaillance est un hôte, deux blocs ne seront pas stockés sur le même + hôte. Cette option est utilisée pour créer une étape de la règle CRUSH telle que chooseleaf host. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. - Set the directory name from which the erasure code plugin is loaded. + Définissez le nom du répertoire à partir duquel le plug-in de code d'effacement est chargé. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + Autoriser toutes les opérations + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + Autorise uniquement les opérations qui ne modifient pas le serveur + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + N'autorise aucun accès + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. - Please specify a filesystem volume. + Veuillez spécifier un volume de système de fichiers. + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + La fonction est désactivée car l'orchestrateur n'est pas disponible. + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + Le backend de l'orchestrateur ne prend pas en charge cette fonctionnalité. + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- Sélectionner la priorité -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + Faible + + src/app/shared/api/osd.service.ts + 44 + High - High + Élevée + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + Les données de liste d'utilisateurs sont peut-être obsolètes. Si nécessaire, vous pouvez les recharger manuellement. + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + Récupération des données pour . + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + Récupération des données + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... - Please wait... + Veuillez patienter... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + Affichage des données précédemment mises en cache pour . + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + Affichage des données précédemment mises en cache. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + Impossible de charger les données pour . + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + Impossible de charger les données. + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + Veuillez vérifier l'état de santé de la grappe. + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + Erreur + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + Informations + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + Réussite + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger Danger + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + Supprimez la valeur de configuration personnalisée. La configuration par défaut sera héritée et utilisée à la place. + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + La valeur saisie est trop élevée ! Elle ne doit pas être supérieure à . + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + La valeur saisie est trop basse ! Elle ne doit pas être inférieure à . + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + Copier dans le presse-papiers + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + Voulez-vous vraiment ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + Voulez-vous vraiment les éléments sélectionnés ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + Voulez-vous vraiment le/la/les sélectionné(e)(s) ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. - Yes, I am sure. + Oui. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation documentation + + src/app/shared/components/doc/doc.component.ts + 12 + Download - Download + Télécharger + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + Ce champ est obligatoire. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + Une erreur s'est produite. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + Chargement des données du panneau... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + Veuillez consulter pour apprendre comment configurer et activer la fonctionnalité de surveillance. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + Le tableau de bord Grafana n'existe pas. Veuillez consulter pour apprendre comment ajouter des tableaux de bord à Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Sélecteur d'heure Grafana + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + Réinitialiser les paramètres + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + La dernière heure (par défaut) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday - Yesterday + Hier + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + Depuis le début de la journée + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + Avant-hier + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + Les 2 derniers jours + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + Il y a huit jours + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week - Previous week + La semaine dernière + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + Depuis le début de la semaine + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + Les 7 derniers jours + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + Le mois dernier + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + Depuis le début du mois + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + Les 30 derniers jours + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + Les 90 derniers jours + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + Les 6 derniers mois + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + L'année écoulée + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + L'année dernière + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + Depuis le début de l'année + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + Les 2 dernières années + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + Les 5 dernières années + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + Sélectionner une langue + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + Effacer les notifications + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + Supprimer la notification + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + Durée : + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + Il n'y a aucune notification. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + La fonctionnalité n'est pas prise en charge dans l'orchestrateur actuel. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + L'orchestrateur n'est pas disponible. Veuillez consulter pour découvrir comment configurer et activer cette fonctionnalité. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + Votre mot de passe expirera dans moins de 1jour. Cliquez ici pour le modifier maintenant. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + Votre mot de passe expirera dans jour(s). Cliquez ici pour le modifier maintenant. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + Rafraîchir + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + Aucun élément sélectionné. + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + Désélectionnez l'élément pour le sélectionner à nouveau. + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + Limite de sélection atteinte + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + Balises de filtre + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + Ajouter un badge + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + Aucun élément disponible. + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + La communauté Ceph a besoin de votre aide pour continuer à s'améliorer : veuillez Activer le module Télémétrie. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + Rappel d'activation de la télémétrie rendu muet + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + Vous pouvez activer le module à tout moment sur la page de configuration de la télémétrie (<b>Paramètres du tableau de bord</b> -> <b>Configuration de la télémétrie</b>). + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export Export + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + Importer + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + Ajouter + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + Définir + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + Soumettre + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + Supprimer + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + Annuler la définition + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + Annuler + + src/app/shared/constants/app.constants.ts + 176 + Preview - Preview + Aperçu + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + Déplacer + + src/app/shared/constants/app.constants.ts + 178 + Next - Next + Suivant + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + Retour + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + Cloner + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + Copier + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + Nettoyage en profondeur + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + Détruire + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + Évincer + + src/app/shared/constants/app.constants.ts + 189 + Flatten - Flatten + Aplatir + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + Marquer comme arrêté + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + Marquer comme rentré + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + Marquer comme perdu + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + Marquer comme sorti + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + Protéger + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + Renommer + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + Restaurer + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + Réévaluer + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + Nettoyer + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + Afficher + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + Déplacer vers la corbeille + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + Annuler la protection + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + Modifier + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + Accéder à la maintenance + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + Quitter la maintenance + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + Commencer le vidage + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain - Stop Drain + Arrêter le vidage + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + Recréer + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + Expirer + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + Désactiver + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + Supprimé + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + Ajouté + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + Supprimé + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + Modifié + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + Annulé + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + Prévisualisation + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + Déplacé + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + Cloné + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + Copié + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + Nettoyé en profondeur + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + Détruit + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + Applati + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + Marqué comme arrêté + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + Marqué comme rentré + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + Marqué comme perdu + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + Marqué comme sorti + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + Protégé + + src/app/shared/constants/app.constants.ts + 313 + Purged - Purged + Purgé + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + Renommé + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + Restauré + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + Réévalué + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + Rétabli à l'état initial + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + Nettoyé + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + Affiché + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + Déplacé vers la corbeille + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + Non protégé + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + Recréé + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + Expiré + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + Fermer + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + Effacer les filtres + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + sélectionné(e)(s) + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + trouvé(e)(s) + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total total - X total + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row - Expand/Collapse Row + Agrandir/réduire la ligne + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + Échec du chargement des données. + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + Chargement des données du formulaire... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + Les données du formulaire n'ont pas pu être chargées... + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + La taille doit être d'au minimum de ou plus + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + La taille doit être d'au maximum de ou moins + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + Oui + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + Non + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + dans %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + Il y a %s + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + quelques secondes + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d secondes + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + une minute + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes %d minutes + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + une heure + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d heures + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + un jour + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d jours + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + une semaine + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d semaines + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + un mois + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months - %d months + %d mois + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year - a year + une année + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d années + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + Règles requises pour les mots de passe : + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Must contain at least - characters - + Must contain at least characters + Doit contenir au moins caractères + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + Doit être différent du précédent + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + Ne peut pas contenir le nom d'utilisateur + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + Ne peut contenir aucun mot clé configuré + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + Ne peut contenir aucun caractère répétitif (par ex. "aaa") + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + Ne peut pas contenir des caractères consécutifs (par ex. "abc") + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + Doit être composé de caractères des groupes suivants : +* alphabétiques a-z, A-Z +* chiffres de 0 à 9 +* caractères spéciaux : !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ +* tout autre caractère (signes) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + Votre comparateur semble ne correspondre à aucune règle actuellement définie ni alerte active. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts - no active alerts + aucune alerte active + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1 alerte active + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + alertes actives + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + Correspond à 1 règle + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + Correspond aux règles + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + avec. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + Qualité de service + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + Limite de bits/s + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + Limite souhaitée d'octets E/S par seconde. + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + Limite E/S par seconde + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + Limite souhaitée d'opérations E/S par seconde. + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + Limite de bits/s en lecture + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + Limite souhaitée de lecture d'octets par seconde. + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + Limite E/S par seconde en lecture + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + Limite souhaitée d'opérations de lecture par seconde. + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + Limite de bits/s en écriture + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + Limite souhaitée d'écriture d'octets par seconde. + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + Limite E/S par seconde en écriture + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + Limite souhaitée d'opérations d'écriture par seconde. + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + Rafale de bits/s + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + Limite de rafale d'octets en E/S souhaitée. + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + Rafale E/S par seconde + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + Limite de rafale d'opérations E/S souhaitée. + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + Rafale E/S par seconde en lecture + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + Limite de rafale d'octets lus par seconde. + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + Rafale E/S par seconde en lecture + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + Limite de rafale d'opérations de lecture. + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + Rafale E/S par seconde en écriture + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + Limite de rafale d'octets écrits souhaitée. + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + Rafale d'E/S par seconde en écriture + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + Limite de rafale d'opérations d'écriture souhaitée. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + Échec de + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + En cours d'exécution + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + exécuter + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + Exécuté + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + tâche inconnue + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + En cours de création + + src/app/shared/services/task-message.service.ts + 67 + create - create + créer + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + En cours de mise à jour + + src/app/shared/services/task-message.service.ts + 68 + update - update + mettre à jour + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + En cours de suppression + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding - Adding + En cours d'ajout + + src/app/shared/services/task-message.service.ts + 70 + add - add + ajouter + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + En cours de suppression + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + supprimer + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + En cours d'importation + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + importer + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + Importé + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + Intantané RBD '@' + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + nom du site de mise en miroir + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + Jeton Bootstrap + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + mode de mise en miroir de la réserve '' + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + mettre en miroir l'homologue de la réserve '' + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + tous les tableaux de bord + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + En cours d'identification + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + identifier + + src/app/shared/services/task-message.service.ts + 133 + Identified - Identified + Identifié + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + périphérique '' sur l'hôte '' + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + OSD (DriveGroups : ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + Ce nom est déjà utilisé par . + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + est occupé. + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + contient des instantanés. + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + Clonage en cours + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + cloner + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + L'instantané de doit être protégé. + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + En cours de copie + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + copie + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + Aplatissement + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + aplatir + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + Impossible d'annuler la protection de , car elle contient des images enfant. + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + Impossible de supprimer , car il/elle est protégé(e). + + src/app/shared/services/task-message.service.ts + 243 + Rolling back - Rolling back + Retour à l'état initial + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + rétablir l'état initial + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + En cours de déplacement + + src/app/shared/services/task-message.service.ts + 256 + move - move + déplacer + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + image '' déplacée dans la corbeille + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. - Could not find image. + Impossible de trouver l'image. + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + En cours de restauration. + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + restaurer + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + image '' dans '' + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + Image name '' is already in use. + Le nom d'image '' est déjà utilisé. + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + image '' + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + En cours de purge + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + purger + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + toutes les réserves + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + images provenant de + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + Impossible de désactiver la mise en miroir, car l'élément contient un homologue. + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - host ' - ' - + host '' + hôte '' + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + réserve '' + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + profil du code d'effacement '' + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + règle crush '' + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + cible '' + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + NFS ' :' + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.id-ID.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.id-ID.xlf index f0e8be7b841..fd4398d7498 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.id-ID.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.id-ID.xlf @@ -1,8827 +1,16699 @@ - - + + Close - Close + Tutup + + node_modules/src/ngb-config.ts + 13 + HH - HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + Tutup + + node_modules/src/ngb-config.ts + 13 + «« - «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + Bulan lalu + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours - Hours + + node_modules/src/ngb-config.ts + 13 + « - « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + + node_modules/src/ngb-config.ts + 13 + MM - MM + + node_modules/src/ngb-config.ts + 13 + » - » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + + node_modules/src/ngb-config.ts + 13 + »» - »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + + node_modules/src/ngb-config.ts + 13 + First - First + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + + node_modules/src/ngb-config.ts + 13 + Next - Next + + node_modules/src/ngb-config.ts + 13 + Increment minutes - Increment minutes + + node_modules/src/ngb-config.ts + 13 + Last - Last + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + + node_modules/src/ngb-config.ts + 13 + SS - SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + Ikhtisar + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets - Targets + Target + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology - iSCSI Topology + Topologi iSCSI + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + Nama + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + Terkini + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + Bawaan + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication - Discovery Authentication + Otentikasi Discovery + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + Pengguna + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + Isian ini tidak boleh kosong. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + Kata sandi + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + Pengguna Bersama + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + Kata sandi bersama + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + Otentikasi penemuan telah diperbarui + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN Target IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + Pola IQN salah. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + Suatu IQN memiliki notasi seperti ini 'iqn.$tahun-$bulan.$reversedAddress:$definedName' + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Contoh: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + Informasi lainnya + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + Pengaturan lanjutan target ini telah dimodifikasi. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + Portal + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + Tambahkan portal + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images - Images + Image + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + Pengaturan Image ini telah dimodifikasi. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + Tambahkan image + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + Otentikasi ACL + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + Inisiator + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + Inisiator + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + Klien IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + Inisiator IQN harus unik. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + Inisiator termasuk ke dalam grup. Image akan dikonfigurasi di dalam grup. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + Tidak ada yang ditambahkan. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + Tambahkan inisiator + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + Grup + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + Grup + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + Nama + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + Tambahkan grup + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. - There are no portals available. + Tidak ada portal yang tersedia. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + Tidak ada image yang tersedia. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. - There are no images available. Please make sure you add an image to the target. + Tidak ada image yang tersedia. Mohon pastikan Anda telah menambahkan image ke target. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. - There are no initiators available. Please make sure you add an initiator to the target. + Tidak ada inisiator tersedia. Mohon pastikan Anda telah menambahkan inisiator ke target. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + Mengganti parameter ini dari nilai bawaan biasanya tidak diperlukan. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun - lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn - wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + Pengaturan + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore Backstore + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + Pengaturan Lanjut + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + iSCSI Target tidak tersedia + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + Informasi tersedia: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target Target + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + Portal + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + Image + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions - # Sessions + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + Keadaan + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool Pool + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image Image + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore Backstore + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + Baca Bytes + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + Tulis Bytes + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + Ops Baca + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + Ops Tulis + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + A/O Sejak + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token - Create Bootstrap Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + Nama... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + Pool + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + Tutup + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance Instance + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname - Hostname + Nama hos + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version - Version + Versi + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + Kesehatan + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + Isu + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + Kemajuan + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description - Description + Deskripsi + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons - Daemons + Daemon + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + Edit mode pencerminan pool + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode Mode + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + Klaster mitra harus dihapus sebelum menonaktfikan pencerminan. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + Dimatikan + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + Nama Klaster + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + Nama klaster tidak valid. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID CephX ID + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... CephX ID... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + CephX ID tidak valid. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + Alamat Monitor + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + Alamat dengan pemisah-koma... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + Alamat monitor tidak valid. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key CephX Key + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... Base64-encoded key... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. - CephX key must be base64 encoded. + Kunci CephX harus base64 encoded. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + # Lokal + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + # Jauh + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + Mode Edit + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer - Add Peer + Tambahkan Mitra + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer - Edit Peer + Edit Mitra + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + Hapus Mitra + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode Mode + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader - Leader + Pemimpin + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + # Lokal + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + # Jauh + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + mitra pencerminan + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + Inisiator + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + Memuat... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host - Host + Hos + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport Transport + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool Pool + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- - -- Select a pool -- + -- Pilih pool -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + '/' dan '@' tidak diperbolehkan. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS - IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + Detail + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. - The value must be at least 1. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration - RBD Configuration + Konfigurasi RBD + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. - Remove the local configuration value. The parent configuration value will be inherited and used instead. + Menghapus nilai konfigurasi lokal. Nilai konfigurasi induk akan diturun dan digunakan. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global Global + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image Image + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + Kunci + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + Sumber + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + Nilai + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + Pool Data + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + Dibuat + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + Ukuran + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + Objek + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + Ukuran objek + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + Fitur + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + Disiapkan + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A N/A + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned - Total provisioned + Total disiapkan + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + Unit setrip + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + Jumlah setrip + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + Induk + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + Awalan nama blok + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + Urutan + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + Snapshot + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + Konfigurasi + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + Kinerja + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + Pengaturan ini akan membatalkan nilai global + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + Ini adalah nilai global. Tidak ada nilai yang diset untuk image ini. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- Tidak ada pool data tersedia -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + Anda harus menaikkan ukuran. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping - Striping + Setrip + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- Pilih ukuran setrip -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + Isian ini harus diisi karena jumlah setrip telah ditentukan! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + Unit setrip lebih besar dari ukuran objek. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + Isian wajib diisi karena unit setrip didefinisikan! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + Jumlah setrip harus lebih besar dari 0. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD - RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + Perataan mendalam + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + Lapisan + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + Kunci eksklusif + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + Peta objek (butuh kunci-eksklusif) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + Ukuran + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + Penggunaan + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + Objek + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + Ukuran objek + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + Induk + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + Pencerminan + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + Peringatan + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- Tidak ada pool rbd tersedia -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. - Namespace already exists. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + Anda akan mengembalikan semula + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + Terpakai + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + DIPROTEKSI + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + TIDAK DIPROTEKSI + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + Dibuat + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + Kembalikan snapshot RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + Kembalikan + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + Snapshot RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + Tempat sampah + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + Performa Keseluruhan + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + Kosongkan Tempah Sampah + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + Kedaluwarsa pada + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + Diproteksi hingga + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status Status + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At - Deleted At + Dihapus pada + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + Pindahkan image ke tempat sampah + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + Proteksi berakhir pada + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + TIDAK DIPROTEKSI + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Format tanggal salah. Mohon gunakan "TTTT-BB-HH JJ:mm:dd". + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + Proteksi telah kedaluarsa. Mohon pilih tanggal masa mendatang atau kosongkan. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: Pool: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + Nama Pool... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + Semua + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + Pulihkan Image + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + Nama Baru + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + Isian ini harus diisi! + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id id + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + tipe + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + keadaan + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + versi + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + induk + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + Peringkat + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + Daemon siaga + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + Peringkat + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon Daemon + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + Aktivitas + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries Dentries + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + Inode + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + Tipe + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path Path + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + Simpan + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + Diperbarui + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - in order to inherit - - + in order to inherit + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + Hos + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label - Label + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled - Enabled + Diaktifkan + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + Menghubungkan kembali, mohon tunggu... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + Bawaan + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + cth. 10GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + Semua + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + Baca + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute - Execute + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + Pool Data + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + Klien + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + Detail Performa + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + Deskripsi + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + Deskripsi lengkap + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values - Current values + Nilai saat ini + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + Daemon bawaan + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + Tipe + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min Min + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + Maks + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + Flag + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + Layanan + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source - Source + Sumber + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level Level + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + Boleh diperbarui saat dijalankan (bisa diedit) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + Tag + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + Nilai Enum + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + Lihat juga + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + Nilai dapat diperbarui saat runtime. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + Daemon/klien tidak dapat mengambil nilai dari +basis data konfigurasi monitor. Kami tidak mengizinkan mengubah ini dari 'ceph config +set ...'. Pilihan ini harus dikonfigurasi melalui ceph.conf atau CLI. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + Pilihan hanya dapat bekerja selama daemon dimulai. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + Pilihan hanya berpengaruh pada pembuatan klaster. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + Pilihan hanya berpengaruh pada pembuatan daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + Nilai + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true - true + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false - false + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - Updated config option - - + Updated config option + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level Level + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service - Service - - - Modified - Modified + Layanan + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + Nilai saat ini + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + Dapat diedit + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs - CPUs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + Anda yakin ingin melanjutkan? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + Lanjutkan + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + Penampil peta CRUSH + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + Nama hos + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label - Add label + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host - host + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + Daftar Hos + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash - Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity - Raw Capacity + Kapasitas mentah + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash - Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - " - " has exited maintenance - + "" has exited maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + OSD + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + Log Klaster + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + Log Audit + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + Prioritas: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + Tanggal: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module - Edit Manager module + Edit modul Ceph Manajer + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + Nilai yang dimasukkan bukan UUID yang valid, cth: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + Nilai yang dimasukkan harus alamat IP yang valid. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - The entered value is too high! It must be lower or equal to - . - + The entered value is too high! It must be lower or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. - The entered value needs to be a number. + Nilai yang dimasukkan harus berupa angka. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + Nilai yang dimasukkan harus berupa angka atau desimal. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit Edit + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + Aktifkan + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + Nonaktifkan + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status Status + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + ID Klaster + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + monmap diubah + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch monmap epoch + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con - quorum con + kuorum con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon - quorum mon + kuorum mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con - required con + con yang dibutuhkan + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + mon yang dibutuhkan + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + Memenuhi Kuorum + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + Tidak dalam Kuorum + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + Alamat Publik + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + Buka Sesi + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups - DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + Atribut (peta OSD) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata Metadata + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + Metadata tidak tersedia + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + Penghitung kinerja + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + Tambah + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters - Add devices by using filters + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + Tidak Nyala + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + OSD tidak diizinkan menyala + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + Tidak Mati + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + Laporan kegagalan OSD sedang diabaikan sehingga monitor tidak akan menandai OSD mati + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + Tidak boleh Masuk + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + OSD yang telah ditandai keluar tidak akan ditandai masuk saat mereka menyala + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + Tidak boleh Keluar + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + OSD tidak akan otomatis ditandai keluar setelah interval dikonfigurasi + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + Flag OSD diperbarui + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + Flag OSD Klaster + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + Jeda + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes - Pauses reads and writes + Jeda baca dan tulis + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + Nonaktifkan Scrub + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + Scrubbing dinonaktifkan + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + Nonaktifkan Deep Scrub + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + Deep Scrubing dinonaktifkan + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + Tidak ada Penambalan + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended - Backfilling of PGs is suspended + Penambalan PG dihentikan + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + Tidak ada Pemulihan + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + Pemulihan PG dihentikan + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + Urutan Bitwise + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort - Use bitwise sort + Gunakan urutan bitwise + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + Buang Snapdirs + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + OSD memiliki snapset yang dikonversi + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + Pulihkan yang telah dihapus + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + Penghapusan dilakukan saat pemulihan bukan saat bermitra + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + Batas Maks Log PG + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + Taruh batas maks pada panjang log pg + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices - Shared devices + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption - Encryption + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + Daftar OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + keluar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + masuk + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + gugur + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + Tandai + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + OSD hilang + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + ditandai hilang + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + Buang + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + dibuang + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + hancurkan + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + dihancurkan + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + Flag + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + PG + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + Bita baca + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + Bita tulis + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops - Read ops + Ops baca + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + Ops tulis + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + hapus + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + Tingkat lanjut... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + Prioritas pemulihan OSD + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + Prioritas + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + Ubah nilai prioritas + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + Maks Penambalan + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active - Recovery Max Active + Maks Pemulihan Aktif + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + Maks Menjalankan Pemulihan Tunggal + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + Jeda Pemulihan + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + Ubahsuai + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + Nilai harus antara 0 dan 1. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSDs - Scrub - + OSDs Scrub + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} - {VAR_SELECT, select, true {Deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + Keparahan + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + Dimulai + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + Peringatan + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + Grup + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit Edit + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + Hapus + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + Nilai + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- - -- No service available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + Versi + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - Must be of the format hostname:port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- - -- Select auth protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + Nama pengguna + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL - SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. - Invalid SSL certificate. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: - Includes basic information about the cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: - Includes information about daemon crashes: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name - Organization name + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. - The entered value is too low! It must be greater or equal to 8. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy - Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + Kembali + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + Jeda + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + Status Klaster + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + 5 menit terakhir + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + 15 menit terakhir + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + 30 menit terakhir + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours - Last 3 hours + 3 jam terakhir + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + 6 jam terakhir + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + 12 jam terakhir + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + 24 jam terakhir + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster - Cluster + Klaster + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning - Warning + Peringatan + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + Monitor + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + OSD + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + Gerbang Objek + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + Server Metadata + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + Gateway iSCSI + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + Kapasitas + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity - Raw Capacity + Kapasitas mentah + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status - PG Status + Status PG + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + PG per OSD + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + Baca/Tulis Klien + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + Throughput Pengguna + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + Throughput Pemulihan + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + Baca + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s - /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + Tulis + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + Tersedia + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean - Clean + Bersih + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + Bekerja + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + Tidak diketahui + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + nyala + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + tidak ada filesistem + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + aktif + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + siaga + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + daemon aktif + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay - standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a n/a + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total total + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + penuh + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + Alamat + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + Tipe Akses + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster - Cluster + Klaster + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + Protokol NFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + Backend Penyimpanan + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User - CephFS User + Pengguna CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + Filesistem CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + Label Keamanan + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway - Object Gateway + Gerbang Objek + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + Pengguna Gerbang Objek + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + Semua klien dapat mengakses + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + Alamat + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + Harus mengandung satu atau lebih nilai yang dipisahkan koma + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + Contoh: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + Tipe Akses + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + Tambah klien + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (diturunkan dari konfig global) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- - -- Select the access type -- + -- Pilih tipe akses -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + diturunkan dari konfig global + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- Pilih jenis squashing id pengguna yang akan dilakukan -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- Klaster tidak tersedia -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- Pilih klaster -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume - Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + Label Keamanan + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + Aktifkan label keamanan + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path CephFS Path + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + Lintasan atau path harus dimulai dengan '/' dan diikuti dengan kata + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + Protokol NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. - By using different Pseudo options, the same Path may be exported multiple times. + Dengan menggunakan opsi Pseudo yang berbeda, Path yang sama akan diekspor beberapa kali. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- Tipe akses tidak tersedia -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- Squash tidak tersedia -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + Protokol Transport + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway - Object Gateway + Gerbang Objek + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + Penghitung kinerja tidak tersedia + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + Nama hanya boleh terdiri dari alfanumerik, tanda hubung, dan garis bawah. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + Nama profil erasure code sudah digunakan. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule - Crush Rule + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin Plugin + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + Pecahan data (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + Harus sama dengan atau lebih dari 2. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + Pecahan Coding (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + Harus sama dengan atau lebih dari 1. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + Penduga daya tahan (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) - Helper chunks (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D has to be greater than k ( - ). - + D has to be greater than k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + Lokalitas (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + Domain kegagalan Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + Lokalitas Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + Tidak ada + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + Teknik + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + Ukuran paket + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root Crush root + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + Kelas perangkat Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + Direktori + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + Detil Cache Bertingkat + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode - Cache Mode + Mode Cache + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + Min Waktu Usir + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + Min Waktu Buang + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + Target Maks Bita + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + Target Maks Objek + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + Tidak ada aplikasi ditambahkan + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + Batas aplikasi tercapai + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + Sebuah pool hanya dapat memiliki empat definisi aplikasi. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + Karakter diperbolehkan '_a-zA-Z0-9' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters - Maximum length is 128 characters + Panjang maksimum 128 karakter + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + Tambah aplikasi + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + Nama pool Ceph yang dipilih sudah digunakan. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + Jenis pool + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- Pilih jenis pool -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + Grup penempatan + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + Dibutuhkan setidaknya satu grup penempatan! + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. - Your cluster can't handle this many PGs. Please recalculate the PG amount needed. + Klaster Anda tidak dapat menangani PG sebanyak ini. Mohon hitung ulang jumlah PG yang dibutuhkan. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help - Calculation help + Bantuan penghitungan + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + Jumlah replikasi + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites EC Overwrites + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + Aplikasi + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + Pencerminan + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH - CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + Profil erasure code + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- Tidak ada profil erasure code -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- Pilih profil erasure code -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset - Crush ruleset + Aturan CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- Pilih aturan crush -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + Aturan crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps Crush steps + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + Kompresi + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + Algoritma + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- Tidak ada algoritma pengompresian erasure -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + Ukuran blob minimum + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + cth. 128KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + Nilai harus lebih besar dari 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + Ukuran maksimum blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + cth. 512KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + Nilai harus lebih besar dari ukuran minimum blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + Rasio + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + Rasio kompresi + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + Nilai harus antara 0.0 dan 1.0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + profil erasure code + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + Daftar pool + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + Aplikasi + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status - PG Status + Status PG + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + Aturan Crush + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key - Key + Kunci + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + Jenis indeks + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + Aturan penempatan + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + Kuota Buket + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + Diaktifkan + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + Ukuran maksimum + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + Tak terbatas + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + Objek maksimum + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days - Days + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + Nama yang dipilih sudah digunakan. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + Pemilik + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- Pilih pengguna -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + buket + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + Pemilik + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + Penghitung Performa + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group - Zone Group + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + Zona grup + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + Pool data + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- - -- Select a type -- + -- Pilih tipe -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + Izin + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- - -- Select a permission -- + -- Pilih izin -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + Kunci + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show - Show + Tampilkan + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + Nama lengkap + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + Alamat email + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + Dihentikan + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + Buket maksimum + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + Subpengguna + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + Kemampuan + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + Kuota pengguna + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + Nama pengguna + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + Tak terbatas + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + Nilai tidak valid. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + ID pengguna yang dipilih sudah digunakan. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. - This is not a valid email address. + Ini bukan alamat email yang valid. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + Alamat email yang dipilih sudah digunakan. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + Maks. buket + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + Dimatikan + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom - Custom + Ubahsuai + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + Kunci S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key - Auto-generate key + Kunci otomatis-dibuat + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + Kunci akses + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + Kunci rahasia + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + Tidak ada sub-pengguna. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + Kunci tidak ditemukan. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + Kemampuan tidak ada. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + Ukuran tak terbatas + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + Ukuran maks. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + Objek tak terbatas + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + Objek maks. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + Nilai yang dimasukkan harus >= 0. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + pengguna + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + Nama lengkap + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + Alamat email + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + Dihentikan + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + Maks. buket + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users - users + pengguna + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- Pilih nama pengguna -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + Subpengguna + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + ID subpengguna sudah digunakan. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + baca, tulis + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + penuh + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Kunci Swift + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + Sandi otomatis-dibuat + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + Subpengguna + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + Pengguna + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + Peran + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons - Daemons + Daemon + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART - SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. - Password confirmation doesn't match the new password. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + Nama pengguna harus diisi + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + Kata sandi harus diisi + + src/app/core/auth/login/login.component.html + 48 + Log in - Log in + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + Cakupan + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + Buat + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + Perbarui + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + Hapus + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + Deskripsi... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + Izin + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role - System Role + Peran Sistem + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + Konfirmasi kata sandi + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + Konfirmasi kata sandi tidak sesuai dengan kata sandi. + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email Email + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + Email tidak valid. + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + Anda akan menghapus izin "pengguna baca / perbarui" dari diri Anda sendiri. + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + Jika melanjutkan, Anda tidak akan lagi dapat menambahkan atau menghapus peran dari pengguna manapun. + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Created user ' - ' - + Created user '' + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + Perbarui pengguna + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + Anda dikeluarkan otomatis karena peran Anda telah berubah. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email Email + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + Peran + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + + src/app/core/error/error.ts + 11,12 + Access Denied - Access Denied + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + Bantuan + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + Pengaturan Dasbor + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + Manajemen Pengguna + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + Bantuan + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + Tentang + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + Pengguna masuk + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + Pengalih navigasi + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + peta CRUSH + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + Buket + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + Log + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + Tiap objek dipecah dalam pecahan-data, masing-masing disimpan pada OSD yang berbeda. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + Hitung pecahan coding untuk tiap objek dan simpan pada OSD yang berbeda. +Jumlah pecahan data juga menjadi jumlah OSD yang diperbolehkan mati tanpa kehilangan data. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + Plugin jerasure merupakan plugin paling umum dan fleksibel, +serta merupakan plugin bawaan Ceph untuk pool erasure code. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + Teknik yang lebih fleksibel yaitu reed_sol_van : cukup mengeset k +dan m. Teknik cauchy_good bisa lebih cepat, namun Anda harus memilih ukuran paket +dengan seksama. Semua reed_sol_r6_op, liberation, blaum_roth, liber8tion setara dengan RAID6 +dalam hal mereka hanya bisa diatur dengan m=2. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,79 +16705,109 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + Pada plugin jerasure, saat objek dengan erasure code disimpan pada +banyak OSD, pemulihan dari OSD yang hilang membutuhkan akses dari OSD lainnya. +Contoh, saat jerasure dikonfigurasi dengan k=8 dan m=4, saat satu OSD mati, maka pemulihan akan membutuhkan pembacaan dari tujuh OSD lainnya. - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. +Plugin lrc erasure code membuat pecahan paritas lokal agar dapat memulihkan +dengan OSD yang lebih sedikit. Contoh, jika lrc dikonfigurasi dengan k=8, m=4, dan l=4, maka lrc akan +membuat pecahan paritas tambahan tiap empat OSD. Saat satu OSD mati, maka pemulihan dapat dilakukan hanya dengan 4 OSD, alih-alih 7 OSD. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, for k=4 and m=2, when locality=3 two groups of three are created. Each set can be recovered without reading chunks from another set. - Group the coding and data chunks into sets of size locality. For instance, - for k=4 and m=2, when locality=3 two groups of three are created. Each set can - be recovered without reading chunks from another set. + Kelompokkan pecahan data dan coding ke dalam ukuran lokalitas. Controh +untuk k=4 dan m=2, saat lokalitas=3 dua grup dari tiga akan dibuat. Setiap set akan +dipulihkan tanpa membaca pecahan dari set lainnya. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + Tipe buket crush setiap set pecahan yang didefinisikan oleh l +akan disimpan. Contoh, jika diset pada rak, tiap grup pecahan l akan +ditempatkan pada rak berbeda. Ini akan digunakan pada aturan step CRUSH yaitu +memilih tiap rak. Jika tidak diset, tidak akan ada pengelompokkan. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + Plugin isa menghimpun perpustakaan ISA. Hanya dapat berjalan pada prosesor Intel. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + Plugin ISA memiliki dua jenis Reed Solomon. +Jika reed_sol_van diset, maka menjadi Vandermonde, jika cauchy diset, maka menjadi Cauchy. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + Plugin shec mengenkapsulasi banyak pustaka SHEC. +Hal ini agar ceph dapat dipulihkan dengan lebih efisien dari kode Reed Solomon. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + Jumlah potongan paritas yang masing-masing mencakup setiap potongan data +dalam rentang perhitungannya. Nilai ini digunakan untuk perkiraan daya tahan. Contoh, jika c=2, +2 OSD dapat mati tanpa kehilangan data. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8913,1738 +16815,2689 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + Nama buket crush digunakan sebagai langkah pertama dari aturan CRUSH. +Contoh diambil langkah bawaan. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + Memastikan tidak ada pecahan data berada pada buket dengan domain kegagalan +yang sama. Contoh, saat domain gagal adalah hos, maka tidak ada pecahan data yang akan disimpan +pada hos yang sama. Aturan CRUSH seperti step chooseleaf hos akan digunakan untuk hal tersebut. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. - Set the directory name from which the erasure code plugin is loaded. + Set nama direktori empat plugin erasure code akan dimuat. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + Izinkan semua operasi + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + Izinkan hanya untuk operasi yang tidak mengubah server + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + Tidak diizinkan untuk semua hal + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. - Please specify a filesystem volume. + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- Pilih prioritas -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + Rendah + + src/app/shared/api/osd.service.ts + 44 + High - High + Tinggi + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... - Please wait... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + Informasi + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + Hapus nilai kustom konfigurasi. Konfigurasi bawaan akan digunakan + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. - Yes, I am sure. + Ya, saya yakin. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation - documentation + + src/app/shared/components/doc/doc.component.ts + 12 + Download - Download + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + Isian ini tidak boleh kosong. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + Memuat data panel... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Pemilih Waktu Grafana + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + Reset Pengaturan + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + 1 Jam Terakhir (Bawaan) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday - Yesterday + Kemarin + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + Sejauh hari ini + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + Kemarin dulu + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + 2 hari terakhir + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + Hari ini minggu lalu + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week - Previous week + Minggu lalu + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + Sejauh minggu ini + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + 7 hari terakhir + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + Bulan lalu + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + Sejauh bulan ini + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + 30 hari terakhir + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + 90 hari terakhir + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + 6 bulan terakhir + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + 1 tahun terakhir + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + Tahun lalu + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + Sejauh tahun ini + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + 2 tahun terakhir + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + 5 tahun terakhir + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + Pilih bahasa + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + Segarkan + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + Tidak ada yang dipilih. + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + Batalkan memilih untuk memilih ulang + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + Batas pemilihan tercapai + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + Tanda penyaringan + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + Tambahkan lencana + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + Tidak ada yang tersedia. + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export - Export + Ekspor + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + Tambah + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + Kirim + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + Hapus + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + Batal + + src/app/shared/constants/app.constants.ts + 176 + Preview - Preview + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + + src/app/shared/constants/app.constants.ts + 178 + Next - Next + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + Kembali + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + Klon + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + Salin + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub Deep Scrub + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + Hancurkan + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + + src/app/shared/constants/app.constants.ts + 189 + Flatten - Flatten + Ratakan + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + Tandai Gugur + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + Tandai Masuk + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + Tandai Hilang + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + Tandai Keluar + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + Proteksi + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + Ubah nama + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + Pulihkan + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + Ubah bobot + + src/app/shared/constants/app.constants.ts + 199 + Scrub Scrub + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + Tampilkan + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + Pindahkan ke Tempat Sampah + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + Tidak diproteksi + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain - Stop Drain + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + Dihapus + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + dipindahkan + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + Diklon + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + Disalin + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + Diratakan + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + + src/app/shared/constants/app.constants.ts + 313 + Purged - Purged + Dibuang + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + Dipulihkan + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + Dikembalikan + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + Tutup + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + dipilih + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + ditemukan + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total total - X total + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row - Expand/Collapse Row + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + Gagal memuat data. + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + Ya + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + Tidak + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months - %d months + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year - a year + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Must contain at least - characters - + Must contain at least characters + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts - no active alerts + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + Kualitas Layanan atau QoS + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + Limit BPS + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + Limit IO bytes per detik yang diinginkan. + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + Limit IOPS + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + Limit operasi IO per detik yang diinginkan. + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + Limit Baca BPS + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + Limit byte baca per detik yang diinginkan. + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + Limit IOPS Baca + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + Limit operasi baca per detik yang diinginkan. + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + Limit Tulis BPS + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + Limit tulis byte per detik yang diinginkan. + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + Limit IOPS Tulis + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + Limit operasi tulis per detik yang diinginkan. + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + Letupan BPS + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + Limit yang diinginkan untuk letupan atau burst dari IO byte. + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + Letupan IOPS + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + Limit yang diinginkan untuk letupan atau burst operasi IO. + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + Letupan Baca BPS + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + Limit yang diinginkan untuk letupan atau burst dari baca byte. + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + Letupan IOPS Baca + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + Limit yang diinginkan untuk letupan atau burst operasi baca. + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + Letupan BPS Tulis + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + Limit yang diinginkan untuk letupan atau burst dari tulis byte. + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + Letupan IOPS Tulis + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + Limit yang diinginkan untuk letupan atau burst dari operasi baca. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + Mengeksekusi + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + eksekusi + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + Dieksekusi + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + tugas tak diketahui + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + Membuat + + src/app/shared/services/task-message.service.ts + 67 + create - create + buat + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + Memperbarui + + src/app/shared/services/task-message.service.ts + 68 + update - update + perbarui + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + Menghapus + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding - Adding + + src/app/shared/services/task-message.service.ts + 70 + add - add + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + + src/app/shared/services/task-message.service.ts + 133 + Identified - Identified + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + Pengklonan + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + klon + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + Menyalin + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + salin + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + Meratakan + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + ratakan + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + + src/app/shared/services/task-message.service.ts + 243 + Rolling back - Rolling back + Mengembalikan + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + kembalikan + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + Memindahkan + + src/app/shared/services/task-message.service.ts + 256 + move - move + pindah + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. - Could not find image. + Tidak dapat menemukan image. + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + Memulihkan + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + pulihkan + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + Image name '' is already in use. + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + Membuang + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + buang + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + semua pool + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + Gagal menonaktifkan pencerminan karena sedang bermitra. + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - host ' - ' - + host '' + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.it-IT.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.it-IT.xlf index 1bd808caf87..a23d7e4dfb8 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.it-IT.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.it-IT.xlf @@ -1,8827 +1,17313 @@ - - + + Close - Close + Chiudi + + node_modules/src/ngb-config.ts + 13 + HH HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + Chiudi + + node_modules/src/ngb-config.ts + 13 + «« «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + Seleziona mese + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + Mese precedente + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours - Hours + Ore + + node_modules/src/ngb-config.ts + 13 + « « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Precedente + + node_modules/src/ngb-config.ts + 13 + MM MM + + node_modules/src/ngb-config.ts + 13 + » » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + Seleziona anno + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + Mese successivo + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + Successiva + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + Minuti + + node_modules/src/ngb-config.ts + 13 + »» »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + Incremento ore + + node_modules/src/ngb-config.ts + 13 + First - First + Primo + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Precedente + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + Decremento ore + + node_modules/src/ngb-config.ts + 13 + Next - Next + Successivo + + node_modules/src/ngb-config.ts + 13 + Increment minutes - Increment minutes + Incremento minuti + + node_modules/src/ngb-config.ts + 13 + Last - Last + Ultimo + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + Decremento minuti + + node_modules/src/ngb-config.ts + 13 + SS SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + Secondi + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + Incremento secondi + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + Decremento secondi + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + Deve essere superiore o uguale a . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + Deve essere inferiore o uguale a . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + Panoramica + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets Destinazioni + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology - iSCSI Topology + Topologia iSCSI + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + Nome + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + Attuale + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default Default + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication - Discovery Authentication + Autenticazione rilevazione + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + Utente + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + Questo campo è obbligatorio. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + I nomi utente devono avere una lunghezza compresa tra 8 e 64 caratteri e possono contenere caratteri alfanumerici: '.', '@', '-', '_' o ':'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password Password + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Le password devono avere una lunghezza compresa tra 12 e 16 caratteri e possono contenere caratteri alfanumerici: '@', '-', '_' o '/'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + Utente reciproco + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + Password reciproca + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + Autenticazione rilevazione aggiornata + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + IQN di destinazione + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + IQN contiene un modello errato. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + Un IQN contiene la notazione seguente 'iqn.$year-$month.$reversedAddress:$definedName' + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Ad esempio: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + Ulteriori informazioni + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + Questa destinazione contiene impostazioni avanzate modificate. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + Portali + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + Aggiungi portale + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + Specificare almeno gateway. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images Immagini + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + Backstore: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + Questa immagine contiene impostazioni modificate. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + Numeri LUN duplicati. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + WWN duplicati. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + Aggiungi immagine + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + Autenticazione ACL + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + I nomi utente devono avere una lunghezza compresa tra 8 e 64 caratteri e possono contenere caratteri alfanumerici: '.', '@', '-', '_' o ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Le password devono avere una lunghezza compresa tra 12 e 16 caratteri e possono contenere caratteri alfanumerici: '@', '-', '_' o '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + Iniziatori + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + Iniziatore + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + IQN client + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + L'IQN dell'iniziatore deve essere univoco. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + I nomi utente devono avere una lunghezza compresa tra 8 e 64 caratteri e possono contenere caratteri alfanumerici: '.', '@', '-', '_' o ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + Le password devono avere una lunghezza compresa tra 12 e 16 caratteri e possono contenere caratteri alfanumerici: '@', '-', '_' o '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + L'iniziatore appartiene a un gruppo. Le immagini verranno configurate nel gruppo. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + Nessun elemento aggiunto. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + Aggiungi iniziatore + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + Gruppi + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + Gruppo + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + Nome + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + Aggiungi gruppo + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. Nessun portale disponibile. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + Nessuna immagine disponibile. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. Nessuna immagine disponibile. Assicurarsi di aggiungere un'immagine alla destinazione. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. - There are no initiators available. Please make sure you add an initiator to the target. + Nessun iniziatore disponibile. Assicurarsi di aggiungere un iniziatore alla destinazione. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + destinazione + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + Configura + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + Di solito non è necessario modificare questi parametri rispetto ai valori di default. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + Identificatore + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + Impostazioni + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore Backstore + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + Impostazioni avanzate + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + Destinazioni iSCSI non disponibili + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + Per informazioni su come configurare e abilitare la funzionalità di gestione delle destinazioni iSCSI, consultare . + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + Informazioni disponibili: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + Autenticazione rilevazione + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + Destinazione + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + Portali + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + Immagini + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions - # Sessions + N. sessioni + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + Gateway non disponibili + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + La destinazione contiene sessioni attive + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + Destinazione iSCSI + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + Gateway + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + Stato + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + N. destinazioni + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool Pool + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image - Image + Immagine + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore Backstore + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + Byte letti + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + Byte scritti + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + Operazioni di lettura + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + Operazioni di scrittura + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + A/O da + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token - Create Bootstrap Token + Crea token di bootstrap + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - Per creare un token di bootstrap che può essere importato da un cluster di un sito peer, fornire il nome del sito locale, selezionare i pool che avranno abilitata la creazione di copie speculari e fare clic su  - Genera - . - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + Per creare un token di bootstrap che può essere importato da un cluster di un sito peer, fornire il nome del sito locale, selezionare i pool che avranno abilitata la creazione di copie speculari e fare clic su Genera. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + Nome sito + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + Nome... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + Pool + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + È richiesto almeno un pool. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + Genera + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + Token generato... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + Chiudi + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + Importa token di bootstrap + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + Per importare un token di bootstrap creato da un cluster di un sito peer, fornire il nome del sito locale, selezionare i pool che avranno abilitata la creazione di copie speculari, specificare il token generato e fare clic su Importa. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + Direzione + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + Il token non è valido. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + Istanza + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname - Hostname + Nome host + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version - Version + Versione + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + Integrità + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + Problema + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + Avanzamento + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description - Description + Descrizione + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons - Daemons + Daemon + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + Crea token di bootstrap + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + Importa token di bootstrap + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + Modifica modalità di copia speculare per il pool + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + Per modificare la modalità di copia speculare per il pool , selezionare una nuova modalità dall'elenco e fare clic su Aggiorna. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + Modalità + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + È necessario rimuovere i cluster peer prima di disabilitare la copia speculare. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + Disabilitato + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + {VAR_SELECT, select, edit {Modificare} other {Aggiungere}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + peer copia speculare del pool + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + gli attributi del peer copia speculare del pool per il pool e fare clic su Invia. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + Nome cluster + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + Il nome del cluster non è valido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID - CephX ID + ID CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... - CephX ID... + ID CephX... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + L'ID CephX non è valido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + Indirizzi dei monitor + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + Indirizzi con valori delimitati da virgole... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + L'indirizzo del monitor non è valido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key - CephX Key + Chiave CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Chiave con codifica Base64... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. - CephX key must be base64 encoded. + La chiave CephX deve essere con codifica Base64. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + N. locale + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + N. remoto + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + Modalità di modifica + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer Aggiungi peer + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer - Edit Peer + Modifica peer + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + Elimina peer + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode - Mode + Modalità + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader Sequenza iniziale + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + N. locale + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + N. remoto + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + peer copia speculare + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + Porta + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + Iniziatore + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + Caricamento in corso... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host Host + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport - Transport + Trasporto + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool Pool + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- - -- Select a pool -- + -- Selezionare un pool -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + '/' e '@' non sono consentiti. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + Spazio dei nomi + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + Dettagli + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + Spazi dei nomi + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. - The value must be at least 1. + Il valore deve essere almeno 1. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration Configurazione RBD + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. - Remove the local configuration value. The parent configuration value will be inherited and used instead. + Rimuovere il valore della configurazione locale. Al suo posto verrà ereditato e utilizzato il valore della configurazione superiore. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + Il valore minimo è 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global - Global + Globale + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + Immagine + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + Chiave + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + Origine + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + Valore + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + Disponibile solo per le immagini RBD con l'opzione fast-diff abilitata + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + Pool di dati + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + Creato + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + Dimensioni + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + Oggetti + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + Dimensioni oggetto + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + Funzioni + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + Soggetto al provisioning + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A - N/A + N/D + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned - Total provisioned + Totale soggetto al provisioning + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + Unità di striping + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + Conteggio di striping + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + Superiore + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + Prefisso nome blocco + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + Ordine + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + Versione formato + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + Snapshot + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + Configurazione + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + Prestazioni + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + Impossibile visualizzare le informazioni per RBD con stato 'In rimozione'. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + Questa impostazione sostituisce il valore globale + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + Questo è il valore globale. Nessun valore per tale opzione è stato impostato per questa immagine. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + Per utilizzare un pool di dati dedicato, è richiesto più di un pool con l'uso dell'etichetta applicazione RBD. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- Nessun pool di dati disponibile -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- Nessuno spazio dei nomi disponibile -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- Selezionare uno spazio dei nomi -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + È necessario aumentare le dimensioni. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping Striping + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- Selezionare l'unità di striping -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + Questo campo è obbligatorio perché è specificato il numero di striping. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + L'unità di striping è maggiore delle dimensioni dell'oggetto. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + Questo campo è obbligatorio perché è specificata l'unità di striping. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + Il numero di striping deve essere maggiore di 0. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + Appiattimento profondo + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + Su livelli + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + Blocco esclusivo + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + Mappa oggetti (richiede il blocco esclusivo) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + Fast diff (con interlock con la mappa oggetti) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + Se questa immagine viene eliminata, verranno eliminate anche tutte le sue snapshot. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + Le snapshot seguenti sono al momento protette e verranno rimosse: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + RBD con stato 'In rimozione' + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + Dimensioni + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + Utilizzo + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + Oggetti + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + Dimensioni oggetto + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + Superiore + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + Esecuzione di copia speculare + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + Avviso + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + Questo RBD contiene snapshot clonate. Prima di eliminare questo RBD, eliminare gli RBD correlati. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + Questa immagine RBD ha un nome non valido e non può essere gestita da ceph. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + Azione non possibile per RBD con stato 'In rimozione' + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + Crea spazio dei nomi + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- Nessun pool rbd disponibile -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. - Namespace already exists. + Spazio dei nomi già esistente. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + Spazio dei nomi '/' creato + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + Totale immagini + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + Spazio dei nomi '/' eliminato + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + Lo spazio dei nomi contiene immagini + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + Snapshot RBD + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + Per poterne effettuare la clonazione, la snapshot deve essere protetta. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + Si sta per eseguire il rollback + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + Utilizzato + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + CON PROTEZIONE + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + SENZA PROTEZIONE + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + Creato + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + Rollback snapshot RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + Esegui rollback + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + Snapshot RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + Cestino + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + Prestazioni complessive + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + Elimina definitivamente contenuto del cestino + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + Protezione scaduta in data/ora + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + Data/Ora scadenza protezione + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + Questa immagine è protetta fino al . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status - Status + Stato + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At - Deleted At + Eliminato alle + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + Sposta un'immagine nel cestino + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + Questa immagine contiene una o più snapshot e non sarà possibile rimuoverla dopo averla spostata nel cestino. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + Per spostare nel cestino, fare clic su Sposta. Facoltativamente, è possibile scegliere una data di scadenza. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + Data/Ora scadenza protezione: + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + NON PROTETTO + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Formato data errato. Utilizzare "AAAA-MM-GG HH:mm:ss". + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + La protezione è già scaduta. Selezionare una data futura o lasciarla vuota. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + Per eseguire l'eliminazione definitiva, selezionare Tutti oppure un solo pool e fare clic su Elimina definitivamente.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: Pool: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + Nome pool... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + tutti + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + Ripristina immagine + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + Per ripristinare @, digitare il nuovo nome dell'immagine e fare clic su Ripristina. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + Nuovo nome + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + Questo campo è obbligatorio. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id - id + ID + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + tipo + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + stato + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + versione + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + radice + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + Client '' rimosso + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + Classificazioni + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + Standby + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + Contatore delle prestazioni MDS + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + Daemon in standby + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + Classificazione + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon Daemon + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + Attività + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries - Dentries + Dentry + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + Inode + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + Dir + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + Maiusc + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + Tipo + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + Quote + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + Origine + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + Percorso + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + Impossibile creare snapshot per file/cartelle nel sottovolume + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + Dimensioni massime + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + Numero massimo di file + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + Il valore ereditato è il valore massimo da utilizzare. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + Salva + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + Quota CephFS per '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + dimensioni + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + file + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + Quota da '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + Il valore non può essere minore di 0 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + Il valore non può essere maggiore di + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + Aggiornato + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - in order to inherit - - + in order to inherit + per poter ereditare + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + che non è utilizzato a causa dell'ereditarietà di + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + per non avere alcuna quota nella directory + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + Crea snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + Immettere il nome della snapshot. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + Snapshot '' creata per '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + Snapshot CephFS + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + Snapshot '' eliminata per '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + Posizionamento + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + Host + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label Etichetta + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + Nessun host presente. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + Filtra host + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled - Enabled + Abilitato + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + Ora di inizio + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + Riconnessione in corso. Attendere... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default Default + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + ad es. 10 GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + tutti + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + Lettura + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute - Execute + Esegui + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + Pool di dati + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + Directory + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + Client + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + Dettagli sulle prestazioni + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + Descrizione + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + Descrizione lunga + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values - Current values + Valori attuali + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + Default del daemon + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + Tipo + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + Minimo + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + Massimo + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + Flag + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + Servizi + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source - Source + Origine + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + Livello + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + Può essere aggiornato al runtime (modificabile) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + Tag + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + Valori di enumerazione + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + Vedere anche + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + È possibile aggiornare il valore al runtime. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + I daemon/client non estraggono questo valore dal + database della configurazione di monitoraggio. Non è consentito impostare questa opzione tramite 'ceph config + set ...'. È necessario configurarla tramite ceph.conf o dalla + riga di comando. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + L'opzione diventa attiva solo all'avvio del daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + L'opzione interessa solo la creazione del cluster. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + L'opzione interessa solo la creazione del daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + Valori + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- -- Default -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true - true + vero + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false - false + falso + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + Il valore immesso è troppo alto. Non deve essere maggiore di . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + Il valore immesso è troppo basso. Non deve essere minore di . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - Opzione di configurazione - aggiornata - + Updated config option + Opzione di configurazione aggiornata + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + Modificato + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + Livello + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service - Service - - - Modified - Modified + Servizio + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + Valore attuale + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + Modificabile + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + Risorse del cluster + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + Capacità di storage + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + Numero di dispositivi + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + Capacità di base + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs - CPUs + CPU + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + Memoria + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + Dettagli dell'host + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + Benvenuto in + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + Espandere innanzitutto il cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + Espandi cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + Ignora + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + Aggiungi host + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + Crea OSD + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + Crea servizi + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + Si sta per ignorare la procedura di espansione del cluster. Sarà necessario navigare nel menu per aggiungere host e servizi. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + Continuare? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + Continua + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + Espansione del cluster ignorata dall'utente + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + Espansione del cluster riuscita + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + Espandi cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + Visualizzatore mappa CRUSH + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + Dispositivi + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + Dischi fisici + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + Integrità dispositivo + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + Nessun nome host trovato. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + Nome host + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + Per aggiungere più host contemporaneamente, è possibile immettere: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + un elenco di nomi host separati da virgole (ad es. esempio-01,esempio-02,esempio-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + un'espressione di intervallo (ad es. esempio-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + un elenco di espressioni di intervallo separate da virgole (ad es. esempio-[01-05].lab.com,esempio2-[1-4].lab.com,esempio3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + Il nome host selezionato è già in uso. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + Indirizzo di rete + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + Il valore non è un indirizzo IP valido. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + Etichette + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + Modalità manutenzione + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + Nessuna etichetta presente. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + Filtra o aggiungi etichette + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label - Add label + Aggiungi etichetta + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host host + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + Elenco degli host + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + I dati saranno disponibili solo se è disponibile Orchestrator. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + SSD, NVME + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + La funzione è disabilitata perché l'host selezionato non è gestito da Orchestrator. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + Etichette + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + Modello + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + CPU + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + Core + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + Memoria totale + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity - Raw Capacity + Capacità di base + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + HDD + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + NIC + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + Modifica host: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + Modifica host + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + Host &quot;&quot aggiornato; + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + &quot;&quot; spostato in manutenzione + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + &quot;&quot; non può essere spostato in manutenzione + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - " - " has exited maintenance - + "" has exited maintenance + &quot;&quot; non è più in manutenzione + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + &quot;&quot; ha interrotto lo svuotamento + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + &quot;&quot; ha iniziato lo svuotamento + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + Identifica + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + Percorso dispositivo + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + Disponibile + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + Produttore + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + OSD + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + Identifica dispositivo + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + Specificare per quanto tempo far lampeggiare il LED. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + 1 minuto + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + 2 minuti + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + 5 minuti + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + 10 minuti + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + 15 minuti + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + Identificazione di '' avviata sull'host '' + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + Log del cluster + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + Log di controllo + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + Livello di priorità: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + Parola chiave: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + Data: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + Intervallo di tempo: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + Nessuna voce di log trovata. Provare a selezionare opzioni di filtro diverse. + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + Ripristinare il filtro. + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module - Edit Manager module + Modifica modulo Manager + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + Il valore immesso non è un UUID valido, ad es.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + Il valore immesso deve essere un indirizzo IP valido. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - The entered value is too high! It must be lower or equal to - . - + The entered value is too high! It must be lower or equal to . + Il valore immesso è troppo alto. Deve essere minore di o uguale a . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + Il valore immesso è troppo basso. Deve essere maggiore di o uguale a . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. - The entered value needs to be a number. + Il valore immesso deve essere un numero. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + Il valore immesso deve essere un numero o un decimale. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + Opzioni aggiornate per il modulo ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + Sempre attivo + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + Modifica + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + Abilita + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + Disabilita + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + Questo modulo Manager è sempre attivo. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status Stato + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + ID cluster + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + mappa mon modificata + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + epoca mappa mon + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con quorum con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon quorum mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con con richiesta + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + mon richiesto + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + Nel quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + Non nel quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + Indirizzo pubblico + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + Sessioni aperte + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + Anteprima creazione OSD + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + Attributi (mappa OSD) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + Metadati + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + Metadati non disponibili + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + Contatore delle prestazioni + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + Dispositivi + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + Dispositivi primari di memorizzazione. Questi dispositivi contengono tutti i dati degli OSD. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + Dispositivi WAL. Questi dispositivi sono utilizzati per il journal interno di BlueStore. È utile avere un dispositivo di questo tipo solo se più veloce del dispositivo primario (ad es. dischi NVME o SSD). Se si ha a disposizione poco spazio di archiviazione veloce (ad es. meno di un gigabyte), si consiglia di utilizzarlo come dispositivo WAL. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + I dispositivi DB possono essere utilizzati per archiviare i metadati interni di BlueStore. È utile avere un dispositivo DB dedicato solo se è più veloce del dispositivo primario (ad es. dischi NVME o SSD). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + Aggiungi + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + Annulla + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + Capacità di base: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + Nessun dispositivo disponibile + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + Aggiungere innanzitutto i dispositivi primari + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters - Add devices by using filters + Aggiungere i dispositivi utilizzando i filtri + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + Dispositivi + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + Per continuare, occorre applicare almeno uno di questi filtri: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + Numero di dispositivi: . Capacità di base: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + Flag OSD singoli + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + A livello di cluster + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + Ripristina selezione precedente + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + Nessuno attivo + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + Non è consentito l'avvio degli OSD + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + Nessuno declassato + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + I rapporti di errore degli OSD vengono ignorati in modo che i monitor non declassino gli OSD + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + Nessuno attivato + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + Gli OSD che sono stati contrassegnati come disattivati in precedenza non verranno contrassegnati nuovamente come attivati all'avvio + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + Nessuno disattivato + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + Gli OSD non verranno automaticamente contrassegnati come disattivati dopo l'intervallo configurato + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + Il flag è stato abilitato per l'intero cluster. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + Flag OSD aggiornati + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + Flag OSD a livello di cluster + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + Sospendi + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes - Pauses reads and writes + Sospende le operazioni di lettura e scrittura + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + Nessuna pulitura + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + Pulitura disabilitata + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + Nessuna pulitura approfondita + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + Pulitura approfondita disabilitata + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + Nessuna operazione di recupero informazioni + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended Recupero informazioni sui gruppi di posizionamento sospeso + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + Nessun ribilanciamento + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + L'OSD sceglierà di non recuperare le informazioni a meno che non sia danneggiato anche il gruppo di posizionamento + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + Nessun recupero + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + Recupero dei gruppi di posizionamento sospeso + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + Ordinamento bitwise + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort - Use bitwise sort + Usa ordinamento bitwise + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + Snapdir eliminate definitivamente + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + Gli OSD contengono set di snap convertiti + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + Eliminazioni recuperi + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + Eliminazioni eseguite durante il recupero invece del peering + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + Limite rigido log gruppo di posizionamento + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + Inserisce un limite rigido per la lunghezza del log del gruppo di posizionamento + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices - Shared devices + Dispositivi condivisi + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + Slot per WAL + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + Numero di OSD per dispositivo WAL. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + Immettere 0 per lasciare decidere al backend di Orchestrator. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + Il valore deve essere maggiore o uguale a 0 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + Slot per DB + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + Numero di OSD per dispositivo DB. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption - Encryption + Crittografia + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + Elenco degli OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + Gli OSD verranno contrassegnati se si procede. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {L'OSD è} other {Gli OSD non sono}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + L'OSD verrà se si procede. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + Conservare gli ID dell'OSD per la sostituzione. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + disattivato + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + attivato + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + declassato + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + Contrassegna + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + OSD perso + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + contrassegnato come perso + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + Elimina definitivamente + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + eliminato definitivamente + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + elimina definitivamente + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + eliminato definitivamente + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + Flag + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + Priorità di recupero + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + Pulitura gruppo di posizionamento + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + Classe dispositivo + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + Gruppi di posizionamento + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + Byte letti + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + Byte scritti + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops - Read ops + Operazioni di lettura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + Operazioni di scrittura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + Modifica OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + Modifica OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + OSD '' aggiornato + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + Contrassegna OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + Contrassegna + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + elimina + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + eliminato + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + Avanzate... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + Opzioni di configurazione avanzate + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + Opzioni di pulitura gruppo di posizionamento + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + Opzioni di pulitura gruppo di posizionamento aggiornate + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + Priorità di recupero OSD + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + Livello di priorità + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + Personalizza valori di priorità + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + Il valore immesso è troppo alto. Non deve essere maggiore di . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + Il valore immesso è troppo basso. Non deve essere minore di . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + Numero massimo di recuperi informazioni + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active - Recovery Max Active + Numero massimo di recuperi attivi + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + Avvio singolo numero massimo di recuperi + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + Sospensione recupero + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + Personalizzato + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + Priorità della velocità di recupero dell'OSD '' aggiornata + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + Ripesa OSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + Il valore deve essere compreso tra 0 e 1. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSDs - Scrub - + OSDs Scrub + Pulitura degli OSD + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} {VAR_SELECT, select, true {approfondita} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + Si sta per eseguire la pulitura degli OSD: . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {approfondita} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + è stato inizializzato negli OSD seguenti: + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + Per visualizzare tutti gli avvisi attivi di Prometheus, specificare l'URL dell'API della gestione avvisi di Prometheus come descritto in . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + Crea silenziamento + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + Gravità + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + Avviato + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + Avvisi + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + Silenziamenti + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + Per visualizzare tutti gli avvisi configurati di Prometheus, specificare l'URL dell'API di Prometheus come descritto in . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + Gruppo + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + Durata + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + Interrogazione + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + Modifica + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + Elimina + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + Se un silenziamento viene modificato, il silenziamento precedente scadrà e verrà ricreato come nuovo silenziamento + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + Creatore + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + Commento + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + Ora di inizio + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + Se l'ora di inizio è nel passato, verrà utilizzata l'ora di creazione + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + Durata + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + Ora di fine + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + Matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + Per un silenziamento è necessario almeno un matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + Aggiungi matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + silenziamento + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + Nome attributo + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + Espressione regolare + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + Aggiungere l'host Prometheus alla configurazione del dashboard e aggiornare la pagina + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + Per abilitare la funzione di silenziamento, specificare l'URL dell'API della gestione avvisi di Prometheus come descritto in . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + Creato da + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + Finisce + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + Silenziamento + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + {VAR_SELECT, select, true {Modifica} other {Aggiungi}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + matcher + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + -- Selezionare un attributo per la corrispondenza -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + Valore + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + Usa espressione regolare + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + nessuna spec. + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + non gestito + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + conteggio: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + etichetta: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + Eventi del servizio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + Ultimo aggiornamento + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + Eventi del daemon + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + Nome del servizio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + Tipo di servizio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + Eventi del servizio + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- Selezionare un tipo di servizio -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + Servizio backend + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- - -- No service available -- + -- Nessun servizio disponibile -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + Nome del servizio + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + Area di autenticazione + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + Gruppo di zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + Zona + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + Non gestito + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + Conteggio + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + Porta + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + Il valore non può superare 65535. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- Nessun pool disponibile -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + Indirizzi IP attendibili + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + Elenco di indirizzi IP separati da virgole. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + Aggiungere qui gli indirizzi IP di Ceph Manager, senza i quali non è possibile raggiungere i gateway iSCSI. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + IP virtuale + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + L'indirizzo IP virtuale e la subnet (in notazione CIDR) in cui sarà disponibile il servizio in ingresso. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + Porta del front-end + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + La porta utilizzata per accedere al servizio in ingresso. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + Porta del monitor + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + La porta utilizzata da haproxy per lo stato del servizio di bilanciamento del carico. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + Reti CIDR + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + Un elenco di reti per identificare l'interfaccia di rete da utilizzare per l'indirizzo IP virtuale. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + Versione + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + -- Selezionare la versione SNMP -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + Destinazione + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - Must be of the format hostname:port. + Deve essere nel formato nome host:porta. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + Il valore non corrisponde al modello: nome host:porta + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + ID motore + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + Identificatore univoco del dispositivo (in esadecimale). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + Il valore non corrisponde al modello: deve essere di tipo esadecimale e la sua lunghezza deve essere un multiplo di 2 con valore minimo = 10 e valore massimo = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + Protocollo di autenticazione + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- - -- Select auth protocol -- + -- Selezionare il protocollo di autenticazione -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + Protocollo di privacy + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + -- Selezionare il protocollo di privacy -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + Credenziali + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + Community SNMP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + Nome utente + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + Crittografia + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + Certificato + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + Il certificato SSL in formato PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. - Invalid SSL certificate. + Certificato SSL non valido. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + Chiave privata + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + La chiave privata SSL in formato PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + Chiave privata SSL non valida. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + servizio + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + Posizionamento + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + In esecuzione + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + Passaggio di 2: configurazione del rapporto di telemetria + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + Il modulo di telemetria invia dati anonimi su questo cluster Ceph agli sviluppatori Ceph per analizzare in che modo viene utilizzato Ceph e quali problemi potrebbero riscontrare gli utenti. Questi dati sono visualizzati su dashboard pubblici che consentono alla comunità di visualizzare rapidamente le statistiche di riepilogo sul numero di cluster che generano rapporti, la loro capacità totale e il numero di OSD e i trend di distribuzione delle versioni. I dati oggetto dei rapporti non sono dati sensibili come nomi di pool, nomi di oggetto, contenuti degli oggetti, nomi host o numeri di serie del dispositivo. Sono invece dati relativi a contatori e statistiche sulla modalità di distribuzione del cluster, sulla versione di Ceph, sulla distribuzione degli host e su altri parametri che consentono di comprendere meglio la modalità di utilizzo di Ceph. I dati vengono inviati in modalità protetta a e (rapporto dispositivo). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + Disattiva + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + Canali + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - Il rapporto di telemetria è suddiviso in più "canali", ognuno con un tipo diverso di informazioni che è possibile configurare di seguito. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + Il rapporto di telemetria è suddiviso in più "canali", ognuno con un tipo diverso di informazioni che è possibile configurare di seguito. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + Base + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: - Includes basic information about the cluster: + Include informazioni di base sul cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + Capacità del cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + Numero di monitor, manager, OSD, MDS, gateway di oggetto o altri daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + Versione del software attualmente in uso + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + Numero e tipi di pool RADOS e file system CephFS + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + Nomi di opzioni di configurazione modificati rispetto al default (ad eccezione dei valori) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + Arresto anomalo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: - Includes information about daemon crashes: + Include informazioni sugli arresti anomali del daemon: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + Tipo di daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + Versione del daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + Sistema operativo (versione kernel e distribuzione del sistema operativo) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + Traccia dello stack che identifica il punto in cui si è verificato l'arresto anomalo nel codice Ceph + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + Dispositivo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + Include informazioni sulle metriche del dispositivo, come le metriche SMART rese anonime. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + Rientro + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + Include informazioni di identificazione fornite dall'utente sul cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + Informazioni di contatto + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + L'invio delle informazioni di contatto è facoltativo e disabilitato per default. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + Contatto + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + Primo cluster Ceph personale + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + Organizzazione + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name - Organization name + Nome dell'organizzazione + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + Intervallo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + Per default, il modulo compila e invia un nuovo rapporto ogni 24 ore. È possibile modificare questo intervallo impostando un numero diverso di ore. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. Il valore immesso è troppo basso. Deve essere maggiore di o uguale a 8. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + Se il cluster non è in grado di connettersi direttamente all'endpoint di telemetria configurato (per default, telemetry.ceph.com), è possibile configurare un server proxy HTTP/HTTPS aggiungendo ad esempio https://10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + Se necessario, è inoltre possibile includere un user:pass, come https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Nota: - facendo clic su 'Avanti' verrà visualizzata un'anteprima del contenuto del rapporto e sarà poi possibile attivare l'invio automatico dei propri dati. - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + Nota: facendo clic su 'Avanti' verrà visualizzata un'anteprima del contenuto del rapporto e sarà poi possibile attivare l'invio automatico dei propri dati. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + Passaggio di 2: anteprima del rapporto di telemetria + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + ID rapporto + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + Un UUID casuale per identificare un determinato cluster nel corso di diversi rapporti di telemetria. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + I dati di telemetria effettivi che verranno inviati. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + Acconsento all'invio dei dati di telemetria ai sensi del Community Data License Agreement - Sharing - Versione 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + Il modulo di telemetria è stato configurato e attivato correttamente. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + Si è verificato un errore durante l'aggiornamento della configurazione del modulo di telemetria. Riprovare + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + Indietro + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + Sospendi + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + Stato del cluster + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + Ultimi 5 minuti + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + Ultimi 15 minuti + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + Ultimi 30 minuti + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours - Last 3 hours + Ultime 3 ore + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + Ultime 6 ore + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + Ultime 12 ore + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + Ultime 24 ore + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster Cluster + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + Pericolo + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning - Warning + Avviso + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + Monitor + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + OSD + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + Manager + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + Object Gateway + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + Server di metadati + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + iSCSI Gateway + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + Capacità + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity - Raw Capacity + Capacità di base + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status - PG Status + Stato gruppo di posizionamento + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + Gruppi di posizionamento per OSD + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + Lettura/Scrittura client + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + Velocità effettiva client + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + Velocità effettiva di recupero + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + Pulitura + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + Letture + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + Scritture + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + Dispon. + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean - Clean + Pulisci + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + In funzione + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + Sconosciuto + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + Integro + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + Posizione errata + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + Danneggiato + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + Non trovato + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + oggetti + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + qui + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + attivo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + nessun file system + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + attivo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby standby + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + daemon in standby + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + daemon attivo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a - n/a + n/d + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + (quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total - total + totale + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + quasi pieno + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + pieno + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + Client () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + Indirizzi + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + Tipo di accesso + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash - Squash + Esegui squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster Cluster + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + Protocollo NFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + Backend di storage + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User - CephFS User + Utente CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + File system CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + Etichetta di sicurezza + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway Object Gateway + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + Utente Object Gateway + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + Può accedere qualsiasi client + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + Indirizzi + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + Deve contenere uno o più valori delimitati da virgole + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + Ad esempio: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + Tipo di accesso + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash - Squash + Esegui squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + Aggiungi client + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (ereditato dalla configurazione globale) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- -- Selezionare il tipo di accesso -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + ereditato dalla configurazione globale + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- Selezionare il tipo di squash dell'ID utente che viene eseguito -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- Nessun cluster disponibile -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- Selezionare il cluster -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + Questo è l'ID di un servizio NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + Questo campo è obbligatorio. Per creare un nuovo cluster NFS, aggiungere un nuovo servizio NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- Nessun file system CephFS disponibile -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- Selezionare il file system CephFS -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + Etichetta di sicurezza + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + Abilita etichetta di sicurezza + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + Percorso CephFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + Un percorso nel file system CephFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + Il percorso deve iniziare con una barra '/' e può essere seguito da una parola + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + Il percorso non esiste nel volume selezionato. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + Compartimento + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + Il compartimento non esiste o non si trova nell'area di autenticazione di default (se sono configurate più aree di autenticazione). Per continuare, creare un nuovo compartimento. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + Protocollo NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. - By using different Pseudo options, the same Path may be exported multiple times. + Utilizzando diverse opzioni Pseudo, è possibile esportare più volte lo stesso percorso. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + Lo pseudo è già utilizzato da un'altra esportazione. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + Lo Pseudo deve iniziare con una barra '/' e non può contenere nessuno dei caratteri seguenti: >, <, |, &, ( o ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- Nessun tipo di accesso disponibile -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- Nessuno squash disponibile -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + Protocollo di trasporto + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + Esportazione NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + Errore durante il recupero dei percorsi. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + Errore durante il recupero dei nomi dei compartimenti. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway Object Gateway + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + Compartimento + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + Contatori delle prestazioni non disponibili + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + Il nome può contenere solo caratteri alfanumerici, trattini e caratteri di sottolineatura. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + Il nome del profilo del codice di cancellazione selezionato è già in uso. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + Radice + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + Tipo dominio di errore + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + Classe dispositivo + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule - Crush Rule + Regola Crush + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + Plug-in + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + Porzioni di dati (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + Deve essere uguale a o maggiore di 2. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + Le porzioni (k+m) hanno superato gli OSD disponibili di . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + Per una distribuzione equa, k deve essere un multiplo di (k+m)/l. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + K deve essere uguale o superiore a m per il recupero corretto dei dati tramite c. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + Fattore di distribuzione: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + Porzioni di codice (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + Deve essere uguale a o maggiore di 1. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + Strumento di stima della durata (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + C deve essere uguale o inferiore a m, dal momento che m definisce il numero di porzioni che è possibile utilizzare. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) - Helper chunks (d) + Porzioni helper (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + Impostare d manualmente o utilizzare il calcolo di default del plug-in che massimizza d. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + D viene aggiornato automaticamente su k e m cambia + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + È possibile impostare d su un intervallo compreso tra e + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + È possibile impostare d solo su + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D deve essere superiore a k ( - ). - + D has to be greater than k (). + D deve essere superiore a k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + D deve essere inferiore a k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + Località (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + Impossibile suddividere correttamente le porzioni (k+m) con la località corrente. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + Gruppi di località: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + Dominio di errore Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + Località Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + Nessuno + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + Mds scalari + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + Tecnica + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + Dimensioni del pacchetto + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + Radice Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + Classe dispositivo Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + OSD disponibili: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory Directory + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + Profilo codice di cancellazione + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + Dettagli livelli cache + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode Modalità cache + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + Numero minimo di giorni per la rimozione + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + Numero minimo di giorni per la cancellazione + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + Numero massimo di byte di destinazione + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + Numero massimo di oggetti di destinazione + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + Nessuna applicazione aggiunta + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + Il limite di applicazioni è stato raggiunto + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + Un pool può contenere solo fino a quattro definizioni delle applicazioni. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + Caratteri consentiti '_a-zA-Z0-9' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters - Maximum length is 128 characters + La lunghezza massima è di 128 caratteri + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + Filtra o aggiungi applicazioni + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + Aggiungi applicazione + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + Il nome del pool Ceph scelto è già in uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + Non è possibile creare un pool RBD che contiene '/' nel nome. Modificare il nome o rimuovere 'rbd' dall'elenco delle applicazioni. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + Il nome del pool può contenere soltanto lettere, numeri, '.', '-', '_' o '/'. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + Tipo di pool + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- Selezionare un tipo di pool -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + Ridimensionamento automatico gruppo di posizionamento + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + Gruppi di posizionamento + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + È necessario almeno un gruppo di posizionamento. + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. - Your cluster can't handle this many PGs. Please recalculate the PG amount needed. + Il cluster non può gestire questo numero di gruppi di posizionamento. Ricalcolare il numero di gruppi di posizionamento necessari. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help - Calculation help + Guida per il calcolo + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + Sono state calcolate le impostazioni dei gruppi di posizionamento attuali; prima di inviare, assicurarsi che i valori soddisfino le proprie esigenze. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + Dimensioni replicate + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + Minimo: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + Massimo: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + Le dimensioni specificate non sono comprese nell'intervallo. È possibile utilizzare un valore nell'intervallo da a . + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + Una dimensione pari a 1 non creerà una replica dell'oggetto. La 'Dimensione replicata' include l'oggetto stesso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + Sovrascritture codice di cancellazione + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + Applicazioni + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + Esecuzione di copia speculare + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + Profilo del codice di cancellazione + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- Nessun profilo del codice di cancellazione disponibile -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- Selezionare un profilo del codice di cancellazione -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + Non è possibile eliminare questo profilo poiché è in uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + Profilo + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + In uso dai pool + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + Il profilo non è in uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset - Crush ruleset + Set di regole Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + Un nuovo set di regole Crush verrà creato in modo implicito. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + Nessuna regola presente. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- Selezionare una regola Crush -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + Non è possibile eliminare questa regola poiché è in uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + Regola Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps - Crush steps + Passaggi Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + La regola non è in uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + Non è possibile utilizzare la regola nel cluster attuale perché il numero degli OSD che contiene è troppo basso e non soddisfa il numero minimo di OSD richiesto da questa regola. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + Compressione + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + Algoritmo + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- Nessun algoritmo di compressione della cancellazione disponibile -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + Dimensioni minime del blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + ad es. 128 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + Il valore deve essere maggiore di 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + Il valore deve essere minore delle dimensioni massime del blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + Dimensioni massime del blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + ad es. 512 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + Il valore deve essere maggiore delle dimensioni minime del blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + Rapporto + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + Rapporto di compressione + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + Il valore deve essere compreso tra 0,0 e 1,0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + Numero massimo di byte + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + Lasciare vuoto o inserire 0 per disabilitare questa quota. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + Una quota valida deve essere maggiore di 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + Numero massimo di oggetti + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + Il valore deve essere maggiore di o uguale a 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool pool + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + profilo del codice di cancellazione + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + regola crush + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + Elenco dei pool + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + Protezione dati + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + Applicazioni + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status - PG Status + Stato gruppo di posizionamento + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + Set di regole Crush + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + L'eliminazione del pool è disabilitata dall'impostazione di configurazione mon_allow_pool_delete. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key - Key + Chiave + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + Controllo versioni + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + Eliminazione MFA + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + Tipo di indice + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + Regola di posizionamento + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + Quota compartimento + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + Abilitato + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + Dimensioni massime + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + Illimitato + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + Numero massimo di oggetti + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + Blocco + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days - Days + Giorni + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + I nomi dei compartimenti possono contenere solo lettere minuscole, numeri, punti e trattini. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + Il nome scelto è già in uso. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + I nomi dei compartimenti non devono contenere caratteri maiuscoli o caratteri di sottolineatura. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + Ogni etichetta deve iniziare e terminare con una lettera minuscola o un numero. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + I nomi dei compartimenti non possono essere formattati come indirizzi IP. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + Le etichette dei compartimenti non devono essere vuote e possono contenere solo lettere minuscole, numeri e trattini. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + I nomi dei compartimenti devono avere una lunghezza compresa tra 3 e 63 caratteri. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + Proprietario + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- Selezionare un utente -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + Abilita il controllo versioni per gli oggetti nel compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + Autenticazione a più fattori + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + Eliminazione abilitata + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + Abilita l'eliminazione dell'autenticazione a più fattori (MFA, Multi-Factor Authentication), che richiede un'ulteriore autenticazione per la modifica dello stato del controllo versioni del compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + Numero di serie token + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + PIN token + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. Abilita il blocco per gli oggetti nel compartimento. La funzione di blocco può essere abilitata soltanto durante la creazione di un compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + Il numero di giorni che si desidera specificare come periodo di conservazione di default e che verrà applicato ai nuovi oggetti inseriti in questo compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + Il valore immesso deve essere un numero intero positivo. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + Il valore dei giorni di conservazione deve essere un numero intero positivo. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + Destinazione di posizionamento + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- Selezionare una destinazione di posizionamento -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + compartimento + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + Compartimento Object Gateway '' aggiornato. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + Compartimento Object Gateway '' creato + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + Nessun limite + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + Proprietario + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + Capacità utilizzata + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + % limite capacità + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + % limite oggetto + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + Contatori delle prestazioni + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + Sincronizza prestazioni + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + Area di autenticazione + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group - Zone Group + Gruppo di zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + Zona + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + Verrà creato solo quel numero di daemon. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + Gruppo di zone + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + Pool di dati + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + Errore + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- -- Selezionare un tipo -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + Autorizzazione + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- - -- Select a permission -- + -- Selezionare un'autorizzazione -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + funzionalità + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + Chiavi + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show - Show + Mostra + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant Tenant + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + ID utente + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + Nome completo + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + Indirizzo e-mail + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + Sospeso + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + Numero massimo di compartimenti + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + Sottoutenti + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + Funzionalità + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + MFA (ID) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + Quota utente + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + Nome utente + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + Illimitato + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + Il valore non è valido. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + L'ID utente scelto è già in uso. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + Mostra tenant + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + L'ID utente scelto esiste in questo tenant. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. - This is not a valid email address. + Non è un indirizzo e-mail valido. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + L'indirizzo e-mail scelto è già in uso. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + Numero massimo di compartimenti + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + Disabilitato + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom - Custom + Personalizzato + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + Il valore immesso deve essere >=1. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + Chiave S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key - Auto-generate key + Generazione automatica chiave + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + Chiave di accesso + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + Chiave segreta + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + Nessun sottoutente esistente. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + Nessuna chiave esistente. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + Nessuna funzionalità esistente. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + Tutte le funzionalità sono già state aggiunte. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + Dimensioni illimitate + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + Dimensioni massime + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + Oggetti illimitati + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + Numero massimo di oggetti + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + Il valore immesso deve essere >=0. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + utente + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + sottoutente + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + Chiave S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + Utente Object Gateway '' aggiornato + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + Utente Object Gateway '' creato + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant Tenant + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + Nome completo + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + Indirizzo e-mail + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + Sospeso + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + Numero massimo di compartimenti + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users - users + utenti + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- Selezionare un nome utente -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + Sottoutente + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + L'ID del sottoutente scelto è già in uso. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + lettura, scrittura + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + pieno + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Chiave Swift + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + Generazione automatica segreto + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + Sottoutente + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + Chiave Swift + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + Utenti + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + Ruoli + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + Nome host o ID OSD non forniti + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + ID dispositivo + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + Stato di integrità + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + Buono + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + Cattivo + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + Non aggiornato + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + Aspettativa di vita + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + Data di creazione stimata + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + Nome dispositivo + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons - Daemons + Daemon + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + Non è stato possibile recuperare i dati SMART. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + I dati ricevuti sono in formato JSON versione 2.x, che al momento la dashboard non supporta. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + Nessun dato SMART disponibile. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + Risultato test di autovalutazione dell'integrità generale SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + sconosciuto + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + superato + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + non superato + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + Informazioni dispositivo + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + Informazioni dispositivo non disponibili per questo dispositivo. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + Dati SMART non disponibili per questo dispositivo. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + Caricamento dati SMART in corso. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctl ha ricevuto un argomento sconosciuto (codice di errore ). La versione di smartmontools in uso potrebbe non essere compatibile. Per recuperare i dati correttamente, è necessaria la versione &gt;= 7.0 di smartmontools. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + Si è verificato un errore con codice di errore . + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + Non elaborato + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + Soglia + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + In caso di errore + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + Peggiore + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + Impostare una nuova password. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + Si verrà poi reindirizzati alla pagina di login. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + La vecchia e la nuova password devono essere diverse. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. - Password confirmation doesn't match the new password. + La password di conferma non corrisponde alla nuova password. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + Il nome utente è obbligatorio + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + La password è obbligatoria + + src/app/core/auth/login/login.component.html + 48 + Log in - Log in + Accedi + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + Ambito + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + Crea + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + Aggiorna + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + Elimina + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + Descrizione... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + Autorizzazioni + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + ruolo + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + Ruolo '' creato + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + Ruolo '' aggiornato + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role - System Role + Ruolo di sistema + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + Ruolo '' eliminato + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + Nuovo nome + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + Clona ruolo + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + Ruolo '' clonato da '' + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + Nome utente già esistente. + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + Conferma password + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + La password di conferma non corrisponde alla password. + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + Data di scadenza password + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + Data di scadenza password... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + E-mail + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + E-mail non valida. + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + L'utente deve modificare la password al prossimo accesso + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + Si stanno per rimuovere le autorizzazioni di "lettura/aggiornamento utente" dal proprio utente. + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + Se si continua, non sarà più possibile aggiungere o rimuovere ruoli da qualsiasi utente. + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + Nessun ruolo presente. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Created user ' - ' - + Created user '' + Utente '' creato + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + Aggiorna utente + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + Si è stati automaticamente disconnessi perché i ruoli sono stati modificati. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + Utente '' aggiornato + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + E-mail + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + Ruoli + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + Utente '' eliminato + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + Impossibile creare l'utente '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + Si è attualmente connessi come ''. + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + Vecchia password + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + Nuova password + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + Conferma nuova password + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password password + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + Password utente aggiornata + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + Object Gateway selezionato: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + Seleziona Object Gateway + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + Pagina non trovata + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + Non è stato possibile trovare l'elemento cercato. La pagina richiesta potrebbe essere stata modificata o spostata. + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + Passa al dashboard + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + Pagina non trovata + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + Non è stato possibile trovare l'elemento cercato. + La pagina richiesta potrebbe essere stata modificata o spostata. + + src/app/core/error/error.ts + 11,12 + Access Denied Accesso negato + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + Non si dispone dell'autorizzazione per visualizzare questa pagina o risorsa. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + Utente negato + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. L'utente non esiste in Ceph. Si viene disconnessi dal provider di identità quando si riprova a eseguire il login.. + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + Guida + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + Sicurezza + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + Marchi + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + Impostazioni del dashboard + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + Gestione utenti + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + Configurazione telemetria + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + Guida + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + documentazione + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + Informazioni su + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + Utente connesso + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + Modifica password + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + Attiva/Disattiva barra di navigazione + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + Mappa CRUSH + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + Compartimenti + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + File system + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + Log + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + Moduli Manager + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + Task e notifiche + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + Il nome del nodo in cui posizionare i dati. + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + Il tipo di nodi CRUSH su cui separare le repliche. + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + Ogni oggetto è suddiviso in porzioni di dati, ciascuna delle quali è memorizzata su un diverso OSD. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + Calcola le porzioni di codice relative a ciascun oggetto e le memorizza su diversi OSD. + Il numero di porzioni di codice è anche il numero degli OSD che è possibile declassare senza perdere i dati. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + Il plug-in jerasure è il plug-in più generico e flessibile, + ed è anche il plug-in di default dei pool con codice di cancellazione di Ceph. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + La tecnica più flessibile è reed_sol_van: è sufficiente impostare k + e m. La tecnica cauchy_good può essere più rapida, ma occorre selezionare attentamente le dimensioni del + pacchetto. reed_sol_r6_op, liberation, blaum_roth, liber8tion sono tutti equivalenti a RAID6, + nel senso che è possibile configurarli solo con m=2. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + La codifica viene eseguita su pacchetti di dimensioni in byte, uno alla volta. + È difficile scegliere le dimensioni del pacchetto corrette. + La documentazione su jerasure fornisce informazioni esaustive su questo argomento. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,15 +17319,19 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + Con il plug-in di jerasure, quando un oggetto con codice di cancellazione viene memorizzato su + più OSD, il recupero dalla perdita di un OSD richiede la lettura di tutti gli altri. + Ad esempio, se jerasure è configurato con k=8 e m=4, la perdita di un OSD richiede la lettura + degli altri undici per il ripristino. - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + Il plug-in del codice di cancellazione lrc crea porzioni di parità locali per poter eseguire il recupero utilizzando un + minor numero di OSD. Ad esempio, se lrc è configurato con k=8, m=4 e l=4, crea + una porzione di parità aggiuntiva ogni quattro OSD. Quando si perde un singolo OSD, è possibile + recuperarlo solo con quattro OSD invece che con undici. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, @@ -8850,62 +17340,98 @@ Raggruppa le porzioni di codice e dati in set di località dimensione. Ad esempio, per k=4 e m=2, se località=3 vengono creati due gruppi su tre. È possibile recuperare ciascun set senza leggere le porzioni di un altro set. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + Il tipo di compartimento Crush in cui viene memorizzato ciascun set di porzioni definito + dall'utente. Ad esempio, se è impostato su rack, ciascun gruppo di porzioni viene + posizionato in un diverso rack. Viene utilizzato per creare un passaggio della regola CRUSH, come il passaggio choose + rack. Se non è impostato, il raggruppamento non viene eseguito. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + Il plug-in ISA incapsula la libreria ISA. Viene eseguito solo su processori Intel. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + Il plug-in ISA è disponibile in due formati Reed Solomon. + Se è impostato reed_sol_van, il formato è Vandermonde, se è impostato cauchy, il formato è Cauchy. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + Il plug-in shec incapsula la libreria SHEC multipla. + Consente a Ceph di recuperare i dati in modo più efficiente rispetto ai codici Reed Solomon. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + Il numero di porzioni di parità, ciascuna delle quali include le singole porzioni di dati + nell'intervallo di calcolo. Il numero viene utilizzato come strumento di stima della durata. Ad esempio, se c=2, + è possibile disattivare 2 OSD senza perdere i dati. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + I codici CLAY (abbreviazione di Coupled-Layer, strati associati) sono codici di cancellazione progettati per + consentire notevoli risparmi in termini di larghezza di banda di rete e I/O su disco in caso di + riparazione di un nodo/OSD/rack con errori. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + Numero di OSD richiesto per l'invio dei dati durante il recupero di una singola porzione. + Occorre scegliere per d un valore equivalente a k+1 <= d <= k+m-1. Maggiore è il valore di d, maggiori + saranno i risparmi. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + scalar_mds consente di specificare il plug-in utilizzato come blocco predefinito + nella struttura a strati. Può essere uno tra jerasure, isa, shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8913,1738 +17439,2845 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + technique consente di specificare la tecnica scelta + all'interno del plug-in 'scalar_mds' specificato. Le tecniche supportate + sono 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', + 'cauchy_good', 'liber8tion' per jerasure, 'reed_sol_van', + 'cauchy' per isa e 'single', 'multiple' per shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + Il nome del compartimento Crush utilizzato per il primo passaggio della regola CRUSH. + Ad esempio il passaggio take default. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + Assicurarsi che non esistano due porzioni in un compartimento con lo stesso dominio + di errore. Ad esempio, se il dominio di errore è l'host, non verranno memorizzate due porzioni sullo stesso + host. Viene utilizzato per creare un passaggio della regola CRUSH, come il passaggio chooseleaf host. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. - Set the directory name from which the erasure code plugin is loaded. + Impostare il nome della directory da cui viene caricato il plug-in del codice di cancellazione. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + Consente tutte le operazioni + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + Consente solo le operazioni che non modificano il server + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + Non consente alcun accesso + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. - Please specify a filesystem volume. + Specificare un volume del file system. + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + La funzione è disabilitata perché Orchestrator non è disponibile. + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + Il backend di Orchestrator non supporta questa funzione. + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- Selezionare il livello di priorità -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + Bassa + + src/app/shared/api/osd.service.ts + 44 + High - High + Alta + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + I dati dell'elenco degli utenti potrebbero non essere aggiornati. Se necessario, è possibile ricaricarli manualmente. + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + Recupero dei dati per . + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + Recupero dei dati in corso. + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... Attendere... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + Visualizzazione dei dati presenti in cache per . + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + Visualizzazione dei dati presenti in cache. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + Impossibile caricare i dati per . + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + Impossibile caricare i dati. + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + Verificare l'integrità del cluster. + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + Errore + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + Informazioni + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + Operazione riuscita + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + Pericolo + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + Rimuovere il valore della configurazione personalizzata. Al suo posto verrà utilizzato il valore di default. + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + Il valore immesso è troppo alto. Non deve essere maggiore di . + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + Il valore immesso è troppo basso. Non deve essere minore di . + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + Copia negli appunti + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + Si desidera ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + Si desidera gli elementi selezionati? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + Si desidera l'elemento selezionato? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. - Yes, I am sure. + Sì. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation - documentation + documentazione + + src/app/shared/components/doc/doc.component.ts + 12 + Download - Download + Effettua download + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + Questo campo è obbligatorio. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + Si è verificato un errore. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + Caricamento dati pannello in corso... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + Consultare per informazioni su come configurare e abilitare la funzionalità di monitoraggio. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + Il dashboard di Grafana non esiste. Consultare per informazioni su come aggiungere dashboard a Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Impostazione orario di Grafana + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + Ripristina impostazioni + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + Ultima ora (Default) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday - Yesterday + Ieri + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + Fino a oggi + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + Giorno prima di ieri + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + Ultimi 2 giorni + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + Questo giorno della scorsa settimana + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week - Previous week + Settimana precedente + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + Fino a questa settimana + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + Ultimi 7 giorni + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + Mese precedente + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + Fino a questo mese + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + Ultimi 30 giorni + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + Ultimi 90 giorni + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + Ultimi 6 mesi + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + Ultimo anno + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + Anno precedente + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + Fino a quest'anno + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + Ultimi 2 anni + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + Ultimi 5 anni + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + Selezionare una lingua + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + Annulla notifiche + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + Rimuovi notifica + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + Durata: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + Nessuna notifica presente. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + La funzione non è supportata nell'Orchestrator corrente. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + Orchestrator non è disponibile. Consultare per informazioni su come configurare e abilitare la funzionalità. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + La password scade tra meno di 1 giorno. Fare clic qui per modificarla adesso. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + La password scade tra giorno/i. Fare clic qui per modificarla adesso. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + Aggiorna + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + Nessun elemento selezionato. + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + Deselezionare l'elemento per selezionare di nuovo + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + Raggiunto il limite per la selezione + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + Filtra tag + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + Aggiungi badge + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + Nessun elemento disponibile. + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + La comunità Ceph ha bisogno del tuo aiuto per continuare a migliorare: ti invitiamo ad Attivare il modulo di Telemetria. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + Audio del promemoria di attivazione telemetria disattivato + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + È possibile attivare il modulo nella pagina Configurazione telemetria (<b>Impostazioni dashboard</b> -> <b>Configurazione telemetria</b>) in qualsiasi momento. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export - Export + Esportazione + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + Importa + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + Aggiungi + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + Imposta + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + Invia + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + Rimuovi + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + Annulla impostazione + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + Annulla + + src/app/shared/constants/app.constants.ts + 176 + Preview - Preview + Anteprima + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + Sposta + + src/app/shared/constants/app.constants.ts + 178 + Next - Next + Avanti + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + Indietro + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + Clona + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + Copia + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + Pulitura approfondita + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + Elimina definitivamente + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + Rimuovi + + src/app/shared/constants/app.constants.ts + 189 + Flatten - Flatten + Appiattisci + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + Declassa + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + Attiva + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + Contrassegna come perso + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + Disattiva + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + Proteggi + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + Rinomina + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + Ripristina + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + Ripesa + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + Pulitura + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + Mostra + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + Sposta nel cestino + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + Rimuovi protezione + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + Modifica + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + Entra in manutenzione + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + Esci dalla manutenzione + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + Avvia svuotamento + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain - Stop Drain + Arresta svuotamento + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + Ricrea + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + Scadenza + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + Disattiva + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + Eliminato + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + Aggiunto + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + Rimosso + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + Modificato + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + Annullato + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + Visualizzato in anteprima + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + Spostato + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + Clonato + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + Copiato + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + Pulito approfonditamente + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + Eliminato definitivamente + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + Appiattito + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + Declassato + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + Attivato + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + Contrassegnato come perso + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + Disattivato + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + Con protezione + + src/app/shared/constants/app.constants.ts + 313 + Purged - Purged + Eliminato definitivamente + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + Rinominato + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + Ripristinato + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + Ripesato + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + Rollback eseguito + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + Pulito + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + Mostrato + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + Spostato nel cestino + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + Senza protezione + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + Ricreato + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + Scaduto + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + Chiudi + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + Annulla filtri + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + selezionato + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + trovato + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total - total - X total + totale + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row - Expand/Collapse Row + Espandi/Comprimi riga + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + Non è stato possibile caricare i dati. + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + Caricamento dei dati del modulo in corso... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + Impossibile caricare i dati del modulo. + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + La dimensione deve essere non superiore a + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + La dimensione deve essere non superiore a + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + Sì + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No No + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + entro %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + %s fa + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + pochi secondi + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d secondi + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + un minuto + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + %d minuti + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + un'ora + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d ore + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + un giorno + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d giorni + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + una settimana + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d settimane + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + un mese + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months - %d months + %d mesi + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year - a year + un anno + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d anni + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + Regole obbligatorie per le password: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Must contain at least - characters - + Must contain at least characters + Deve contenere almeno caratteri + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + Non deve essere uguale alla precedente + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + Non può contenere il nome utente + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + Non può contenere nessuna tra le parole chiave configurate + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + Non può contenere caratteri ripetuti ad es. "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + Non può contenere caratteri in sequenza ad es. "abc" + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + Deve contenere caratteri dei gruppi seguenti: + * Lettere alfabetiche: a-z, A-Z + * Numeri: 0-9 + * Caratteri speciali: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Altri caratteri (simboli) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + Sembra che il matcher non trovi nessuna corrispondenza con la regola attualmente definita o con l'avviso attivo. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts - no active alerts + nessun avviso attivo + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1 avviso attivo + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + avvisi attivi + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + Corrispondenza con 1 regola + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + Corrispondenza con regole + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + con . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + Qualità di servizio + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + Limite di BPS + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + Il limite desiderato di byte I/O al secondo. + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + Limite di IOPS + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + Il limite desiderato di operazioni I/O al secondo. + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + Limite BPS in lettura + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + Il limite desiderato di byte letti al secondo. + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + Limite di IOPS in lettura + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + Il limite desiderato di operazioni di lettura al secondo. + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + Limite di BPS in scrittura + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + Il limite desiderato di byte scritti al secondo. + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + Limite di IOPS in scrittura + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + Il limite desiderato di operazioni di scrittura al secondo. + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + Burst BPS + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + Il limite desiderato di burst dei byte di I/O. + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + Burst IOPS + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + Il limite desiderato di burst delle operazioni di I/O. + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + Burst BPS in lettura + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + Il limite desiderato di burst dei byte letti. + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + Burst IOPS in lettura + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + Il limite desiderato di burst delle operazioni di lettura. + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + Burst BPS in scrittura + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + Il limite desiderato di burst dei byte scritti. + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + Burst di IOPS in scrittura + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + Il limite desiderato di burst delle operazioni di scrittura. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + Impossibile + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + In esecuzione + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + esegui + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + Eseguito + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + task sconosciuto + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + Creazione + + src/app/shared/services/task-message.service.ts + 67 + create - create + crea + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + Aggiornamento + + src/app/shared/services/task-message.service.ts + 68 + update - update + aggiorna + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + Eliminazione + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding - Adding + Aggiunta + + src/app/shared/services/task-message.service.ts + 70 + add - add + aggiungi + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + In rimozione + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + rimuovi + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + Importazione + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + importa + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + Importato + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + snapshot RBD '@' + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + nome sito copia speculare + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + token di bootstrap + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + modalità di copia speculare per il pool '' + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + peer della copia speculare per il pool '' + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + tutti i dashboard + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + Identificazione + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + identifica + + src/app/shared/services/task-message.service.ts + 133 + Identified Identificato + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + dispositivo '' sull'host '' + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + OSD (DriveGroup: ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + Il nome è già utilizzato da . + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + è occupato. + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + contiene snapshot. + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + Clonazione in corso + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + clona + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + La snapshot di deve essere protetta. + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + Copia + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + copia + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + Appiattimento + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + appiattisci + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + Impossibile rimuovere la protezione da perché contiene immagini secondarie. + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + Impossibile eliminare perché è protetto. + + src/app/shared/services/task-message.service.ts + 243 + Rolling back Rollback + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + esegui rollback + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + Spostamento + + src/app/shared/services/task-message.service.ts + 256 + move - move + sposta + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + immagine '' nel cestino + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. - Could not find image. + Impossibile trovare l'immagine. + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + Ripristino + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + ripristina + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + immagine '' in '' + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + Image name '' is already in use. + Il nome immagine '' è già in uso. + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + immagine '' + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + Eliminazione definitiva + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + elimina definitivamente + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + tutti i pool + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + immagini da + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + Impossibile disabilitare l'esecuzione della copia speculare perché contiene un peer. + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - host ' - ' - + host '' + host '' + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + pool '' + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + profilo del codice di cancellazione '' + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + regola Crush '' + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + destinazione '' + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + NFS ':' + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.ja-JP.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.ja-JP.xlf index 1cc738abdd8..75b0f00ac22 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.ja-JP.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.ja-JP.xlf @@ -1,8827 +1,17314 @@ - - + + Close - Close + 閉じる + + node_modules/src/ngb-config.ts + 13 + HH HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + 閉じる + + node_modules/src/ngb-config.ts + 13 + «« «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + 月を選択 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + 前月 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours - Hours + 時間 + + node_modules/src/ngb-config.ts + 13 + « « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + 前へ + + node_modules/src/ngb-config.ts + 13 + MM MM + + node_modules/src/ngb-config.ts + 13 + » » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + 年を選択 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + 来月 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + 次へ + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + 分 + + node_modules/src/ngb-config.ts + 13 + »» »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + 時間を増やす + + node_modules/src/ngb-config.ts + 13 + First - First + 最初へ + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + 前へ + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + 時間を減らす + + node_modules/src/ngb-config.ts + 13 + Next - Next + 次へ + + node_modules/src/ngb-config.ts + 13 + Increment minutes - Increment minutes + 分を増やす + + node_modules/src/ngb-config.ts + 13 + Last - Last + 最後へ + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + 分を減らす + + node_modules/src/ngb-config.ts + 13 + SS SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + 秒 + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + 秒を増やす + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + 秒を減らす + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + 以上である必要があります。 + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + 以下である必要があります。 + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + 概要 + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets ターゲット + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology - iSCSI Topology + iSCSIトポロジ + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + 名前 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + 現在 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + デフォルト + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication - Discovery Authentication + 検出認証 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + ユーザ + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + このフィールドは必須です。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + ユーザ名の長さは8〜64文字で、英数字、「.」、「@」、「-」、「_」、または「:」を含めることができます。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + パスワード + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + パスワードの長さは12〜16文字で、英数字、「@」、「-」、「_」、または「/」を含めることができます。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + 相互ユーザ + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + 相互パスワード + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + 検出認証を更新しました + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + ターゲットIQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + IQNのパターンが正しくありません。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + IQNは「iqn.$year-$month.$reversedAddress:$definedName」という形式で表記されます。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + 例: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + 詳細情報 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + このターゲットの詳細設定は変更されています。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + ポータル + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + ポータルの追加 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + 少なくとも台のゲートウェイが必要です。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images イメージ + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + バックストア: 。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + このイメージの設定は変更されています。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + 重複したLUN番号。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + 重複したWWN。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + イメージの追加 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + ACL認証 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + ユーザ名の長さは8〜64文字で、英数字、「.」、「@」、「-」、「_」、または「:」を含めることができます。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + パスワードの長さは12〜16文字で、英数字、「@」、「-」、「_」、または「/」を含めることができます。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + イニシエータ + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + イニシエータ + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + クライアントIQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + イニシエータIQNは一意である必要があります。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + ユーザ名の長さは8〜64文字で、英数字、「.」、「@」、「-」、「_」、または「:」を含めることができます。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + パスワードの長さは12〜16文字で、英数字、「@」、「-」、「_」、または「/」を含めることができます。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + イニシエータはいずれかのグループに属します。イメージはそのグループ内で設定されます。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + アイテムが追加されていません。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + イニシエータの追加 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + グループ + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + グループ + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + 名前 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + グループの追加 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. 使用可能なポータルはありません。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + 使用可能なイメージはありません。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. 使用可能なイメージはありません。ターゲットにイメージを追加したことを確認してください。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. 使用可能なイニシエータはありません。ターゲットにイニシエータを追加したことを確認してください。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + ターゲット + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + 設定 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + 通常はこれらのパラメータをデフォルト値から変更する必要はありません。 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + 識別子 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun - lun + LUN + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn WWN + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + 設定 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore - Backstore + バックストア + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + 詳細設定 + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + 使用可能なiSCSIターゲットがありません + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + iSCSIターゲットの管理機能を設定および有効化する方法については、を参照してください。 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + 取得可能な情報: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + 検出認証 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + ターゲット + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + ポータル + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + イメージ + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions - # Sessions + セッション数 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + 使用できないゲートウェイ + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + ターゲットにはアクティブなセッションがあります + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + iSCSIターゲット + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + ゲートウェイ + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + 状態 + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + ターゲット数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool - Pool + プール + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image - Image + イメージ + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore - Backstore + バックストア + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + 読み取りバイト数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + 書き込みバイト数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + 読み取り操作数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + 書き込み操作数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + 次の日付以降のA/O + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token - Create Bootstrap Token + ブートストラップトークンの作成 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - ピアサイトクラスタでインポートできるブートストラップトークンを作成するには、ローカルサイトの名前を入力し、ミラーリングを有効にするプールを選択して、 - [生成] - をクリックします。 - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + ピアサイトクラスタでインポートできるブートストラップトークンを作成するには、ローカルサイトの名前を入力し、ミラーリングを有効にするプールを選択して、[生成]をクリックします。 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + サイト名 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + 名前... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + プール + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + 少なくとも1つのプールが必要です。 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + 生成 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + トークン + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + 生成されたトークン... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + 閉じる + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + ブートストラップトークンのインポート + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + ピアサイトクラスタで作成されたブートストラップトークンをインポートするには、ローカルサイトの名前を入力し、ミラーリングを有効にするプールを選択して、[インポート]をクリックします。 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + 方向 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + トークンは無効です。 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + インスタンス + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname - Hostname + ホスト名 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version - Version + バージョン + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + ヘルス + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + 問題 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + 進捗 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description - Description + 説明 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons - Daemons + デーモン + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + ブートストラップトークンの作成 + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + ブートストラップトークンのインポート + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + プールのミラーモードの編集 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + プールのミラーモードを編集するには、リストから新しいモードを選択して、[更新]をクリックします。 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + モード + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + ミラーを無効にする前に、ピアクラスタを削除する必要があります。 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + 無効化済み + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} {VAR_SELECT, select, edit {Edit} other {Add}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + プールミラーピア + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + プールのプールミラーピア属性、および[送信]をクリックします。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + クラスタ名 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + このクラスタ名は無効です。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID CephX ID + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... CephX ID... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + このCephX IDは無効です。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + モニターアドレス + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + カンマ区切りアドレス... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + この警告アドレスは無効です。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key - CephX Key + CephXキー + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Base64エンコード化済みキー... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. - CephX key must be base64 encoded. + CephXキーはbase64でエンコードされている必要があります。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + #ローカル + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + #リモート + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + モードの編集 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer ピアの追加 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer - Edit Peer + ピアの編集 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + ピアの削除 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode モード + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader リーダー + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + #ローカル + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + #リモート + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + ミラーピア + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + ポート + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + イニシエータ + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + 読み込んでいます... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host - Host + ホスト + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport - Transport + トランスポート + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool - Pool + プール + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- - -- Select a pool -- + -- プールを選択してください -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + 「/」と「@」は使用できません。 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + ネームスペース + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + 詳細 + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + ネームスペース + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. - The value must be at least 1. + 値は1以上にする必要があります。 + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration RBD設定 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. - Remove the local configuration value. The parent configuration value will be inherited and used instead. + ローカル設定値を削除します。親設定値が継承されて代わりに使用されます。 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + 最小値は0です + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global - Global + グローバル + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + イメージ + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + キー + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + ソース + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + 値 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + 高速差分が有効になっているRBDイメージのみに使用できます + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + データプール + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + 作成済み + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + サイズ + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + オブジェクト数 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + オブジェクトサイズ + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + 機能 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + プロビジョニング済み + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A - N/A + なし + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned - Total provisioned + プロビジョニング済み合計 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + ストライピング単位 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + ストライピング数 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + 親 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + ブロック名のプレフィックス + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + 順番 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + フォーマットバージョン + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + スナップショット + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + 設定 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + パフォーマンス + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + ステータス「削除中」のRBDの情報は表示できません。 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + この設定はグローバル値よりも優先されます + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + これはグローバル値です。このイメージについて、このオプションの値は設定されていません。 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + 専用のデータプールを使用するには、rbdアプリケーションラベルを使用する複数のプールが必要です。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- 使用可能なデータプールがありません -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- 使用可能なネームスペースがありません -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- ネームスペースを選択してください -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + サイズを大きくする必要があります。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping - Striping + ストライピング + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- ストライプ単位を選択してください -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + ストライプ数が定義されているため、このフィールドは必須です。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + ストライプ単位がオブジェクトサイズより大きいです。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + ストライプ単位が定義されているため、このフィールドは必須です。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + ストライプ数は0より大きい必要があります。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + ディープフラット化 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + 階層化 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + 排他ロック + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + オブジェクトマップ(排他ロックが必要) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + 高速差分(オブジェクトマップと連動) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + このイメージを削除すると、そのすべてのスナップショットも削除されます。 + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + 次のスナップショットは現在保護されており、削除されます。 + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + ステータス「削除中」のRBD + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + サイズ + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + 使用量 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + オブジェクト数 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + オブジェクトサイズ + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + 親 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + ミラーリング + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + 警告 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + このRBDはスナップショットのクローンを作成しました。このRBDを削除する前に関連するRBDを削除してください。 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + このRBDイメージの名前は無効であり、cephで管理できません。 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + ステータスが「削除中」のRBDではアクションを実行できません + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + ネームスペースの作成 + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- 使用可能なrbdプールがありません -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. - Namespace already exists. + ネームスペースはすでに存在します。 + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + ネームスペース「/」を作成しました + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + 合計イメージ数 + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + ネームスペース「/」を削除しました + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + ネームスペースにはイメージが含まれています + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + RBDスナップショット + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + クローンを作成するには、スナップショットを保護する必要があります。 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + ロールバックしようとしています + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + 使用済み + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + 保護済み + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + 未保護 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + 作成済み + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + RBDスナップショットのロールバック + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + ロールバック + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + RBDスナップショット + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + ごみ箱 + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + 全体的なパフォーマンス + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + ごみ箱を空にする + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + 失効日 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + 保護の終了日 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + このイメージはまで保護されます。 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status - Status + ステータス + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At - Deleted At + 削除日時 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + イメージをごみ箱に移動する + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + このイメージにはスナップショットが含まれているため、ごみ箱に移動した後にイメージが削除されることはありません。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + をごみ箱に移動するには、[移動]をクリックします。希望に応じて、失効日を選択できます。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + 保護の失効日 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + 保護されていません + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + 日付の形式が正しくありません。「YYYY-MM-DD HH:mm:ss」という形式を使用してください。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + 保護はすでに失効しています。将来の日付を選択するか、日付を空白のままにしてください。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + 空にするには、すべてまたは1つのプールを選択して、[消去]をクリックします。 + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: - Pool: + プール: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + プール名... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + すべて + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + イメージの復元 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + @を復元するには、イメージの新しい名前を入力して、[復元]をクリックします。 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + 新しい名前 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + このフィールドは必須です。 + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id id + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + タイプ + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + 状態 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + バージョン + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + ルート + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + クライアント「」を削除しました + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + ランク + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + スタンバイ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + MDSパフォーマンスカウンタ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + スタンバイデーモン + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + ランク + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon - Daemon + デーモン + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + アクティビティ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries dエントリ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + iノード + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + ディレクトリ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + 大文字 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + タイプ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + クォータ + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + 元 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + パス + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + サブボリュームにファイル/フォルダのスナップショットを作成できません + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + 最大サイズ + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + 最大ファイル数 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + 継承されたは使用される最大値です。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + 保存 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + 「」のCephFSクオータ + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + サイズ + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + ファイル数 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + 「」からのクォータ + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + 値は少なくとも0以上である必要があります + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + 値は以下にする必要があります + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + 更新済み + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - - を継承するため - + in order to inherit + を継承するため + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + を継承するため使用されていません + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + ディレクトリにクォータがないようにするため + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + 。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + スナップショットの作成 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + スナップショットの名前を入力してください。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + 「」のスナップショット「」を作成しました + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + CephFSスナップショット + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + 「」のスナップショット「」を削除しました + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + 配置 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + ホスト + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label ラベル + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + ホストはありません。 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + ホストのフィルタリング + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled - Enabled + 有効化済み + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + 開始時刻 + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + 再接続していますので、しばらくお待ちください... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + デフォルト + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + 例: 10GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + すべて + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + 読み取り + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute 実行 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + データプール + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + ディレクトリ + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + クライアント + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + パフォーマンスの詳細 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + 説明 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + 長い説明 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values 現行値 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + デーモンのデフォルト + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + タイプ + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + 最小 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + 最大 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + フラグ + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + サービス + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source - Source + ソース + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + レベル + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + 実行時に更新できます(編集可能) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + タグ + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + 列挙値 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + 関連項目 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + この値は実行時に更新できます。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + デーモン/クライアントはこの値をモニター設定データベースから取得しません。 +このオプションを「ceph config set ...」を通じて設定することは禁止されています。 +このオプションは、ceph.confまたはコマンドラインを通じて +設定する必要があります。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + オプションはデーモン始動時のみに有効になります。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + オプションはクラスタの作成のみに適用されます。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + オプションはデーモンの作成のみに適用されます。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + 値 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + -- デフォルト -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true true + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false false + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + 入力された値は大きすぎます。より大きい値を入力することはできません。 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 入力された値は小さすぎます。より小さい値を入力することはできません。 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - 設定オプション - を更新しました - + Updated config option + 設定オプションを更新しました + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + 変更済み + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + レベル + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service - Service - - - Modified - Modified + サービス + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + 現行値 + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + 編集可能 + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + クラスタリソース + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + ストレージ容量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + デバイスの数 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + 未フォーマット時の容量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs - CPUs + CPU + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + メモリ + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + ホストの詳細 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + へようこそ + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + 最初にクラスタを拡張してください + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + クラスタを拡張 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + スキップ + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + ホストを追加 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + OSDを作成する + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + サービスを作成 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + クラスタ拡張プロセスをスキップしようとしています。メニュー内を移動して、ホストとサービスを追加する必要があります。 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + 続行してもよろしいですか? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + 続行 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + クラスタ拡張がユーザによってスキップされました + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + クラスタ拡張に成功しました + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + クラスタを拡張 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + CRUSHマップビューア + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + デバイス + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + 物理ディスク + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + デバイスヘルス + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + ホスト名が見つかりません。 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + ホスト名 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + 一度に複数のホストを追加するには、次のように入力します。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + ホスト名のカンマ区切りリスト(例: example-01,example-02,example-03)、 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + 範囲式(例: example-[01-03].ceph)、 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + カンマ区切りの範囲式(例: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + 選択されたホスト名はすでに使用されています。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + ネットワークアドレス + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + 値は有効なIPアドレスではありません。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + ラベル + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + 保守モード + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + ラベルはありません。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + ラベルのフィルタリングまたは追加 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label ラベルの追加 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host - host + ホスト + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + ホストリスト + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + Orchestratorが利用できる場合にのみ、データが利用できます。 + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + SSD、NVME + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash - Flash + フラッシュ + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + 選択したホストがOrchestratorによって管理されていないため、この機能は無効になっています。 + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + ラベル + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + モデル + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + CPU + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + コア + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + 合計メモリ + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity 未フォーマット時の容量 + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + HDD + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash - Flash + フラッシュ + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + NIC + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + ホストの編集: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + ホストの編集 + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + ホスト「」を更新しました + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + 「」が保守に移動されました + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + 「」は保守できません + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - 「 - 」は保守を終了しました - + "" has exited maintenance + 「」は保守を終了しました + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + 「」はドレインを停止しました + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + 「」はドレインを開始しました + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + 識別 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + デバイスパス + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + 使用可能 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + ベンダー + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + OSD + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + デバイスの識別 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + LEDを点滅させる時間を入力してください。 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + 1分 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + 2分 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + 5分 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + 10分 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + 15分 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + ホスト「」の識別がホスト「」で開始されました + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + クラスタログ + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + 監査ログ + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + 優先度: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + キーワード: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + 日付: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + 時刻の範囲: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + ログエントリが見つかりません。別のフィルタオプションを選択してみてください。 + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + フィルタをリセットします。 + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module - Edit Manager module + マネージャモジュールの編集 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + 入力された値は有効なUUIDではありません(有効なUUIDの例: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8)。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + 有効なIPアドレスを入力する必要があります。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - 入力された値は大きすぎます。 - 以下の値を入力する必要があります。 - + The entered value is too high! It must be lower or equal to . + 入力された値は大きすぎます。以下の値を入力する必要があります。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + 入力された値は小さすぎます。以上の値を入力する必要があります。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. 数字を入力する必要があります。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + 数字または小数を入力する必要があります。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + モジュール「」のオプションを更新しました。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + 常にオン + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + 編集 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + 有効化 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + 無効化 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + このマネージャモジュールは常にオンになっています。 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status ステータス + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + クラスタID + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + monmapが変更されました + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + monmapエポック + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con - quorum con + 定数con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon - quorum mon + 定数mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con 必須のcon + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + 必須のmon + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + 定数内 + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + 非定数内 + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + パブリックアドレス + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + セッションの開始 + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + OSD作成プレビュー + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + 属性(OSDマップ) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + メタデータ + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + メタデータを使用できません + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + パフォーマンスカウンタ + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + デバイス + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + プライマリストレージデバイス。これらのデバイスにはすべてのOSDデータが含まれています。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. Write-Ahead-Logデバイス。これらのデバイスは、BlueStoreの内部ジャーナルに使用されます。WALデバイスを使用するのは、デバイスがプライマリデバイス(NVMEデバイスやSSDなど)より高速である場合にのみ役立ちます。使用可能な高速ストレージが少量(ギガバイト未満など)の場合は、WALデバイスとして使用することをお勧めします。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + DBデバイスは、BlueStoreの内部メタデータの保存に使用できます。DBデバイスのプロビジョニングは、プライマリデバイス(NVMEデバイスやSSDなど)より高速である場合にのみ役立ちます。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + 追加 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + クリア + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + 未フォーマット時の容量: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + 利用可能なデバイスがありません + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + 最初にプライマリデバイスを追加してください + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters - Add devices by using filters + フィルタを使用してデバイスを追加します + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + デバイス + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + 続行するには、これらのフィルタの少なくとも1つを適用する必要があります。 + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + デバイス数: 。未フォーマット時の容量: 。 + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + 個々のOSDフラグ + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + クラスタ全体 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + 以前の選択の復元 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + アップなし + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + OSDを始動することは許可されていません + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + ダウンなし + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + OSDの障害レポートは無視されているため、OSDはモニターによってダウンとしてマークされません + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + インなし + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + 以前にアウトとしてマークされたOSDは、それらの始動時にインとしてマークされることはありません + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + アウトなし + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + OSDは、設定済みの間隔が経過した後に自動的にアウトとしてマークされません + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + フラグはクラスタ全体で有効になっています。 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + OSDフラグを更新しました + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + クラスタ全体のOSDフラグ + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + 一時停止 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes - Pauses reads and writes + 読み取りと書き込みを一時停止します + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + スクラブなし + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + スクラブ処理は無効化されています + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + ディープスクラブなし + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + ディープスクラブ処理は無効化されています + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + バックフィルなし + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended 配置グループのバックフィルは中断されています + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + リバランスなし + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + 配置グループも降格されない限り、OSDはバックフィルを選択しません + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + 回復なし + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + 配置グループの回復は中断されています + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + ビット単位のソート + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort - Use bitwise sort + ビット単位のソートを使用する + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + 消去されたスナップディレクトリ + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + OSDによってスナップセットが変換されました + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + 回復の削除 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + ピアリングの代わりに回復時に削除が実行されました + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + 配置グループログのハード制限 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + 配置グループログ長のハード制限を適用します + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices - Shared devices + 共有デバイス + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + WALスロット + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + WALデバイスごとのOSDの数。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + Orchestratorバックエンドに決定させるには、0を指定してください。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + 値は0以上である必要があります + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + DBスロット + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + DBデバイスごとのOSDの数。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption 暗号化 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + OSDリスト + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + 続行した場合、OSDはとマークされます。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} {VAR_SELECT, select, true {OSD is} other {OSDs are}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + 続行した場合は、OSDはされます。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + 交換用にOSD IDを保持します。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + アウト + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + イン + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + ダウン + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + マーク + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + 喪失したOSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + 喪失としてマーク済み + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + 消去 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + 消去済み + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + 破棄 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + 破棄済み + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + フラグ + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + 回復優先度 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + 配置グループスクラブ + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + デバイスクラス + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + 配置グループ数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + 読み取りバイト数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + 書き込みバイト数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops - Read ops + 読み取り操作数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + 書き込み操作数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + OSDの編集: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + OSDの編集 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + OSD「」を更新しました + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + OSDをマーク + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + をマーク + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + 削除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + 削除済み + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + 詳細... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + 高度な設定オプション + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + 配置グループスクラブオプション + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + 配置グループスクラブオプションを更新しました + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + OSD回復優先度 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + 優先度 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + 優先度値のカスタマイズ + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + 入力された値は大きすぎます。より大きい値を入力することはできません。 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 入力された値は小さすぎます。より小さい値を入力することはできません。 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + 最大バックフィル数 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active - Recovery Max Active + 回復最大アクティブ + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + 回復最大単一始動 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + 回復スリープ + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + カスタム + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + OSDの回復速度優先度「」を更新しました + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + 再重みづけOSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + 値は0と1の間である必要があります。 + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSDs - Scrub - + OSDs Scrub + OSD スクラブ + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} {VAR_SELECT, select, true {Deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + スクラブをOSD に適用しようとしています。 + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} {VAR_SELECT, select, true {deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + は次のOSDで初期化されました: + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + すべてのアクティブなPrometheusアラートを表示するには、の説明に従って、PrometheusのAlertmanagerのAPIにURLを提供してください。 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + サイレンスの作成 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + 重大度 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + 始動済み + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + アラート + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + サイレンス + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + すべての設定済みのPrometheusアラートを表示するには、の説明に従って、PrometheusのAPIにURLを提供してください。 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + グループ + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + 期間 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + クエリ + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + 編集 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + 削除 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + サイレンスを編集すると、古いサイレンスが期限切れになり、新しいサイレンスとして再作成されます + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + 作成者 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + コメント + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + 開始時刻 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + 開始時刻が過去の場合は作成時刻が使用されます + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + 期間 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + 終了時刻 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + マッチャー + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + サイレンスには少なくとも1つのマッチャーが必要です + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + マッチャーの追加 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + サイレンス + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + 属性名 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + 正規表現 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + ダッシュボード設定にPrometheusホストを追加して、ページを更新してください + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + サイレンスを有効にするには、の説明に従ってPrometheusのAlertmanagerのAPIにURLを提供してください。 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + 作成者 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + 終了 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + サイレンス + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} {VAR_SELECT, select, true {Edit} other {Add}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + マッチャー + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + -- 一致する属性を選択してください -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + 値 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + 正規表現を使う + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + 仕様なし + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + 管理対象外 + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + カウント: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + ラベル: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + サービスイベント + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + 最終更新日時 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + デーモンイベント + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + サービス名 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + サービスタイプ + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + サービスイベント + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- サービスタイプを選択してください -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + バックエンドサービス + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- - -- No service available -- + -- 使用可能なサービスがありません -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + サービス名 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + レルム + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + ゾーングループ + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + ゾーン + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + 管理対象外 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + カウント + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + ポート + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + 値は65535を超えることはできません。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- 使用可能なポートがありません -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + 信頼されたIP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + IPアドレスのカンマ区切りリスト。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - - Ceph Manager - IPアドレスをここに追加してください。追加しないと、iSCSIゲートウェイに到達できません。 - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + Ceph Manager IPアドレスをここに追加してください。追加しないと、iSCSIゲートウェイに到達できません。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + 仮想IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + 入力サービスが使用可能になる仮想IPアドレスとサブネット(CIDR表記)。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + フロントエンドポート + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + 入力サービスへのアクセスに使用されるポート。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + モニターポート + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + ロードバランサの状態のためにhaproxyが使用するポート。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + CIDRネットワーク + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + 仮想IPアドレスに使用するネットワークインターフェイスを識別するためのネットワークのリスト。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + バージョン + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + -- SNMPバージョンを選択してください -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + 宛先 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. hostname:portの形式にする必要があります + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + 値がパターンhostname:portと一致しません + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + エンジンID + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + デバイスの固有の識別子(16進数)。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + 値がパターンと一致しません。16進数で指定し、長さは2の倍数で、最小値は10および最大値は64にする必要があります。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + 認証プロトコル + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- -- 認証プロトコルを選択してください -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + プライバシープロトコル + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + -- プライバシープロトコルを選択してください -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + 資格情報 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + SNMPコミュニティ + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + ユーザ名 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + 暗号化 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + 証明書 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + PEM形式のSSL証明書。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. SSL証明書が無効です。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + 秘密鍵 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + PEM形式のSSL秘密鍵。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + SSL秘密鍵が無効です。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + サービス + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + 配置 + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + 実行中 + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + ステップ/2: テレメトリレポートの設定 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + テレメトリモジュールは、このCephクラスタに関する匿名データをCeph開発者に送信します。これは、Cephの使用方法とユーザが直面している可能性のある問題を理解するのに役立ちます。このデータは、パブリックダッシュボードに視覚化され、これにより、コミュニティは、報告しているクラスタの数、合計容量、OSD数、バージョン配布トレンドに関するサマリ統計をすばやく確認できます。報告されるデータにはプール名、オブジェクト名、オブジェクトの内容、ホスト名、デバイスのシリアル番号などの機密データは含まれていません。これには、クラスタの展開方法、Cephのバージョン、ホストの分布、およびプロジェクトがCephの使用方法をよりよく理解するのに役立つその他のパラメータに関するカウンタと統計が含まれています。データはと(デバイスレポート)にセキュリティ保護されて送信されます。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + 無効にする + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + チャネル + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. テレメトリレポートはいくつかの「チャネル」に分割され、それぞれに以下で設定可能な異なるタイプの情報が含まれています。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + 基本 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: クラスタに関する基本情報が含まれます。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + クラスタの容量 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + モニター、マネージャ、OSD、MDS、オブジェクトゲートウェイ、またはその他のデーモンの数 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + 現在使用されているソフトウェアバージョン + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + RADOSプールおよびCephFSファイルシステムの数とタイプ + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + デフォルトから変更された設定オプションの名前(値ではない) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + クラッシュ + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: - Includes information about daemon crashes: + デーモンクラッシュに関する情報が含まれます。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + デーモンのタイプ + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + デーモンのバージョン + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + オペレーティングシステム(OS配布、カーネルバージョン) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + Cephコードのどこでクラッシュが発生したかを特定するスタックトレース + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + デバイス + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + 匿名化されたSMARTメトリックなどのデバイスメトリックに関する情報が含まれます。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident Ident + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + クラスタに関するユーザ提供の識別情報が含まれます。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + 連絡先データ + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + 連絡先データの送信は完全にオプションで、デフォルトで無効になっています。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + 連絡先 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + 初のCephクラスタ + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + 組織 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name 組織名 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + 間隔 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + モジュールは、デフォルトで24時間ごとに新しいレポートをコンパイルして送信します。別の時間数を設定することで、この間隔を調整できます。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. 入力された値は小さすぎます。8以上の値を入力する必要があります。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy プロキシ + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + クラスタが設定済みのテレメトリエンドポイント(デフォルトのtelemetry.ceph.com)に直接接続できない場合、https://10.0.0.1:8080を追加するなどして、HTTP/HTTPSプロキシサーバを設定できます + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + 必要に応じてuser:passを含めることもできます。例: https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - メモ: - [次へ]をクリックすると、データの自動送信を有効にする前に、最初にレポートコンテンツのプレビューが表示されます。 - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + メモ: [次へ]をクリックすると、データの自動送信を有効にする前に、最初にレポートコンテンツのプレビューが表示されます。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + ステップ/2: テレメトリレポートのプレビュー + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + レポートID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + いくつかのテレメトリレポートの過程で特定のクラスタを識別するためのランダム化されたUUID。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + 送信される実際のテレメトリデータ。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + Community Data License Agreement - Sharing - Version 1.0に基づいて送信されるテレメトリデータに同意します + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + テレメトリモジュールが設定され、正常に有効化されました。 + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + テレメトリ モジュール設定の更新中にエラーが発生しました。 もう一度お試しください + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + 戻る + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + 一時停止 + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + クラスタのステータス + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + 直前の5分間 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + 直前の15分間 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + 直前の30分間 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours - Last 3 hours + 直前の3時間 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + 直前の6時間 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + 直前の12時間 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + 直前の24時間 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster - Cluster + クラスタ + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + 危険 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning - Warning + 警告 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + モニター + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + OSD + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + マネージャ + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + オブジェクトゲートウェイ + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + メタデータサーバ + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + iSCSIゲートウェイ + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + 容量 + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity - Raw Capacity + 未フォーマット時の容量 + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status - PG Status + 配置グループのステータス + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + OSDあたりの配置グループ数 + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + クライアントの読み取り/書き込み + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + クライアントのスループット + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + 回復スループット + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + スクラビング + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + 読み取り回数 + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + 書き込み回数 + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + 使用可能 + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean - Clean + クリーン + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + 動作中 + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + 不明 + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + 正常 + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + 誤配置 + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + 降格 + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + 見つからない + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + オブジェクト + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + ここ + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + アップ + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + ファイルシステムがありません + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + アクティブ + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + スタンバイ + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + スタンバイデーモン + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + アクティブデーモン + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a - n/a + なし + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + (定数) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total - total + 合計 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + ほぼフル + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + フル + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + クライアント() + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + アドレス + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + アクセスタイプ + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash - Squash + スカッシュ + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster - Cluster + クラスタ + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + NFSプロトコル + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo - Pseudo + 疑似 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + ストレージバックエンド + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User - CephFS User + CephFSユーザ + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + CephFSファイルシステム + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + セキュリティラベル + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway - Object Gateway + オブジェクトゲートウェイ + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + オブジェクトゲートウェイユーザ + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + 任意のクライアントからアクセスできます + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + アドレス + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + 1つ以上のカンマ区切り値を含んでいる必要があります + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + 例: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + アクセスタイプ + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash - Squash + スカッシュ + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + クライアントの追加 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (グローバル設定から継承) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- -- アクセスタイプを選択してください -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + グローバル設定から継承されました + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- 実行されるユーザIDスカッシュ操作を選択してください -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- 使用可能なクラスタがありません -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- クラスタを選択してください -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + これはNFSサービスのIDです。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + このフィールドは必須です。 新しいNFSクラスタを作成するには、新しいNFSサービスを追加します。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume - Volume + ボリューム + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- 利用可能なCephFSファイルシステムがありません -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- CephFSファイルシステムを選択してください -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + セキュリティラベル + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + セキュリティラベルの有効化 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + CephFSパス + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + CephFSファイルシステム内のパス。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + パスは「/」で始まる必要があり、その後ろに1つの単語を配置できます + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + パスは選択したボリュームに存在しません。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + バケット + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + バケットが存在しないか、デフォルトレルムにありません(複数のレルムが設定されている場合)。 続行するには、新しいバケットを作成します。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + NFSプロトコル + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo - Pseudo + 疑似 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. - By using different Pseudo options, the same Path may be exported multiple times. + 異なる[疑似]オプションを使用することで、同じパスを複数回エクスポートできます。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + 疑似はすでに別のエクスポートによって使用されています。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + 擬似は「/」で始まる必要があり、>、<、|、&、(または)のいずれも含めることはできません。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- 使用可能なアクセスタイプがありません -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- 使用可能なスカッシュがありません -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + トランスポートプロトコル + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + NFSエクスポート + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + パスの取得中にエラーが発生しました。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + バケット名の取得中にエラーが発生しました。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway - Object Gateway + オブジェクトゲートウェイ + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + バケット + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + パフォーマンスカウンタを使用できません + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + 名前は英数字、ダッシュ、および下線のみで構成される必要があります。 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + 選択されたイレイジャコードプロファイル名はすでに使用されています。 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + ルート + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + 障害ドメインタイプ + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + デバイスクラス + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule - Crush Rule + Crushルール + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + プラグイン + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + データチャンク(k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + 2以上である必要があります。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + チャンク(k+m)は、の使用可能なOSD数を超えています。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + 等分布の場合、kは(k+m)/lの倍数でなければなりません。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + cからデータを正しく復元するには、kはm以上である必要があります。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + 分布係数: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + コーディングチャンク(m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + 1以上である必要があります。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + 耐久性推定子(c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + mは使用可能なチャンクの量を定義するため、Cはm以下である必要があります。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) - Helper chunks (d) + ヘルパーチャンク(d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + dを手動で設定するか、dを最大化するプラグインのデフォルト計算を使用します。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + Dはkとmの変更時に自動的に更新されます + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + Dは~まで設定できます + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + Dはにのみ設定できます + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - Dはk ( - )より大きい必要があります。 - + D has to be greater than k (). + Dはk ()より大きい必要があります。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + Dはk + m ()より低い必要があります。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + 地域(l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + 現在の地域ではチャンク(k+m)を正しく分割できません。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + 地域グループ: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + Crush障害ドメイン + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + Crush地域 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + なし + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + スカラmds + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + 技法 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + パケットサイズ + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + Crushルート + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + Crushデバイスクラス + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + 使用可能なOSD数: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + ディレクトリ + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + ECプロファイル + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + キャッシュ層の詳細 + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode キャッシュモード + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + 退去までの最小経過時間 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + 消去までの最小経過時間 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + ターゲットの最大バイト数 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + ターゲットの最大オブジェクト数 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + アプリケーションは追加されていません + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + アプリケーション数の上限に達しました + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + 1つのプールは最大で4つのアプリケーション定義しか保有できません。 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + 使用可能な文字「_a-zA-Z0-9」 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters - Maximum length is 128 characters + 最大長は128文字です + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + アプリケーションのフィルタリングまたは追加 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + アプリケーションの追加 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + 選択されたCephプール名はすでに使用されています。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + 名前に「/」が含まれたRBDプールを作成することはできません。名前を変更するか、アプリケーションリストから「rbd」を削除してください。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + プール名には、文字、数字、「.」、「-」、「_」、または「/」のみを含めることができます。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + プールタイプ + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- プールタイプを選択してください -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + 配置グループオートスケール + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + 配置グループ + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + 少なくとも1つの配置グループが必要です。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. - Your cluster can't handle this many PGs. Please recalculate the PG amount needed. + ご使用のクラスタはこれだけ多数の配置グループを処理できません。必要な配置グループの数を再計算してください。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help - Calculation help + 計算のヘルプ + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + 現在の配置グループ設定は自動的に計算されたため、送信前に、これらの値がニーズに合っていることを確認してください。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + 複製されたサイズ + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + 最小値: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + 最大値: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + 指定されたサイズは範囲外です。 有効な値の範囲は~です。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + 1のサイズではオブジェクトのレプリケーションは作成されません。「複製されたサイズ」にはオブジェクト自体が含まれます。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + ECの上書き + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + アプリケーション + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + ミラーリング + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + イレイジャコードプロファイル + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- 使用可能なイレイジャコードプロファイルがありません -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- イレイジャコードプロファイルを選択してください -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + このプロファイルは使用中のため削除できません。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + プロファイル + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + プールで使用 + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + プロファイルは使用されていません。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset - Crush ruleset + Crushルールセット + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + 新しいCrushルールセットが暗黙的に作成されます。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + ルールはありません。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- Crushルールを選択してください -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + このルールは使用中のため削除できません。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + Crushルール + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps - Crush steps + Crushステップ + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + ルールは使用されていません。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + このルールは、このルールで最低限必要なOSDを満たすにはOSDが少なすぎるため、現在のクラスタでは使用できません。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + 圧縮 + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + アルゴリズム + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- 使用可能なイレイジャ圧縮アルゴリズムがありません -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + 最小blobサイズ + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + 例: 128KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + 値は0より大きい必要があります + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + 値は最大blobサイズより小さい必要があります + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + 最大blobサイズ + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + 例: 512KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + 値は最小blobサイズより大きい必要があります + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + 率 + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + 圧縮率 + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + 値は0.0~1.0の間である必要があります + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + 最大バイト数 + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + このクォータを無効にするには、空白のままにするか、0を指定します。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + 有効なクォータは0より大きい必要があります。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + 最大オブジェクト数 + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + 値は0以上である必要があります + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + プール + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + イレイジャコードプロファイル + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + Crushルール + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + プールリスト + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + データ保護 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + アプリケーション + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status - PG Status + 配置グループのステータス + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + Crushルールセット + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + プールの削除は、mon_allow_pool_delete構成設定によって無効にされています。 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key - Key + キー + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + バージョニング + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + MFA削除 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + インデックスタイプ + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + 配置ルール + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + バケットクォータ + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + 有効化済み + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + 最大サイズ + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + 無制限 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + 最大オブジェクト数 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + ロック + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days 日数 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + バケット名には、小文字、数字、ピリオド、ハイフンのみを含めることができます。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + 選択された名前はすでに使用されています。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + バケット名に大文字やアンダースコアを含めることはできません。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + 各ラベルは、小文字または数字で始まり、小文字または数字で終わる必要があります。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + バケット名をIPアドレスとしてフォーマットすることはできません。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + バケットラベルは空にすることはできず、小文字、数字、ハイフンのみを含めることができます。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + バケット名は3~63文字である必要があります。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + 所有者 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- ユーザを選択してください -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + バケット内のオブジェクトのバージョニングを有効にします。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + 多要素認証 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + 削除が有効 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + MFA(多要素認証)の削除を有効にします。これには、バケットのバージョニング状態を変更するための追加の認証が必要です。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + トークンのシリアル番号 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + トークンPIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. バケット内のオブジェクトのロックを有効にします。バケットの作成中のみロックを有効にすることができます。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + このバケットに配置された新しいオブジェクトに適用されるデフォルトの保持期間に指定する日数。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + 入力する値は正の整数にする必要があります。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + 保持日は正の整数である必要があります。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + 配置ターゲット + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- 配置ターゲットを選択してください -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + バケット + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + オブジェクトゲートウェイバケット「」を更新しました。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + オブジェクトゲートウェイバケット「」を作成しました + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + 制限なし + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + 所有者 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + 使用済み容量 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + 容量制限% + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + オブジェクト制限% + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + パフォーマンスカウンタ + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + 同期パフォーマンス + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + レルム + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group - Zone Group + ゾーングループ + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + ゾーン + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + その数のデーモンのみが作成されます。 + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + ゾーングループ + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + データプール + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + エラー + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- -- タイプを選択してください -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + 許可 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- -- 許可を選択してください -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + 機能 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + キー + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show - Show + 表示 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + テナント + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + ユーザID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + 氏名 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + 電子メールアドレス + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + 中断済み + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + 最大バケット数 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + サブユーザ + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + 機能 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + MFA (ID) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + ユーザクォータ + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + ユーザ名 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + 無制限 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + この値は無効です。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + 選択されたユーザIDはすでに使用されています。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + テナントの表示 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + 選択されたユーザIDがこのテナントに存在します。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. - This is not a valid email address. + これは有効な電子メールアドレスではありません。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + 選択された電子メールアドレスはすでに使用されています。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + 最大バケット数 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + 無効化済み + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom - Custom + カスタム + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + 1以上の値を入力する必要があります。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + S3キー + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key - Auto-generate key + キーの自動生成 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + アクセスキー + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + 秘密キー + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + サブユーザがいません。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + キーがありません。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift - Swift + スウィフト + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + 機能がありません。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + すべての機能はすでに追加されています。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + 無制限のサイズ + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + 最大サイズ + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + 無制限のオブジェクト数 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + 最大オブジェクト数 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + 0以上の値を入力する必要があります。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + ユーザ + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + サブユーザ + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + S3キー + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + オブジェクトゲートウェイユーザ「」を更新しました + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + オブジェクトゲートウェイユーザ「」を作成しました + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + テナント + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + 氏名 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + 電子メールアドレス + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + 中断済み + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + 最大バケット数 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users - users + ユーザ数 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- ユーザ名を選択してください -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + サブユーザ + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + 選択されたサブユーザIDはすでに使用されています。 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + 読み取り、書き込み + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + フル + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + スウィフトキー + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + 秘密の自動生成 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + サブユーザ + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + スウィフトキー + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + ユーザ + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + 役割 + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + ホスト名もOSD IDも指定されていません + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + デバイスID + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + ヘルスの状態 + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + 良い + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + 悪い + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + 古い + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + 耐用年数 + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + 予測作成日 + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + デバイス名 + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons - Daemons + デーモン + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + SMARTデータを取得できませんでした。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + 取得したデータには、JSONフォーマットバージョン2.xがあり、現在はダッシュボードと互換性がありません。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + 利用可能なSMARTデータがありません。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + SMART全体的なヘルス自己評価テスト結果 + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + 不明 + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + 成功 + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + 失敗 + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + デバイス情報 + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + このデバイスで利用可能なデバイス情報がありません。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + このデバイスで利用可能なSMARTデータがありません。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + SMARTデータをロードしています。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctlが不明な引数を受け取りました(エラーコード)。互換性のないバージョンのsmartmontoolsを使用している可能性があります。データを正常に取得するには、バージョン7.0以上のsmartmontoolsが必要です。 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + エラーコードのエラーが発生しました。 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + 生 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + しきい値 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + 失敗した場合 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + 最低 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + 新しいパスワードを設定してください。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + その後、ログインページにリダイレクトされます。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + 新しいパスワードは古いパスワードと異なる必要があります。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. 確認入力されたパスワードが新しいパスワードと一致しません。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + ユーザ名は必須です + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + パスワードは必須です + + src/app/core/auth/login/login.component.html + 48 + Log in - Log in + ログイン + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + 範囲 + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + 作成 + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + 更新 + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + 削除 + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + 説明... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + 許可 + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + 役割 + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + 役割「」を作成しました + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + 役割「」を更新しました + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role - System Role + システム役割 + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + 役割「」を削除しました + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + 新しい名前 + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + 役割の複製 + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + 役割「」を「」から複製しました + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + ユーザ名はすでに存在します。 + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + パスワードの確認入力 + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + 確認入力されたパスワードがパスワードと一致しません。 + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + パスワードの失効日 + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + パスワードの失効日... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + 電子メール + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + 無効な電子メールです。 + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + ユーザは次回のログオン時にパスワードを変更する必要があります + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + 自身のユーザから「user read / update」という許可を削除しようとしています。 + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + 続行した場合は、どのユーザの役割も追加または削除できなくなります。 + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + 役割はありません。 + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Created user ' - ' - + Created user '' + ユーザ「」を作成しました + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + ユーザの更新 + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + このユーザの役割が変更されたため、このユーザは自動的にログアウトされました。 + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + ユーザ「」を更新しました + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + 電子メール + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + 役割 + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + ユーザ「」を削除しました + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + ユーザ「」を削除できませんでした + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + 現在「」としてログインしています。 + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + 古いパスワード + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + 新しいパスワード + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + 新しいパスワードの確認入力 + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + パスワード + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + ユーザパスワードを更新しました + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + オブジェクトゲートウェイを選択しました: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + オブジェクトゲートウェイを選択 + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + ページが見つかりません + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + 検索していた内容が見つかりませんでした。 要求したページが変更または移動された可能性があります。 + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + ダッシュボードに移動 + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + ページが見つかりません + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + 検索していた内容が見つかりませんでした。 + 要求したページが変更または移動された可能性があります。 + + src/app/core/error/error.ts + 11,12 + Access Denied アクセスが拒否されました + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + このページまたはリソースを表示する権限がありません。 + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + ユーザが拒否されました + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. このユーザはCephに存在しません。 ログインを再試行すると、Identity Providerからログアウトされます。 + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + ヘルプ + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + セキュリティ + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + 商標 + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + ダッシュボード設定 + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + ユーザ管理 + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + テレメトリ設定 + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + ヘルプ + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + ドキュメント + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + バージョン情報 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + ログイン済みユーザ + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + パスワードの変更 + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + ナビゲーションの切り替え + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + CRUSHマップ + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + バケット + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + ファイルシステム + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + ログ + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + マネージャモジュール + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + タスクと通知 + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + データを配置する必要があるノードの名前。 + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + レプリカを分離する必要のあるCRUSHノードのタイプ。 + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + 各オブジェクトは複数のデータチャンクパートに分割されており、それぞれのパートは異なるOSDに保管されています。 + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + 各オブジェクトのコーディングチャンクを計算して、これらのチャンクを別々のOSDに保管します。 +コーディングチャンクの数は、データを失うことなくダウン状態になることができるOSDの数でもあります。 + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + jerasureプラグインは最も汎用的で柔軟性の高いプラグインです。 +このプラグインは、Cephイレイジャコード化済みプール用のデフォルトでもあります。 + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + さらに柔軟性の高い技法はreed_sol_vanです。kとmを +設定するだけで十分です。 +cauchy_good技法はより高速となり得ますが、パケットサイズを慎重に選択する必要があります。 +reed_sol_r6_op、liberation、blaum_roth、liber8tionはすべて、 +m=2を使用した設定のみが可能という意味でRAID6と同等です。 + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + エンコードはバイトサイズのパケット群に対して同時に実行されます。 +適切なパケットサイズを選択することは困難です。 +jerasureのドキュメントにはこのトピックに関する詳細な情報が記載されています。 + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,15 +17320,19 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + jerasureプラグインを使用すると、イレイジャコード化済みオブジェクトが複数のOSDに保管されている場合は、 +1つのOSDの喪失から回復するには、他のすべてのOSDからの読み取りが必要になります。 +たとえば、k=8およびm=4を使用してjerasureが設定されている場合は、1つのOSDが失われた場合、 +修復のためには他の11個のOSDからの読み取りが必要になります。 - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. +lrcイレイジャコードプラグインは、これより少ないOSDを使用した回復を可能にするために、 +ローカルパリティチャンクを作成します。たとえば、lrcがk=8、m=4、およびl=4を使用して設定されている場合は、 +lrcは、4つのOSDごとに1つの追加パリティチャンクを作成します。1つのOSDが失われた場合は、 +11個の代わりに4つのOSDのみを使用してそのOSDを回復できます。 + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, @@ -8850,62 +17341,95 @@ コーディングチャンクとデータチャンクをサイズ地域の複数セットにグループ分けします。 たとえば、k=4およびm=2の場合に、[地域]=3の場合は、3つのチャンクからなるグループが2つ作成されます。 各セットは、別のセットからチャンクを読み取ることなく回復できます。 + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + 1によって定義されたチャンクの各セットが保管されるCrushバケットのタイプ。 +たとえば、このバケットタイプがラックに設定されている場合は、1のチャンクの各グループは異なるラックに配置されます。 +このバケットタイプを使用して、「ラックの選択」ステップなどのCRUSHルールステップが作成されます。 +このバケットタイプが設定されていない場合は、このようなグループ分けは行われません。 + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + isaプラグインはISAライブラリをカプセル化します。このプラグインはIntelプロセッサ上のみで動作します。 + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + ISAプラグインは2つのリードソロモン形式で提供されています。reed_sol_vanが設定されている場合は、Vandermondeであり、cauchyが設定されている場合は、Cauchyです。 + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + shecプラグインは複数のSHECライブラリをカプセル化します。 +このプラグインを使用すると、cephはリードソロモンコードより効率的にデータを回復できます。 + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + それぞれが各データチャンクを各自の計算範囲内に含んでいるパリティチャンクの数。 +この数は、耐久性推定子として使用されます。 +たとえば、c=2の場合は、データを失うことなく2つのOSDがダウン状態になることができます。 + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + CLAY (結合層の略)コードは、障害が発生したノード/OSD/ラックの修復時に、 +ネットワーク帯域幅とディスクIOの面で大幅な節約を実現するように設計されたイレイジャコードです。 + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + 単一チャンクの回復中にデータの送信を要求したOSDの数。dは、k+1 <= d <= k+m-1 +となるように選択する必要があります。dが大きいほど、節約率が高くなります。 + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + scalar_mdsは、階層構造のビルディングブロックとして使用されるプラグイン +を指定します。jerasure、isa、shecのいずれかになります。 + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8918,1733 +17442,2840 @@ jerasureの場合は「reed_sol_van」、「reed_sol_r6_op」、「cauchy_orig」、 「cauchy_good」、「liber8tion」、isaの場合は「reed_sol_van」、 「cauchy」、shecの場合は「single」、「multiple」です。 + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + CRUSHルールの最初のステップ(「デフォルトの使用」ステップなど)用に +使用されるCrushバケットの名前。 + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + 同じ障害ドメインの単一バケット内に2つのチャンクが配置されることを防止します。 +たとえば、障害ドメインがホストである場合は、2つのチャンクが同じホストに保管されることはありません。 +これを使用して、「リーフホストの選択」ステップなどのCRUSHルールステップが作成されます。 + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. イレイジャコードプラグインの読み込み元となるディレクトリ名を設定します。 + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + すべての操作を許可します + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + サーバに変更を加えない操作のみを許可します + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + アクセスを一切許可しません + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. - Please specify a filesystem volume. + ファイルシステムのボリュームを指定してください。 + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + Orchestratorが使用できないため、この機能は無効になっています。 + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + Orchestratorバックエンドは、この機能をサポートしていません。 + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- 優先度を選択してください -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + 低 + + src/app/shared/api/osd.service.ts + 44 + High - High + 高 + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + ユーザリストのデータが古くなっている可能性があります。必要に応じて、手動で再ロードできます。 + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + のデータを取得しています。 + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + データを取得しています。 + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... しばらくお待ちください... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + の以前にキャッシュされたデータを表示しています。 + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + 以前にキャッシュされたデータを表示しています。 + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + のデータをロードできませんでした。 + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + データをロードできませんでした。 + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + クラスタヘルスを確認してください。 + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + エラー + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + 情報 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + 成功 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + 危険 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + カスタム設定値を削除します。デフォルト設定値が継承されて代わりに使用されます。 + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + 入力された値は大きすぎます。より大きい値を入力することはできません。 + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 入力された値は小さすぎます。より小さい値を入力することはできません。 + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + クリップボードにコピー + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + 本当に してもよろしいですか? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + 選択されたアイテムを本当にしてもよろしいですか? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + 選択されたを本当にしてもよろしいですか? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. - Yes, I am sure. + はい。 + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation ドキュメント + + src/app/shared/components/doc/doc.component.ts + 12 + Download - Download + ダウンロード + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + このフィールドは必須です。 + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + エラーが発生しました。 + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + パネルデータを読み込んでいます... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + 監視機能を設定および有効化する方法に関するを参照してください。 + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + Grafanaダッシュボードが存在していません。 Grafanaにダッシュボードを追加する方法に関するを参照してください。 + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker Grafana Time Picker + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + 設定のリセット + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + 直前の1時間(デフォルト) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday - Yesterday + 昨日 + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + 本日の現時点まで + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + 一昨日 + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + 過去2日間 + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + 先週の同じ曜日 + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week 前週 + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + 今週の現時点まで + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + 過去7日間 + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + 前月 + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + 今月の現時点まで + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + 過去30日間 + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + 過去90日間 + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + 過去6カ月 + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + 過去1年間 + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + 前年 + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + 今年の現時点まで + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + 過去2年間 + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + 過去5年間 + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + 言語の選択 + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + 通知のクリア + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + 通知の削除 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + 期間: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + 通知はありません。 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + この機能は、現在のOrchestratorではサポートされていません。 + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + Orchestratorが利用できません。機能を設定および有効化する方法についてはを参照してください。 + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + パスワードの有効期限が1日以内に切れます。今すぐ変更するにはここをクリックしてください。 + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + パスワードの有効期限が日以内に切れます。今すぐ変更するにはここをクリックしてください。 + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + 再読み込み + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + アイテムが選択されていません。 + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + アイテムを選択解除して再選択してください + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + 選択の上限に達しました + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + タグのフィルタリング + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + バッジの追加 + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + 使用可能なアイテムはありません。 + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + Cephコミュニティは改善を続けるためにあなたの支援が必要です。テレメトリモジュールを有効にしてください。 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + テレメトリアクティベーションリマインダがミュートされました + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + モジュールは、テレメトリ設定ページ([<b>ダッシュボード設定</b>]>[<b>テレメトリ設定</b>])でいつでも有効化できます。 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export - Export + エクスポート + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + インポート + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + 追加 + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + 設定 + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + 送信 + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + 削除 + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + 設定解除 + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + キャンセル + + src/app/shared/constants/app.constants.ts + 176 + Preview - Preview + プレビュー + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + 移動 + + src/app/shared/constants/app.constants.ts + 178 + Next - Next + 次へ + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + 戻る + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + 複製 + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + コピー + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + ディープスクラブ + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + 破棄 + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + 削除 + + src/app/shared/constants/app.constants.ts + 189 + Flatten - Flatten + フラット化 + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + ダウンとしてマーク + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + インとしてマーク + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + 喪失としてマーク + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + アウトとしてマーク + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + 保護 + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + 名前の変更 + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + 復元 + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + 再重みづけ + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + スクラブ + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + 表示 + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + ごみ箱に移動する + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + 保護解除 + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + 変更 + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + 保守に入る + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + 保守を終了する + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + ドレインを開始 + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain - Stop Drain + ドレインを停止 + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + 再作成 + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + 期限切れ + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + 無効にする + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + 削除済み + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + 追加済み + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + 削除済み + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + 編集済み + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + キャンセル済み + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + プレビュー済み + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + 移動済み + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + 複製済み + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + コピー済み + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + ディープスクラブ済み + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + 破棄済み + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + フラット化済み + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + ダウンとしてマーク済み + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + インとしてマーク済み + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + 喪失としてマーク済み + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + アウトとしてマーク済み + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + 保護済み + + src/app/shared/constants/app.constants.ts + 313 + Purged 消去済み + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + 名前変更済み + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + 復元済み + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + 再重みづけ済み + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + ロールバック済み + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + スクラブ済み + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + 表示済み + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + ごみ箱に移動済み + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + 保護解除済み + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + 再作成済み + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + 失効済み + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + 閉じる + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + フィルタをクリア + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + 選択済み + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + 検出済み + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total - total - X total + 合計 + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row - Expand/Collapse Row + 行の展開/折りたたみ + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + データを読み込めませんでした。 + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + フォームデータを読み込んでいます... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + フォームデータを読み込めませんでした。 + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + サイズは少なくとも以上にする必要があります + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + サイズは少なくとも以下にする必要があります + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + はい + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + いいえ + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + %s で + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + %s 前 + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + 数秒 + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d 秒 + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + 1分 + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + %d 分 + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + 1時間 + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d 時間 + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + 1日 + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d 日 + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + 1週間 + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d 週間 + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + 1ヵ月 + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months - %d months + %d ヵ月 + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year 1年 + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d 年 + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + パスワードに必要なルール: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Must contain at least - characters - + Must contain at least characters + 少なくとも文字含まれている必要があります + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + 前のものと同じであってはなりません + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + ユーザ名を含めることはできません + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + 設定済みのキーワードを含めることはできません + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + 「aaa」などの繰り返し文字を含めることはできません。 + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + 「abc」などの連続した文字を含めることはできません。 + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + 次のグループの文字で構成されている必要があります。 + * アルファベットのa-z、A-Z + * 数字0〜9 + * 特殊文字: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * その他の文字(記号) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + マッチャーは、現在定義されているルールまたはアクティブなアラートに一致していないようです。 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts - no active alerts + アクティブなアラートなし + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1件のアクティブなアラート + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + 件のアクティブなアラート + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + 1個のルールに一致 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + 個のルールに一致 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + と。 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + サービス品質 + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + BPS制限 + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + 希望する秒あたり入出力バイト数の上限。 + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + IOPS制限 + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + 希望する秒あたり入出力操作数の上限。 + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + 読み取りBPS制限 + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + 希望する秒あたり読み取りバイト数の上限。 + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + 読み取りIOPS制限 + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + 希望する秒あたり読み取り操作数の上限。 + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + 書き込みBPS制限 + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + 希望する秒あたり書き込みバイト数の上限。 + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + 書き込みIOPS制限 + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + 希望する秒あたり書き込み操作数の上限。 + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + BPSバースト + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + 希望する入出力バイト数のバースト上限。 + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + IOPSバースト + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + 希望する入出力操作数のバースト上限。 + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + 読み取りBPSバースト + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + 希望する読み取りバイト数のバースト上限。 + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + 読み取りIOPSバースト + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + 希望する読み取り操作数のバースト上限。 + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + 書き込みBPSバースト + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + 希望する書き込みバイト数のバースト上限。 + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + 書き込みIOPSバースト + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + 希望する書き込み操作数のバースト上限。 + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + に失敗しました + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + 実行中 + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + 実行 + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + 実行済み + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + 不明なタスク + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + 作成中 + + src/app/shared/services/task-message.service.ts + 67 + create - create + 作成 + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + 更新中 + + src/app/shared/services/task-message.service.ts + 68 + update - update + 更新 + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + 削除中 + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding - Adding + 追加中 + + src/app/shared/services/task-message.service.ts + 70 + add - add + 追加 + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + 削除中 + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + 削除 + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + インポート中 + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + インポート + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + インポート済み + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + RBD「」 + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + RBDスナップショット「@」 + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + ミラーリングサイト名 + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + ブートストラップトークン + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + プール「」のミラーモード + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + プール「」のミラーピア + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + すべてのダッシュボード + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + 識別中 + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + 識別 + + src/app/shared/services/task-message.service.ts + 133 + Identified 識別済み + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + ホスト「」上のデバイス「」 + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + OSD (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + この名前はによってすでに使用されています。 + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + はビジー状態です。 + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + にはスナップショットが含まれています。 + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + 複製中 + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + 複製 + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + のスナップショットは保護される必要があります。 + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + コピー中 + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + コピー + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + フラット化中 + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + フラット化 + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + は子イメージを含んでいるため保護解除できません。 + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + 保護されているためを削除できません。 + + src/app/shared/services/task-message.service.ts + 243 + Rolling back ロールバック中 + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + ロールバック + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + 移動中 + + src/app/shared/services/task-message.service.ts + 256 + move - move + 移動 + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + イメージ「」をごみ箱に + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. イメージが見つかりませんでした。 + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + 復元中 + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + 復元 + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + イメージ「」を「」に + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + Image name '' is already in use. + イメージ名「」はすでに使用されています。 + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + イメージ「」 + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + 消去中 + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + 消去 + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + すべてのプール + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + からのイメージ + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + ピアを含んでいるためミラーリングを無効化できません。 + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - ホスト「 - 」 - + host '' + ホスト「」 + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + OSD「」 + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + プール「」 + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + イレイジャコードプロファイル「」 + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + Crushルール「」 + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + ターゲット「」 + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + NFS「:」 + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.ko-KR.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.ko-KR.xlf index 7a739410eff..dfd559e6272 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.ko-KR.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.ko-KR.xlf @@ -1,8827 +1,17091 @@ - - + + Close - Close + 닫기 + + node_modules/src/ngb-config.ts + 13 + HH - HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + 닫기 + + node_modules/src/ngb-config.ts + 13 + «« - «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + 지난 달 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours - Hours + + node_modules/src/ngb-config.ts + 13 + « - « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + + node_modules/src/ngb-config.ts + 13 + MM - MM + + node_modules/src/ngb-config.ts + 13 + » - » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + 다음 달 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + 다음 + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + + node_modules/src/ngb-config.ts + 13 + »» - »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + + node_modules/src/ngb-config.ts + 13 + First - First + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + + node_modules/src/ngb-config.ts + 13 + Next - Next + 다음 + + node_modules/src/ngb-config.ts + 13 + Increment minutes - Increment minutes + + node_modules/src/ngb-config.ts + 13 + Last - Last + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + + node_modules/src/ngb-config.ts + 13 + SS - SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + 개요 + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets 대상 + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology - iSCSI Topology + iSCSI 토폴로지 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + 이름 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + 현재 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + 기본 값 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication - Discovery Authentication + 검색 인증 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + 사용자 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + 이 필드는 필수입니다. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 사용자 이름은 8~64자 길이여야 하며 영숫자 '.', '@', '-', '_' 또는 ':' 을 포함할 수 있습니다. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + 비밀번호 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 비밀번호의 길이는 12~16자여야 하며 영숫자, '@', '-', '_' 또는 '/' 를 포함할 수 있습니다. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + 공동 사용자 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + 공통 비밀번호 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + 검색 인증이 업데이트 되었습니다. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + 타겟 IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + IQN이 잘못된 패턴을 가지고 있습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + IQN은 다음과 같은 지정규칙이 있습니다. +'iqn.$년-$달.$뒤집어진주소:$정의된이름' + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Key +예를들면: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + 추가 정보 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + 이 대상은 고급 설정을 수정했습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + 포털 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + 포털 추가 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images 이미지 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + 이 이미지는 설정을 수정 되었습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + 중복된 LUN 번호 입니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + 중복된 WWN 입니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + 이미지 추가 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + ACL 인증 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 사용자 이름은 8~64자 길이여야 하며 영숫자 '.', '@', '-', '_' 또는 ':' 을 포함할 수 있습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 비밀번호의 길이는 12~16자여야 하며 영숫자, '@', '-', '_' 또는 '/' 를 포함할 수 있습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + 개시자 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + 개시자 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + 클라이언트 IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + Initiator IQN은 유일해야 합니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 사용자 이름은 8~64자 길이여야 하며 영숫자 '.', '@', '-', '_' 또는 ':' 을 포함할 수 있습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 비밀번호의 길이는 12~16자여야 하며 영숫자, '@', '-', '_' 또는 '/' 를 포함할 수 있습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + 개시자는 하나의 그룹에 속해야 하고, 이미지는 그룹안에서 설정합니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + 추가된 아이템이 없음 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + Initiator 추가 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + 그룹 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + 그룹 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + 이름 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + 그룹 추가 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. 사용 가능한 포털이 없습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + 사용 가능한 이미지가 없습니다. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. 사용할 수 있는 이미지가 없습니다. 대상에 이미지를 추가하십시오. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. 사용할 수 있는 개시자가 없습니다. 대상에 개시자를 추가하십시오. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + 대상 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + 구성 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + 일반적으로 이러한 매개 변수를 기본값에서 변경할 필요는 없습니다. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + 식별자 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun - lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn - wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + 설정 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore - Backstore + 백스토어 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + 고급 설정 + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + iSCSI 타겟을 사용할 수 없습니다. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + 사용 가능한 정보: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + 검색 인증 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + 대상 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + 포털 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + 이미지 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions # 세션 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + 게이트웨이를 사용할 수 없습니다. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + 대상에 활성 세션이 있습니다. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + iSCSI 타겟 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + 게이트웨이 + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + 상태 + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + # 대상 + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool - Pool + 데이터 풀 + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image 이미지 + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore - Backstore + 백스토어 + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + 읽기 바이트 + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + 쓰기 바이트 + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + 읽기 Ops + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + 쓰기 Ops + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + A/O 이후 + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token - Create Bootstrap Token + 부트스트랩 토큰 생성 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + 사이트 이름 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + 이름 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + 데이터 풀 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + 하나 이상의 데이터 풀이 필요합니다. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + 생성 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + 토큰 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + 생성된 토큰... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + 닫기 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + 부트스트랩 토큰 가져오기 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + 다이렉션 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + 토큰이 유효하지 않습니다. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + 인스턴스 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID - ID + 아이디 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname - Hostname + 호스트 이름 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version - Version + 버전 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + 상태 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + 이슈 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + 진행중 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description - Description + 설명 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons - Daemons + 데몬 + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + 부트스트랩 토큰 생성 + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + 부트스트랩 토큰 가져오기 + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + 데이터 풀 미러모드 편집 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + 모드 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + 미러를 사용하지 않도록 설정하려면 먼저 피어 클러스터를 제거해야 합니다. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + 비활성화 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + 클러스터 이름 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + 클러스터 이름이 유효하지 않습니다. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID - CephX ID + CephX 아이디 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... - CephX ID... + CephX 아이디... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + CephX 아이디가 유효하지 않습니다. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + 모니터 주소 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + 콤마로 분리된 주소... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + 모니터 주소가 유효하지 않습니다. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key - CephX Key + CephX 키 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Base64로 인코딩 된 키 ... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. CephX 키는 반드시 base64로 인코드 되어야 합니다. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + # 로컬 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + # 원격 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + 편집 모드 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer 피어 추가 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer 피어 편집 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + 피어 삭제 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode 모드 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader 리더 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + # 로컬 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + # 원격 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + 피어 미러 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + 포트 + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + 개시자 + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + 로딩중... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host - Host + 호스트 + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport - Transport + 전송 + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool - Pool + 데이터 풀 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- - -- Select a pool -- + -- 데이터 풀을 선택하세요 -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + '/' 와 '@' 문자는 사용불가입니다. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + 네임 스페이스 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS - IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + 세부 정보 + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + 네임 스페이스 + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. - The value must be at least 1. + 값은 1 이상이어야 합니다. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration RBD 설정 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. - Remove the local configuration value. The parent configuration value will be inherited and used instead. + 로컬 구성 값을 제거하십시오. 상위 구성 값은 계승되고 대신 사용됩니다. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + 최소 값은 0 입니다. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global - Global + 글로벌 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + 이미지 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + 키 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + 소스 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + 값 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + 데이터 풀 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + 생성됨 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + 크기 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + 오브젝트 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + 오브젝트 크기 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + 특징 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + 준비됨 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A - N/A + 없음 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned - Total provisioned + 프로비저닝 된 전체 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + 분산 저장 단위 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + 분산 저장 횟수 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + 상위 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + 블럭 이름 접두사 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + 순서 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + 포맷 버전 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + 스냅샷 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + 설정 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + 성능 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + '제거 중' 상태인 RBD에 대한 정보를 표시할 수 없습니다. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + 이 설정은 글로벌 값을 덮어씁니다. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + 이것은 글로벌 값입니다. 이 이미지에 대해 이 옵션의 값이 설정되지 않았습니다. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + 전용 데이터 풀을 사용하려면 rbd 애플리케이션 라벨이 사용되는 풀이 두 개 이상 필요합니다. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- 사용 가능한 데이터 풀이 없습니다 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- 사용 가능한 네임 스페이스가 없습니다 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- 네임 스페이스를 선택하세요 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + 사이즈를 증가해야 합니다. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping - Striping + 분산 저장 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- 분산 저장 단위를 선택하세요 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + 분산 저장 개수가 정의되어 있으므로 이 필드는 필수입니다! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + 분산 저장 단위는 오브젝트 크기보다 커야 합니다. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + 분산 저장 단위가 정의되어 있으므로 이 필드는 필수입니다! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + 분산 저장 개수는 반드시 0보다 커야 합니다. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD - RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + 딥 패턴 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + 계층화 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + 배타적인 락 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + 오프젝트-맵(배타적인-락을 요구한다) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + Fast diff (오브젝트 맵과 연동 필요) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + 이 이미지를 삭제하면 모든 스냅샷도 삭제됩니다. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + 다음 스냅샷이 현재 보호되고 있으며 제거됩니다. : + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + RBD가 '제거 중' 상태입니다. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + 크기 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + 사용량 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + 오브젝트 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + 오브젝트 크기 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + 상위 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + 미러링 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + 경고 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + 이 RBD에는 스냅샷이 복제되었습니다. 이 RBD를 삭제하기 전에 관련 RBD를 삭제하십시오. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + 이 RBD 이미지의 이름이 잘못되어 ceph로 관리할 수 없습니다. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + '제거 중' 상태인 RBD에 대해 작업을 수행할 수 없습니다. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + 네임 스페이스 생성 + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- 이용가능한 rbd 데이터 풀이 없습니다 -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. 네임 스페이스가 이미 존재 합니다. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + 전체 이미지 + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + 네임 스페이스에 이미지가 포함되어 있습니다. + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + RBD 스냅샷 + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + 복제하려면 스냅샷을 보호해야 합니다. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + 되돌리려고 합니다. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + 사용 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + 보호됨 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + 보호되지 않음 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + 생성됨 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + RBD 스냅샷 되돌리기 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + 롤백 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + RBD 스냅샷 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + 휴지통 + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + 통합 성능 + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + 휴지통 비우기 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + 만료됨 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + 보호됨 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status - Status + 상태 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At - Deleted At + 삭제됨 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + 이미지를 휴지통에 이동 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + 이 이미지에는 스냅샷이 포함되어 있어 휴지통으로 이동한 후 제거되지 않습니다. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + 보호가 만료되는 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + 보호되지 않음 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + 날짜 형식 오류. "YYYY-MM-DD HH:mm:ss" 형식으로 지정하세요. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + 보호가 이미 만료되었습니다. 날짜를 선택하거나 비워 두십시오. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: - Pool: + 데이터 풀 : + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + 데이터 풀 이름 : + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + 전체 + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + 이미지 복구 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + 새로운 이름 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + 이 필드는 필수입니다. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id - id + 아이디 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + 형태 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + 상태 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + 버전 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + 루트 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + 순위 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + 대기 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + MDS 성능 카운터 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + 대기 중인 데몬 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + 순위 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon - Daemon + 데몬 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + 활동 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries 덴트리들 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + 아이노드들 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + 형태 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + 경로 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + 최대 크기 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + 최대 파일 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + 저장하기 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + 크기 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + 파일 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + 값은 0 이상 이어야 합니다. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + 업데이트 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - in order to inherit - - + in order to inherit + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + 디렉토리에 할당량이 없도록 하기 위해서 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + 스냅샷 생성 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + 스냅샷 이름을 입력하세요. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + CephFs 스냅샷 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + 배치 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + 호스트 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label 라벨 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + 호스트가 없습니다. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + 호스트 필터 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled - Enabled + 활성화 + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + 시작 시간 + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + 다시 연결 중 입니다. 잠시 기다려주세요. + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + 기본값 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + 예: 100 GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + 전체 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + 읽기 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute 실행 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + 데이터 풀 + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + 디렉토리 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + 클라이언트 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + 성능 세부정보 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + 설명 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + 자세한 설명 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values 현재 값 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + 데몬 기본값 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + 타입 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + 최소 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + 최대 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + 플래그 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + 서비스 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source 소스 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + 레벨 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + 운영 중에 업데이트 가능 (편집 가능) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + 태그 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + 열거형 값 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + 더보기 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + 이 값은 운영 중에 업데이트 할 수 있습니다. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + 데몬/클라이언트는 모니터 구성 데이터베이스에서이 값을 가져 오지 않습니다. 'ceph config set ...'을 통해 옵션을 설정할 수 없습니다. 이 옵션은 ceph.conf 또는 명령어를 통해 구성해야합니다. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + 옵션은 데몬 시작 시에만 적용됩니다. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + 옵션은 클러스터 생성할 때만 영향을 줍니다. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + 옵션은 데몬 생성에만 영향을 줍니다. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + 값 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + -- 기본 값 -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true - true + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false - false + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - Updated config option - - + Updated config option + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + 수정됨 + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + 레벨 + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service 서비스 - - - Modified - Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + 현재 값 + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + 편집 가능 + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs - CPUs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + 클러스터 확장 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + 계속 하시겠습니까? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + 계속 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + 클러스터 확장 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + 크러쉬 맵 보기 + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + 장치 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + 물리 디스크 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + 장치 상태 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + 호스트 이름을 찾을 수 없습니다. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + 호스트 이름 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + 호스트 이름이 사용중입니다. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + 유효하지 않은 IP 입니다. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + 라벨 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + 유지보수 모드 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + 라벨이 없습니다. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + 필터 또는 라벨 추가 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label 라벨 추가 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host - host + 호스트 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + 호스트 목록 + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash - Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + 선택한 호스트가 Orchestrator에서 관리되지 않기 때문에 이 기능을 사용할 수 없습니다. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + 라벨 + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + 모델 + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity 물리 용량 + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash - Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + 호스트 편집 + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - " - " has exited maintenance - + "" has exited maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + 식별자 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + 장치 경로 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + 사용 가능 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + 벤더 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + 스토리지 디바이스 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + LED를 깜박일 기간을 입력하십시오. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + 1분 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + 2분 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + 5분 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + 10분 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + 15분 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + 클러스터 로그 + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + 감사 로그 + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + 우선순위: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + 키워드: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + 날짜: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + 시간 범위: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + 로그 항목을 찾을 수 없습니다. 다른 필터 옵션을 선택하십시오. + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + 필터 초기화 + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module 관리 모듈 편집 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + 입력된 값이 유효한 UUID가 아닙니다, 예 : 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + 입력된 값은 유효한 IP 주소여야 합니다. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - The entered value is too high! It must be lower or equal to - . - + The entered value is too high! It must be lower or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. 입력한 값은 숫자여야 합니다. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + 입력 된 값은 숫자 또는 십진수여야 합니다. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + 항상 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + 편집 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + 활성화 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + 비활성화 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + 이 매니저 모듈은 항상 켜져 있습니다. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status 상태 + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + 클러스터 아이디 + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + 몬맵 변경 시간 + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + 몬맵 변경 번호 + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con - quorum con + Quorum 일치 번호 + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon - quorum mon + Quorum 모니터 상태 + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con 요구 일치 번호 + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + 요구 모니터 상태 + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + Quorum에 포함 + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + Quorum에 미포함 + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + Public 주소 + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + 활성화 세션 + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + 스토리지 디바이스 생성 미리 보기 + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups - DriveGroups + 드라이브 그룹 + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + 속성 (스토리지 디바이스 맵) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + 메타 데이터 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + 메타 데이터를 사용할 수 없음 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + 성능 카운터 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + 주 저장 장치입니다. 이러한 장치에는 모든 스토리지 디바이스 데이터가 포함되어 있습니다. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. 미리 쓰기 로그 장치입니다. 이러한 장치는 BlueStore의 내부 저널에 사용됩니다. WAL 디바이스는 디바이스가 기본 디바이스(예: NVME 디바이스 또는 SSD)보다 빠른 경우에만 유용합니다. SSD). 사용 가능한 고속 스토리지가 소량(예: 1기가바이트 미만)뿐이라면 WAL 장치로 사용하는 것이 좋습니다. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + DB 장치는 BlueStore의 내부 메타데이터를 저장하는 데 사용할 수 있습니다. DB 디바이스가 기본 디바이스(예: NVME 디바이스 또는 SSD)보다 빠른 경우에만 프로비저닝하는 것이 유용합니다. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + 추가 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + 초기화 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + 사용 가능한 장치가 없습니다. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + 먼저 기본 장치를 추가하세요. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters 필터를 사용하여 장치를 추가합니다. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + 계속 하려면 다음 필터 중 하나 이상을 적용해야 합니다 : + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + 개별 스토리지 디바이스 플래그 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + 클러스터 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + 이전 선택 복원 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + 살아나지 않는 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + 스토리지 디바이스를 시작할 수 없습니다. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + 죽일 수 없는 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + 모니터가 스토리지 디바이스들의 다운을 표시하지 않도록 스토리지 디바이스 장애 보고서가 무시되고 있습니다. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + 들어올 수 없는 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + 이전에 마크 아웃 된 스토리지 디바이스는 시작 시 다시 표시되지 않습니다. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + 나갈 수 없는 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + 구성된 간격 후에는 스토리지 디바이스가 자동으로 표시되지 않습니다. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + 전체 클러스터에 대해 플래그가 사용되도록 설정되었습니다. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + 업데이트 된 스토리지 디바이스 플래그 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + 클러스터 수준의 스토리지 디바이스 플래그 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + 정지 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes - Pauses reads and writes + 읽기/쓰기 정지 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + 빠른 데이터 정리 안함 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + 빠른 데이터 정리 비활성화 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + 데이터 정리 안함 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + 데이터 정리 비활성화 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + Backfill 안함 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended PG의 Backfill이 일시중지 되었습니다. + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + 재조정 안함 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + PG가 저하되지 않는 한 스토리지 디바이스는 backfill을 선택하지 않습니다. + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + 복구 되지 않음 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + PG의 복구가 일시중지 되었습니다. + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + 비트 단위 정렬 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort - Use bitwise sort + 비트 단위 정렬을 사용하세요. + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + 완전히 삭제된 스냅 디렉토리 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + 스토리지 디바이스가 변화된 스냅셋을 가지고 있습니다. + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + 복구 삭제 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + 피어링 대신 복구 중에 수행된 작업 삭제 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + PG 로그 하드 제한 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + PG 로그 길이에 하드 제한을 넣으세요 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices - Shared devices + 공유 디바이스 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + WAL 슬롯 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + WAL 디바이스 별 스토리지 디바이스 수 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + Orchestrator 백엔드에서 결정하도록 하려면 0을 설정하십시오. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + 값은 0보다 크거나 같아야 합니다. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + DB 슬롯 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + DB 디바이스 별 스토리지 디바이스 수 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption 암호화 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + 스토리지 디바이스 목록 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {} other {}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + 교체할 스토리지 디바이스 아이디를 보존합니다. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + 아웃 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + 인 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + 다운 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + 표시 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + 스토리지 디바이스 손실 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + 손실 표시 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + 완전히 제거 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD - OSD + 스토리지 디바이스 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + 완전히 제거됨 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + 파기 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + 파기됨 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + 플래그 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + 복구 우선 순위 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + 빠른 PG 데이터 정리 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + 장치 클래스 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs PGs + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + 읽은 바이트 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + 쓰여진 바이트 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops - Read ops + 읽기 ops + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + 쓰기 ops + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + 스토리지 디바이스 편집 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + 삭제 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + 삭제됨 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + 고급 설정 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + 고급 설정 옵션 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + PG 빠른 데이터 정리 옵션 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + PG 빠른 데이터 정리 옵션 업데이트 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + 스토리지 디바이스 복구 우선 순위 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + 우선 순위 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + 우선 순위 값 사용자 설정 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + 최대 Backfills + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active 최대 활성화 복구 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + 최대 단일 시작 복구 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + 잠자기 복구 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + 사용자 설정 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + 값은 0과 1 사이어야 합니다. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSDs - Scrub - + OSDs Scrub + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} {VAR_SELECT, select, true {} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + Silence 생성 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + 심각도 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + 시작됨 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + 경고 + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + 그룹 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + 기간 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + 쿼리 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + 편집 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + 삭제 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + Silence를 편집하면 이전의 Silence이 만료되고 새로운 Silence가 다시 생성됩니다. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + 생성자 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + 설명 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + 시작 시간 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + 시작 시간이 과거인 경우 작성 시간이 사용됩니다. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + 기간 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + 종료 시간 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + Silence는 하나 이상의 Matcher가 필요합니다. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + Matcher 생성 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + Silence + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + 속성 이름 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + 정규 표현식 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + Prometheus 호스트를 대시보드 구성에 추가하고 페이지를 새로 고치십시오. + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + 생성자 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + 종료 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + -- 속성을 선택하세요 -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + 값 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + 정규식을 사용하세요. + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + 사양 없음 + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + 관리되지 않음 + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + 서비스 이벤트 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + 최근 새로고침 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + 데몬 이벤트 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + 서비스 이름 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + 서비스 형태 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + 서비스 이벤트 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- 서비스 타입을 선택하세요 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + 백엔드 서비스 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- - -- No service available -- + -- 사용 가능한 서비스가 없습니다 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + 서비스 이름 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + Zone 그룹 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + 관리되지 않음 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + 개수 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + 포트 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + 값은 65535를 초과할 수 없습니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- 사용 가능한 데이터 풀이 없습니다 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + 신뢰 IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + 쉼표로 구분된 IP 주소 목록입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + 가상 IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + 수신 서비스를 사용할 수 있는 가상 IP 주소 및 서브넷(CIDR 표기법)입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + 프론트엔드 포트 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + 수신 서비스에 접근하는 데 사용 되는 포트입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + 모니터 포트 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + HA 프록시가 로드 밸런서 상태에서 사용하는 포트입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + CIDR 네트워크 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + 가상 IP 주소에 사용할 네트워크 인터페이스를 식별하는 네트워크 목록입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + 버전 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - Must be of the format hostname:port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- - -- Select auth protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + 사용자 이름 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + 암호화 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL - SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + 인증서 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + PEM 형식의 SSL 인증서입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. 유효하지 않은 SSL 인증서 입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + 개인 키 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + PEM 형식의 SSL 개인 키입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + 유효하지 않은 SSL 개인 키입니다. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + 서비스 + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + 배치 + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + 실행중 + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + 비활성화 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + 채널 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - 원격 분석 보고서는 여러 "채널"로 구분되며, 각 채널은 아래에서 구성할 수 있는 서로 다른 유형의 정보를 가집니다. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + 원격 분석 보고서는 여러 "채널"로 구분되며, 각 채널은 아래에서 구성할 수 있는 서로 다른 유형의 정보를 가집니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + 기본 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: 클러스터에 대한 기본 정보를 포함합니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + 클러스터 용량 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + 모니터, 관리자, 스토리지 디바이스, MDS, 오브젝트 게이트웨이 또는 기타 데몬 수입니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + 현재 사용 중인 소프트웨어 버전입니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + RADOS 데이터 풀 및 CephFS 파일 시스템의 수와 유형입니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + 기본값에서 변경된 구성 옵션의 이름입니다(값은 아님). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + 충돌 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: 데몬 충돌에 대한 정보를 포함합니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + 데몬 타입 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + 데몬 버전 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + 운영 체제(OS 배포, 커널 버전) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + Ceph 코드에서 충돌이 발생한 위치를 나타내는 스택 추적입니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + 장치 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + 익명화 된 SMART 메트릭과 같은 장치 메트릭에 대한 정보를 포함합니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + 식별 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + 클러스터에 대해 사용자가 제공한 식별 정보를 포함합니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + 연락처 정보 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + 연락처 정보 제출은 선택 사항이며 기본적으로 비활성화 되어 있습니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + 연락처 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + 첫 번째 Glue 클러스터 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name - Organization name + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + 주기 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + 모듈은 기본적으로 24시간마다 새 보고서를 컴파일하고 전송합니다. 시간을 설정하여 간격을 조정할 수 있습니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. 입력한 값이 너무 낮습니다. 8보다 크거나 같아야 합니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy 프록시 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + 클러스터가 구성된 원격 분석 끝점(기본값 telemetry.ceph.com)에 직접 연결할 수 없는 경우, 예를 들어 https://10.0.0.1:8080을 추가하여 HTTP/HTTPS 프록시 서버를 구성할 수 있습니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + 필요한 경우 user:pass를 포함할 수도 있습니다(예: https://ceph:telemetry@10.0.1:8080). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + 여러 원격 분석 보고서 과정에서 특정 클러스터를 식별하기 위한 임의의 UUID입니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + 제출될 실제 원격 측정 데이터입니다. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + 원격 측정 모듈이 구성 및 활성화되었습니다. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + 뒤로 + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + 멈출 + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + 클러스터 상태 + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + 지난 15분 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + 지난 15분 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + 지난 30분 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours 지난 3시간 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + 지난 6시간 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + 지난 12시간 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + 지난 24시간 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster - Cluster + 클러스터 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + 위험 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning - Warning + 경고 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + 모니터 + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + 스토리지 디바이스 + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + 매니저 + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + 오브젝트 게이트웨이 + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + 메타 데이터 서버 + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + iSCSI 게이트웨이 + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + 용량 + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity - Raw Capacity + 물리 용량 + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status PG 상태 + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + 스토리지 디바이스 별 PG + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + 클라이언트 읽기/쓰기 + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + 클라이언트 처리량 + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + 복구 처리량 + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + 빠른 데이터 정리 중 + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + 읽기 + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s - /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + 쓰기 + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + 사용 가능 + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean - Clean + 정상 + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + 동작 중 + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + 알려지지 않음 + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + 정상 + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + 잘못 배치됨 + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + 유실됨 + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + 찾을 수 없음 + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + 오브젝트 + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + 여기 + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + 정상 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + 파일 시스템 없음 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + 활성 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + 대기 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + 대기중인 데몬 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + 활성화된 데몬 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay - standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a - n/a + 없음 + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total - total + 전체 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + 가득참 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + 주소 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + 접근 형태 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster - Cluster + 클러스터 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + NFS 프로토콜 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + 스토리지 백엔드 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User - CephFS User + CephFS 사용자 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + CephFS 파일 시스템 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + 보안 라벨 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway - Object Gateway + 오브젝트 게이트웨이 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + 오브젝트 게이트웨이 사용자 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + 모든 클라이언트 접근 가능 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + 주소 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + 쉼표로 구분된 값을 하나 이상 포함해야 합니다. +  + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + 예를들면: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + 접근 형태 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + 클라이언트 추가 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (글로벌 구성에서 상속) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- -- 접근 형태를 선택하세요 -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + 글로벌 구성에서 상속 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + - 어떤 종류의 사용자 ID 스쿼시가 수행되는지 선택하세요 - + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- 사용가능 클러스터가 없습니다 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- 클러스터를 선택하세요 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume - Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- 사용 가능한 CephFS 파일 시스템이 없습니다 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- CephFS 파일 시스템을 선택 하세요 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + 보안 라벨 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + 보안 라벨 활성화 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + CephFS 경로 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + 경로는 '/'로 시작해야하며 그 뒤에 단어가 올 수 있습니다. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + NFS 프로토콜 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. 다른 Pseudo 옵션을 사용하면, 동일한 경로를 여러 번 내보낼 수 있습니다. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + Pseudo는 '/'로 시작해야 하며 다음 문자를 포함할 수 없습니다. : >, <, |, &, . + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- 사용가능한 접근 형태가 없습니다 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- 사용 가능한 squash가 없습니다. -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + 전송 프로토콜 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + NFS 내보내기 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway - Object Gateway + 오브젝트 게이트웨이 + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + 성능 카운터를 사용 할 수 없습니다. + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + 이름은 영숫자, 대시 및 밑줄로만 구성 될 수 있습니다. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + 선택한 Erasure Code 프로필 이름이 이미 사용 중입니다. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + 도메인 유형 실패 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + 장치 클래스 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule 크러쉬 규칙 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + 플러그인 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + 데이터 덩어리 (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + 반드시 2보다 크거나 같아야합니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + 균등 분포의 경우 k는 (k+m)/l의 배수여야 합니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + c를 통해 데이터를 올바르게 복구하려면 K가 m보다 크거나 같아야 합니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + 코딩 덩어리 (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + 반드시 1보다 크거나 같아야 합니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + 내구성 평가(c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + C는 사용할 수 있는 Chunks의 양을 정의하는 mas보다 작거나 같아야 합니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) 도우미 덩어리 (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + 수동으로 설정하거나 d를 최대화하는 플러그인의 기본 계산을 사용합니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + K 및 m 변경 시 D가 자동으로 업데이트 됩니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D has to be greater than k ( - ). - + D has to be greater than k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + 지역 (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + 현재 위치에서 Chunks(k+m)를 올바르게 분할할 수 없습니다. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + 크러쉬 실패 도메인 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + 크러쉬 Locality + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + 없음 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + 스칼라 mds + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + 기술 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + 패킷 크기 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + 크러쉬 루트 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + 크러쉬 장치 클래스 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + 디렉토리 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + EC 프로필 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + 캐시 계층 상세설명 + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode 캐시 모드 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + 최소 Evict Age + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + 최소 Flush Age + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + 목표 최대 바이트 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + 목표 최대 오브젝트 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + 추가된 응용프로그램이 없습니다. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + 응용프로그램 제한에 도달했습니다. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + 하나의 데이터 풀은 오직 네개의 응용프로그램 정의를 가질 수 있습니다. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + '_a-zA-Z0-9' 문자만 사용 가능합니다. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters 최대 길이는 128 문자 입니다. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + 응용 프로그램을 필터링 하거나 추가합니다. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + 응용프로그램 추가 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + 선택한 Ceph 데이터 풀 이름이 이미 사용중입니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + 이름에 '/'을(를) 사용하여 RBD 데이터 풀을 만들 수 없습니다. 이름을 변경하거나 응용 프로그램 목록에서 'rbd'를 제거하십시오. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + 데이터 풀 이름에는 문자, 숫자, '.', '-', '_' 또는 '/' 만 사용할 수 있습니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + 데이터 풀 형태 + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- 데이터 풀 형태를 선택하세요 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + PG 오토스케일 + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + 배치 그룹 + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + 적어도 하나의 배치 그룹이 필요합니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. 클러스터에서 이렇게 많은 PG를 처리할 수 없습니다. 필요한 PG 금액을 다시 계산해 주세요. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help - Calculation help + 계산 도움말 + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + 현재 PG 설정이 계산 되었으므로 제출하기 전에 해당 값이 필요한지 확인해야 합니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + 복제 크기 + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + 크기가 1이면 개체의 복제가 생성되지 않습니다. '복제된 크기'에는 개체 자체가 포함됩니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + EC 덮어쓰기 + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + 응용 프로그램 + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + 미러링 + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH - CRUSH + 크러쉬 + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + Erasure Code 프로필 + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- 사용가능한 Erasure Code 프로필이 없습니다 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- Erasure Code 프로필을 선택하세요 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + 이 프로필은 사용 중입니다. 삭제할 수 없습니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + 프로필 + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + 데이터 풀에서 사용됨 + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + 프로필이 사용 중이 아닙니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset - Crush ruleset + 크러쉬 규칙 + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + 새로운 크러쉬 규칙이 자동으로 생성됩니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + 규칙이 없습니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- 크러쉬 룰을 선택하세요 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + 이 규칙은 사용 중입니다. 삭제할 수 없습니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + 크러쉬 규칙 + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps - Crush steps + 크러쉬 단계 + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + 규칙이 사용 중이 아닙니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + 스토리지 디바이스가 너무 적어서 이 규칙에 필요한 최소 스토리지 디바이스를 충족할 수 없으므로 현재 클러스터에서 규칙을 사용할 수 없습니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + 압축 + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + 알고리즘 + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- 이용가능한 Erasure 압축알고리즘이 없습니다 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + 최소 blob 크기 + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + 예) 128KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + 값은 0보다 커야합니다 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + 값은 최대 blob 크기보다 작아야 합니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + 최대 blob 크기 + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + 예) 512KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + 값은 최소 blob 크기보다 커야 합니다 + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + 비율 + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + 압축율 + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + 값은 0.0과 1.0 사이 여야 합니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + 최대 바이트 + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + 이 할당량을 사용하지 않으려면 비워 두거나 0을 지정하십시오. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + 유효한 할당량은 0보다 커야 합니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + 최대 오브젝트 + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + 값은 0보다 크거나 같아야 합니다. + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + 데이터 풀 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + Erasure code 프로필 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + 크러쉬 규칙 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + 데이터 풀 목록 + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + 데이터 보호 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + 응용 프로그램 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status - PG Status + PG 상태 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + 크러쉬 규칙 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + mon_allow_pool_delete 구성 설정에 의해 데이터 풀 삭제가 비활성화되었습니다. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key - Key + 키 + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + 버전 관리 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + MFA 삭제 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + 색인 형식 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + 배치 규칙 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + 버킷 할당량 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + 활성화 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + 최대 크기 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + 무제한 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + 최대 오브젝트 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + 잠금 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days 기간 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id 아이디 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + 선택한 이름이 이미 사용중입니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + 버킷 이름에는 대문자 또는 밑줄을 사용할 수 없습니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + 각 라벨은 소문자 또는 숫자로 시작하고 끝나야 합니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + 버킷 이름의 형식은 IP 주소로 지정할 수 없습니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + 버킷 이름은 3자에서 63자 사이여야 합니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + 소유자 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- 사용자를 선택하세요 -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + 버킷의 개체에 대한 버전 관리를 사용하도록 설정합니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + 다중 인증 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + 삭제 활성화 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + 버킷 버전 상태를 변경하기 위해 추가 인증이 필요한 MFA(다중 인증) 삭제를 사용하도록 설정합니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + 토큰 시리얼 번호 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + 토큰 PIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. 버킷의 개체에 대해 잠금을 활성화합니다. 잠금은 버킷을 만드는 동안에만 사용할 수 있습니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + 이 버킷에 배치된 새 개체에 적용할 기본 보존 기간(일)입니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + 입력한 값은 양의 정수여야 합니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + 보존 일수는 양의 정수여야 합니다. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + 배치 대상 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- 배치 대상을 선택하세요 -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + 버킷 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + 제한 없음 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + 소유자 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + 사용된 용량 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + 용량 제한 % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + 오브젝트 제한 % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + 성능 카운터 + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + 성능 동기화 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group - Zone Group + Zone 그룹 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + 해당 개수의 데몬만 생성됩니다. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + 제로 그룹 + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + 데이터 풀 + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + 오류 + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- -- 형태를 선택하세요 -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + 권한 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- -- 권한을 선택하세요 -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + 기능 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + 키 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show - Show + 보기 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + 사용자 ID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + 이름 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + 이메일 주소 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + 일시 정지됨 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + 최대 버킷 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + 보조 사용자 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + 기능 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + 사용자 할당량 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + 사용자 이름 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + 무제한 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + 값이 유효하지 않습니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + 선택된 사용자 아이디가 이미 사용 중입니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + Tenant 보기 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + 선택한 사용자 ID가 이 tenant에 있습니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. - This is not a valid email address. + 이메일 주소가 유효하지 않습니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + 선택한 이메일 주소가 이미 사용 중입니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + 최대 버킷 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + 비활성화 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom - Custom + 사용자 설정 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + 입력한 값은 1 이상 이어야 합니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + S3 키 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key 자동 생성된 키 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + 접근 키 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + 비밀 키 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + 보조 사용자가 없습니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + 키가 없습니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift - Swift + 스위프트 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + 기능이 없습니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + 모든 기능이 이미 추가 되었습니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + 무제한 크기 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + 최대 크기 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + 무제한 오브젝트 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + 최대 오브젝트 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + 입력된 값은 0 이상 이어야 합니다. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + 사용자 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + 보조 사용자 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + S3 키 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + 이름 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + 이메일 주소 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + 일시 중단 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + 최대 버킷 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users - users + 사용자 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- 사용자명을 선택하세요 -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + 보조 사용자 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + 선택한 보조 사용자 아이디가 이미 사용중입니다. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + 읽기, 쓰기 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + 가득참 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + 스위프트 키 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + 자동 생성된 암호 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + 보조 사용자 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + 스위프트 키 + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + 사용자 + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + 역할 + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + 호스트 이름 또는 스토리지 디바이스 아이디가 지정되지 않았습니다. + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + 장치 아이디 + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + 상태 + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + 좋음 + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + 나쁨 + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + 오래됨 + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + 기대 수명 + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + 예측 생성 날짜 + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + 장치 이름 + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons 데몬 + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + SMART 데이터를 가져오지 못했습니다. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + 수신된 데이터는 JSON 형식 버전 2.x이며 현재 대시보드와 호환되지 않습니다. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + SMART 데이터를 사용할 수 없습니다. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + SMART의 전반적인 상태 자가 평가 테스트 결과입니다. + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + 알려지지 않음 + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + 통과됨 + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + 실패함 + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + 장치 정보 + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + 이 장치에 사용할 수 있는 장치 정보가 없습니다. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART - SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + 이 장치에 사용할 수 있는 SMART 데이터가 없습니다. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + SMART 데이터를 불러 오고 있습니다. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + 임계치 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + 실패 했을 때 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + 최악의 경우 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + 새로운 비밀번호를 입력하세요. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + 다음에는 로그인 페이지로 연결됩니다. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + 기존 비밀번호와 새로운 비밀번호는 같지 않아야 합니다. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. 새로운 비밀번호가 일치하지 않습니다. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + 사용자 이름이 필요합니다 + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + 비밀번호가 필요합니다 + + src/app/core/auth/login/login.component.html + 48 + Log in - Log in + 로그인 + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + 범위 + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + 생성 + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + 업데이트 + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + 삭제 + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + 세부 설명 + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + 권한 + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + 규칙 + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role - System Role + 시스템 규칙 + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + 새로운 이름 + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + 규칙 복제 + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + 존재하는 사용자 이름 입니다. + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + 비밀번호 확인 + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + 비밀번호 확인이 일치하지 않습니다. + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + 비밀번호 만료일 + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + 비밀번호 만료일 + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + 이메일 + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + 유효하지 않은 이메일 + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + 사용자는 다음 로그온 시 비밀번호를 변경해야 합니다. + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + 사용자 자신의 사용자로부터 "사용자 읽기/업데이트" 권한을 제거하려고 합니다. + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + 계속할 경우 더 이상 사용자로부터 역할을 추가하거나 제거할 수 없습니다. + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + 역할이 없습니다. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Created user ' - ' - + Created user '' + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + 사용자 업데이트 + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + 역할이 변경되어 자동으로 로그아웃 되었습니다. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + 이메일 + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + 역할 + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + 기존 비밀번호 + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + 새로운 비밀번호 + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + 새로운 비밀번호 확인 + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + 비밀번호 + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + 비밀번호가 업데이트되었습니다 + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + 선택한 오브젝트 게이트웨이: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + 오브젝트 게이트웨이 선택 + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + 죄송합니다, 페이지를 찾을 수 없습니다. 요청한 페이지가 변경되거나 이동 되었을 수 있습니다. + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + 대시보드로 이동 + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + 페이지를 찾을 수 없습니다. + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + 죄송합니다, 찾으시는 것을 찾을 수 없습니다. +요청한 페이지가 변경되거나 이동 되었을 수 있습니다. + + src/app/core/error/error.ts + 11,12 + Access Denied 접근 거부 + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + 죄송합니다. 이 페이지 또는 리소스를 볼 수 있는 권한이 없습니다. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + 사용자가 거부되었습니다. + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. 죄송합니다. 사용자가 Ceph에 없습니다. 로그인을 다시 시도하면 ID 제공자에서 로그아웃됩니다. + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + 도움말 + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + 보안 + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + 상표 + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + 대시보드 설정 + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + 사용자 관리 + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + 원격 분석 구성 + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + 도움말 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + 문서 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + 정보 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + 로그인된 사용자 + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + 비밀번호 변경 + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + 내비게이션 전환 + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + 크러쉬 맵 + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + 버킷 + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + 파일 시스템 + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + 로그 + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + 매니저 모듈 + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + 작업 및 알림 + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + 데이터를 배치할 노드의 이름입니다. + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + 복제본을 분리해야 하는 CRUSH 노드의 유형입니다. + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + 각각의 오브젝트들은 데이터-덩어리 부분들로 분리되어, 각기 다른 스토리지 디바이스에 보관됩니다. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + 각 오브젝트들에 대한 코딩 덩어리를 계산하고 서로 다른 스토리지 디바이스에 저장합니다. +코딩된 덩어리의 수는 데이터 손실없이 작동 중지 될 수 있는 스토리지 디바이스의 숫자이기도합니다. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + Jerasure 플러그인은 가장 일반적이고 유연한 플러그인으로, +또한 Ceph erasure 코드 데이터 풀의 기본값입니다. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + 보다 유연한 기술은 reed_sol_van입니다 : k와 m을 설정하면 충분합니다. +cauchy_good 기술은 빠를 수 있지만 패킷크기를 주의깊게 선택해야합니다. +reed_sol_r6_op, liberation, blaum_roth, liber8tion은 모두 m = 2로만 구성 할 수 있다는 점에서 RAID-6에 해당합니다. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + 인코딩은 한 번에 바이트 크기의 패킷에 대해 수행됩니다. +올바른 패킷 크기를 선택하는 것은 어렵습니다. +삭제 문서에는 이 항목에 대한 자세한 정보가 포함되어 있습니다. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,77 +17097,103 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. - - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + jerasure 플러그인을 사용하면 삭제 된 코딩 된 객체가 여러 스토리지 디바이스에 저장 될 때 하나의 스토리지 디바이스가 손실되는 것을 복구하려면 다른 모든 스토리지 디바이스를 읽어야합니다. 예를 들어 jerasure가 k = 8 및 m = 4로 구성되어있는 경우 하나의 스토리지 디바이스를 잃어 버리면 11 명의 다른 사람들이 수리해야합니다. +lrc erasure code plugin은 적은 양의 스토리지 디바이스를 사용하여 복구 할 수 있도록 로컬 패리티 덩어리를 만듭니다. 예를 들어, lrc가 k = 8, m = 4 및 l = 4로 구성된 경우 4 개의 스토리지 디바이스 마다 추가 패리티 덩어리가 생성됩니다. 단일 스토리지 디바이스가 손실되면 11 개 대신 4 개의 스토리지 디바이스만으로 복구 할 수 있습니다. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, for k=4 and m=2, when locality=3 two groups of three are created. Each set can be recovered without reading chunks from another set. 코딩 및 데이터 청크를 크기 지역 집합으로 그룹화합니다. 예를 들어, k = 4 및 m = 2에 대해, 지역성 = 3 일 때 두 개의 세 그룹이 생성됩니다. 각 세트는 다른 세트의 청크를 읽지 않고도 복구 될 수 있습니다. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + l로 정의 된 각 청크 집합이 저장되는 크러시 버킷의 유형입니다. 예를 들어 랙으로 설정하면 l 개의 청크 그룹이 각각 다른 랙에 배치됩니다. +랙 선택 단계와 같은 CRUSH 규칙 단계를 만드는 데 사용됩니다. 설정되어 있지 않으면, 그러한 그룹화가 수행되지 않습니다. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + isa 플러그인은 ISA 라이브러리를 캡슐화합니다. 인텔 프로세서에서만 실행됩니다. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + ISA 플러그인은 두 개의 리드 솔로몬 형식으로 제공됩니다. +reed_sol_van이 설정되면 Vandermonde, cauchy가 설정되면 Cauchy입니다. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + shec plugin은 다중 SHEC 라이브러리를 캡슐화합니다. + ceph가 리드 솔로몬 코드보다 더 효율적으로 데이터를 복구 할 수 있습니다. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + 각 데이터 덩어리가 계산 범위에 포함되는 패리티 덩어리의 수입니다. 이 수치는 내구성 측정기로 사용됩니다. 예를 들어, c = 2 인 경우 2 개의 스토리지 디바이스가 데이터 손실없이 중단 될 수 있습니다. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + CLY(커플링 레이어) 코드는 다음을 위해 설계된 삭제 코드입니다. +장애가 발생한 경우 네트워크 대역폭 및 디스크 IO 측면에서 상당한 절감 효과를 가져옵니다. +노드/스토리지 디바이스/랙을 복구하는 중입니다. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + 단일 덩어리를 복구하는 동안 데이터를 전송하도록 요청된 스토리지 디바이스 수입니다. +d는 k+1 = d = k+m-1로 선택해야 합니다. d가 클수록 절감 효과가 좋습니다. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8911,1738 +17201,2788 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + CRUSH 규칙의 첫 번째 단계에 사용 된 크러시 버킷의 이름입니다. 예를 들어 step은 기본값을 취합니다. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + 동일한 실패 도메인을 가진 양동이에 두 개의 청크가 없는지 확인하십시오. 예를 들어 실패 도메인이 호스트 인 경우 두 개의 청크가 동일한 호스트에 저장되지 않습니다. 이 단계는 리프 호스트를 선택하는 단계와 같은 CRUSH 규칙 단계를 만드는 데 사용됩니다. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. Erasure Code 플러그인을 불러오는 디렉토리 이름을 설정하십시오. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + 모든 작업 허용 + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + 서버를 수정하지 않는 작업만 허용합니다. + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + 접근을 허용하지 않습니다. + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. - Please specify a filesystem volume. + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + Orchestrator를 사용할 수 없으므로 기능이 비활성화됩니다. + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + Orchestrator 백엔드는 이 기능을 지원하지 않습니다. + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- 우선순위를 선택하세요 -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + 낮음 + + src/app/shared/api/osd.service.ts + 44 + High - High + 높음 + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + 사용자 목록 데이터가 오래되었을 수 있습니다. 필요한 경우 수동으로 다시 불러올 수 있습니다. + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + 데이터를 검색하는 중입니다. + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... 잠시만 기다려 주세요... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + 이전에 캐시 된 데이터를 표시합니다. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + 데이터를 불러올 수 없습니다. + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + 클러스터 상태를 확인하세요. + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + 오류 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + 정보 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + 성공 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + 위험 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + 사용자 지정 구성 값을 제거합니다. 기본 구성이 사용됩니다. + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + 클립보드에 복사하기 + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. - Yes, I am sure. + 예, 확실합니다. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation 문서 + + src/app/shared/components/doc/doc.component.ts + 12 + Download 다운로드 + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + 이 필드는 필수입니다. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + 오류가 발생했습니다. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + 패널 데이터 로딩 중... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Grafana 시간 선택 도구 + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + 설정 초기화 + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + 지난 1시간 (기본) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday 어제 + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + 오늘 지금까지 + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + 그저께 + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + 지난 2일 + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + 이번 주 마지막날 + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week 지난 주 + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + 이번주 지금까지 + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + 지난 7일 + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + 지난 달 + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + 이번 달 지금까지 + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + 지난 30일 + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + 지난 90일 + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + 지난 6개월 + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + 지난 1년 + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + 작년 + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + 이번 년도 지금까지 + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + 지난 2년 + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + 지난 5년 + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + 언어 선택 + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + 알림 초기화 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + 알림 제거 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + 기간 : + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + 알림이 없습니다. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + 이 기능은 현재 Orchestrator에서 지원되지 않습니다. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + 새로고침 + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + 선택된 아이템이 없습니다. + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + 다시 선택하기 + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + 선택 한계에 도달함 + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + 필터 태그 + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + 배지 추가 + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + 사용가능한 아이템이 없습니다. + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + 원격 분석 활성화 알림이 음소거되었습니다. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + 언제든지 원격 분석 구성 페이지(<b> 대시보드 설정 </b>-> <b>원격 분석 구성</b>)에서 모듈을 활성화 할 수 있습니다. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export 내보내기 + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + 추가 + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + 설정 + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + 제출 + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + 제거 + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + 설정 해제 + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + 취소 + + src/app/shared/constants/app.constants.ts + 176 + Preview - Preview + 미리보기 + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + 이동 + + src/app/shared/constants/app.constants.ts + 178 + Next 다음 + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + 뒤로 + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + 복제 + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + 복사 + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + 데이터 정리 + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + 파기 + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + 퇴출 + + src/app/shared/constants/app.constants.ts + 189 + Flatten 평평함 + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + 다운 표시 + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + 인 표시 + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + 손실 표시 + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + 아웃 표시 + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + 보호 + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + 이름 변경 + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + 복구 + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + 가중치 조정 + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + 빠른 데이터 정리 + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + 보기 + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + 휴지통으로 옮기기 + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + 보호되지 않음 + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + 변경 + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + 유지보수 모드 설정 + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + 유지보수 모드 해제 + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain - Stop Drain + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + 재생성 + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + 만료 + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + 비활성화 + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + 삭제됨 + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + 추가됨 + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + 제거됨 + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + 수정됨 + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + 취소됨 + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + 미리보기 + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + 옮겨짐 + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + 복제됨 + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + 복사됨 + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + 데이터 정리 완료 + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + 파기됨 + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + 평평하게 됨 + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + 다운 표시됨 + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + 인 표시됨 + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + 손실 표시됨 + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + 아웃 표시됨 + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + 보호됨 + + src/app/shared/constants/app.constants.ts + 313 + Purged 완전 삭제됨 + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + 이름 변경됨 + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + 복구됨 + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + 가중치가 조정됨 + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + 롤백됨 + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + 빠른 데이터 정리 완료 + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + 보기 + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + 휴지통으로 옮겨짐 + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + 보호되지 않음 + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + 재생성됨 + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + 만료됨 + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + 닫기 + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + 필터 초기화 + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + 선택됨 + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + 발견됨 + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total - total - X total + 전체 + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row - Expand/Collapse Row + 행 확장/축소 + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + 데이터 로딩 실패 + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + 데이터 양식을 불러오고 있습니다. + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + 데이터 양식을 불러올 수 없습니다. + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + 예 + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + 아니오 + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + %s 안에 + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + %s 전에 + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + 몇 초 + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d 초 + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + 1분 + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + %d 분 + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + 1시간 + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d 시간 + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + 하루 + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d 일 + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + 1주 + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d 주 + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + 한달 + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months - %d months + %d 달 + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year 1년 + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d 년 + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + 비밀번호에 필요한 규칙은 다음과 같습니다 : + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Must contain at least - characters - + Must contain at least characters + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + 기존과 동일하지 않아야 합니다. + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + 사용자 이름을 포함할 수 없습니다. + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + 구성된 키워드를 포함할 수 없습니다. + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + 반복 문자를 포함할 수 없습니다 (예: aaa). + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + 연속 문자를 포함할 수 없습니다 (예: abc). + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + 다음 그룹의 문자로 구성되어야 합니다. +* 알파벳 a-z, A-Z입니다. +* 0-9번입니다. +* 특수 문자: !"#$%&'()*+,-./;=?@[\]^_`{{|}}~ +* 기타 문자(부호)입니다. + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + 항목이 현재 정의된 규칙이나 활성화 된 경고와 일치하지 않는 것 같습니다. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts - no active alerts + 활성화 된 경고 없음 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1개의 경고 활성화 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + 1개의 규칙이 일치합니다. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + 서비스 양 + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + BPS 제한 + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + 원하는 초당 IO 바이트 수 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + IOPS 제한 + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + 원하는 초당 IO 작업 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + 읽기 BPS 제한 + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + 원하는 초당 읽기 바이스 수 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + 읽기 IOPS 제한 + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + 원하는 초당 읽기 작업 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + 쓰기 BPS 제한 + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + 원하는 초당 쓰기 바이트 수 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + 쓰기 IOPS 제한 + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + 원하는 초당 쓰기 작업 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + BPS 버스트 + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + 원하는 버스트 IO 바이트 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + IOPS 버스트 + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + 원하는 IO 작업의 버스트 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + 읽기 BPS 버스트 + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + 원하는 읽기 버스트 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + 읽기 IOPS 버스트 + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + 원하는 읽기 작업의 버스트 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + 쓰기 BPS 버스트 + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + 쓰기 바이트의 원하는 버스트 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + 쓰기 IOPS 버스트 + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + 쓰기 바이트의 원하는 버스트 제한입니다. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + 실행중 + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + 실행 + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + 실행됨 + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + 알려지지 않는 작업 + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + 생성하는 중 + + src/app/shared/services/task-message.service.ts + 67 + create - create + 생성 + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + 업데이트 중 + + src/app/shared/services/task-message.service.ts + 68 + update - update + 업데이트 + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + 삭제 중 + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding 추가 중 + + src/app/shared/services/task-message.service.ts + 70 + add - add + 추가 + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + 제거 중 + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + 제거 + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + 가져오는 중 + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + 가져오기 + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + 가져옴 + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + 미러링 사이트 이름 + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + 부트스트랩 토큰 + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + 모든 대시보드 + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + 식별하는중 + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + 식별 + + src/app/shared/services/task-message.service.ts + 133 + Identified 식별됨 + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + 복제중 + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + 복제 + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + 복사중 + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + 복사 + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + 평평하게 하는 중 + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + 평평함 + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + + src/app/shared/services/task-message.service.ts + 243 + Rolling back 롤백 중 + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + 롤백 + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + 이동 중 + + src/app/shared/services/task-message.service.ts + 256 + move - move + 이동 + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. 이미지를 찾을 수 없습니다. + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + 복구중 + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + 복구 + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + Image name '' is already in use. + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + 완전히 삭제 하는중 + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + 완전히 삭제 + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + 모든 데이터 풀 + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + 피어가 포함되어 있기 때문에 미러링을 비활성화 할 수 없습니다. + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - host ' - ' - + host '' + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.pl-PL.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.pl-PL.xlf index 34db3e81e14..c2ff3c471f0 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.pl-PL.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.pl-PL.xlf @@ -1,8827 +1,16698 @@ - - + + Close - Close + Zamknij + + node_modules/src/ngb-config.ts + 13 + HH - HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + Zamknij + + node_modules/src/ngb-config.ts + 13 + «« - «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + Poprzedniego miesiąca + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours - Hours + + node_modules/src/ngb-config.ts + 13 + « - « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + + node_modules/src/ngb-config.ts + 13 + MM - MM + + node_modules/src/ngb-config.ts + 13 + » - » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + + node_modules/src/ngb-config.ts + 13 + »» - »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + + node_modules/src/ngb-config.ts + 13 + First - First + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + + node_modules/src/ngb-config.ts + 13 + Next - Next + + node_modules/src/ngb-config.ts + 13 + Increment minutes - Increment minutes + + node_modules/src/ngb-config.ts + 13 + Last - Last + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + + node_modules/src/ngb-config.ts + 13 + SS - SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + Przegląd + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets Obiekty docelowe + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology - iSCSI Topology + Topologia iSCSI + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + Nazwa + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + Obecny + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + Domyślna + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication Uwierzytelnianie wykrywania + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + Użytkownik + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + Pole jest wymagane. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + Hasło + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + Wspólny użytkownik + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + Wspólne hasło + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + Zaktualizowane uwierzytelnianie wykrywania + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + Nazwa IQN obiektu docelowego iSCSI + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + Błędna składnia nazwy IQN. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + IQN ma następującą notację „iqn. $ Rok-$ miesiąc. $ odwróconyAdres: $ zdefiniowanaNazwa” + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Na przykład: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + Więcej informacji + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + Ten obiekt docelowy zmodyfikował zaawansowane ustawienia. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + Portale + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + Dodaj portal + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images Obrazy + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + Ten obraz zmodyfikował ustawienia. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + Dodaj obraz. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + Uwierzytelnianie ACL + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + Inicjatory iSCSI + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + Inicjator iSCSI + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + Klient IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + Inicjator IQN powinien być unikalny. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + Inicjator iSCSI należą do grupy. Obrazy będą skonfigurowane w grupie. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + Brak dodanych pozycji. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + Dodaj inicjator iSCSI + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + Grupy + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + Grupa + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + Nazwa + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + Dodaj grupę + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. Brak dostępnych portali. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + Nie ma dostępnych obrazów. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. Nie ma dostępnych obrazów. Proszę się upewnić, że dodajesz obraz do obiektu docelowego. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. Nie ma dostępnych inicjatorów iSCSI. Proszę upewnić się, że dodajesz inicjator iSCSI do obiektu docelowego. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + Zmiana tych parametrów z domyślnych wartości przeważnie nie jest potrzebna. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun - lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn - wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + Ustawienia + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore - Backstore + Tylny koniec przechowywania + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + Ustawienia zaawansowane + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + obiekty docelowe iSCSI niedostępne + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + Dostępne informacje: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + obiekt docelowy iSCSI + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + Portale + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + Obrazy + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions - # Sessions + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + Stan + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool - Pool + Pul + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image Obraz + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore - Backstore + Tylny koniec przechowywania + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + Odczyt bajtów + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + Zapis bajtów + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + Odczyt Ops + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + Zapis Ops + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + A/O Od + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token - Create Bootstrap Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + Nazwa... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + Pule + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + Zamknij + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + Instancja + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname Nazwa hosta + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version - Version + Wersja + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + Zdrowie + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + Zagadnienie + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + Progres + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description - Description + Opis + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons - Daemons + Demony + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + Tryb edycji lustrzanego pula + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + Tryb + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + Sparowany klaster musi być usunięty przed wyłączeniem lustra. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + Wyłączony + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + Nazwa Klastra + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + Nazwa klastra jest niepoprawna + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID CephX ID + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... CephX ID... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + ID CephX nie jest poprawne. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + Adres monitora + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + Adresy rozdzielane przecinkami... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + Adres monitora nie jest poprawny. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key Klucz CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Klucz zakodowany w Base64... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. Klucz CephX musi być zakodowany w Base64/ + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + # Lokalny + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + # Zdalny + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + Tryb Edycji + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer Dodaj parowanie + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer Edytuj parowanie + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + Usuń parowanie + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode Tryb + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader Lider + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + # Lokalny + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + # Zdalny + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + lustrzane parowanie + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + Inicjator iSCSI + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + Ładowanie... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host Host + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport Transport + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool - Pool + Pul + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- - -- Select a pool -- + -- Wybierz pul -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + '/' and '@' nie są dozwolone. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS - IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + Szczegóły + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. - The value must be at least 1. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration Konfiguracja RBD + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. - Remove the local configuration value. The parent configuration value will be inherited and used instead. + Usuń wartość konfiguracji lokalnej. Wartość konfiguracji rodzica będzie odziedziczona i zostanie użyta zamiast tej. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global - Global + Globalne + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + Obraz + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + Klucz + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + Źródło + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + Wartość + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + Dane pula + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + Utworzony + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + Rozmiar + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + Obiekty + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + Rozmiar obiektu + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + Funkcje + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + Zaopatrzony + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A - N/A + Niedostępny + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned - Total provisioned + Całkowite rezerwy + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + Jednostka maskowana + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + Licznik maskowania + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + Rodzic + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + Prefiks nazwy bloku + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + Zamówienie + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + Migawki + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + Konfiguracja + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + Wydajność + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + To ustawienie zastępuję wartość globalną. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + To jest globalna wartość. Dla tego obrazu nie ustawiono żadnej wartości dla tej opcji. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- Brak danych puli -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + Musisz zwiększyć rozmiar. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping - Striping + Maskowanie + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- Wybierz jednostkę pasków -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + Pole jest wymagane, ponieważ licznik pasków jest zdefiniowany. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + Jednostka pasków jest większa niż rozmiar obiektu. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + Pole jest wymagane, ponieważ jednostka pasków jest zdefiniowana! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + Licznik pasków musi być większy od 0. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD - RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + Głębokie spłaszczenie + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + Warstwowanie + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + Wyłączna blokada + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + Mapa obiektów (wymaga wyłącznej blokady) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + Rozmiar + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + Użycie + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + Obiekty + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + Rozmiar obiektu + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + Rodzic + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + Kopia lustrzana + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + Ostrzeżenie + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- Brak dostępnych rbd puli -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. - Namespace already exists. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + Zaraz się wycofasz. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + Użyty + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + ZABEZPIECZONE + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + NIEZABEZPIECZONY + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + Utworzony + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + Wycofywanie migawek RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + Wycofanie + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + migawka RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + Kosz + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + Całkowita wydajność + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + Usuń Śmieci + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + Wygasły w + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + Zabezpieczony do + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status Status + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At - Deleted At + Usunięty o + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + Przenieś obraz do kosza + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + Zabezpieczenie wygasa w + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + NIEZABEZPIECZONY + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Zły format daty. Proszę używać "RRRR-MM-DD GG:mm:ss". + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + Ochrona już wygasła. Proszę wybrać przyszłą datę lub zostawić pustą. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: - Pool: + Pul: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + Nazwa pula + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + Wszystkie + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + Przywróć obraz + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + Nowa Nazwa + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + To pole jest wymagane. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id id + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + typ + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + stan + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + wersja + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + administrator + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + Szeregi + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + Czuwanie demona + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + Ranga + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon - Daemon + Demon + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + Aktywność + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries centrale + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + i-węzły + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + Typ + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + Ścieżka + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + Zapisz + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + Zaktualizowany + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - in order to inherit - - + in order to inherit + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + Hosty + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label - Label + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled - Enabled + Uaktywniony + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + Ponowne łączenie, proszę czekać + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + Domyślna + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + np. 10 GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + Wszystkie + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + Czytaj + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute - Execute + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + Dane pula + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + Klienci + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + Szczegóły wydajności + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + Opis + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + Długi opis + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values Obecne wartości + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + Domyślny demon + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + Typ + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min Min + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max Max + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + Flagi + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + Usługi + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source Źródło + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + Poziom + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + Może być aktualizowany w czasie wykonywania (edytowalny) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + Tagi + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + Wartości enumerowane + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + Zobacz także + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + Wartość może być zaktualizowana w czasie wykonywania . + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + Demony/klienci nie pobierają tej wartości z +bazy danych skonfigurowanego monitora. Nie zezwalamy na ustawienie tej opcji przez 'konfiguracje ceph +ustaw.. '. Ta opcja powinna być skonfigurowana przez ceph.conf albo przez +terminal. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + Opcja działa tylko podczas startu demona. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + Opcja dotyczy tylko tworzenia klastra. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + Opcja tylko wpływa na tworzenie demona. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + Wartości + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true - true + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false - false + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - Updated config option - - + Updated config option + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + Poziom + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service Usługa - - - Modified - Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + Obecna wartość + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + Edytowalny + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs - CPUs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + Jesteś pewny, że chcesz kontynuować? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + Kontynuuj + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + widok CRUSH mapy + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + Nazwa hosta + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label - Add label + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host - host + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + Lista hostów + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash - Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity Pojemność rzędu + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash - Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - " - " has exited maintenance - + "" has exited maintenance + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + OSD-ki + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + Logi z klastra + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + Audyt logów + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module Edytuj moduł zarządzania + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + Wpisana wartość nie jest poprawnym UUID, np. 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + Wpisana wartość musi być poprawnym adresem IP + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - The entered value is too high! It must be lower or equal to - . - + The entered value is too high! It must be lower or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. Podana wartość musi być liczbą + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + Podana wartość musi być liczbą albo dziesiętną. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + Edytuj + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + Włączyć + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + Wyłączyć + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status Status + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + Klaster ID + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + Zmodyfikowana monmapa + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + epoka monmap + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con - quorum con + kworum con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon - quorum mon + kworum mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con wymagany con + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + Wymagane mon + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + W kworum + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + Nie w kworum + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + Adres publiczny + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + Otwarte sesje + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups - DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + Atrybuty (mapa OSD-ków) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + Metadane + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + Niedostępne metadane + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + Licznik wydajności + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. - Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + Dodaj + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters - Add devices by using filters + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + Nie powstały + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + OSD-ki nie mogą startować + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + Nie upadły + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + Raport z niepowodzenia OSD jest ignorowany, także monitory nie oznaczą OSD jako upadłego. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + Nie w + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + OSD-ki, które zostały oznaczone jako poza, nie będą oznaczone ponownie jako w gdy zostaną uruchomion + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + Nie poza + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + OSD-ki nie będą automatycznie oznaczone jako poza po konfiguracji interwału + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + Zaktualizowane flagi OSD-ków + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + Flagi OSD w całym klastrze + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + Pauza + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes Pauzuje czytanie i zapisywanie + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + Nie szoruj + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + Szorowanie jest wyłączone + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + Nie ma głębokiego szorowania + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + Głębokie szorowanie jest wyłączone + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + Brak zasypywania + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended Zasypywanie PG jest zawieszone + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded - OSD will choose not to backfill unless PG is also degraded + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + Nie przywrócono + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + Przywrócenie PGy jest zawieszone + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + Sortuj bitowo + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort Użyj sortowania bitowego + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + Usuń snap katalogi + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + OSD-ki zmieniły snapsety + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + Odzyskaj usunięte + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + Podczas zdrowienia zastosowano usunięcie zamiast parowania + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + Twardy limit logów PG + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + Ustawia twardy limit na długość logów PG + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices - Shared devices + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption - Encryption + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + Lista OSD-ków + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + poza + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + w + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + upadły + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + Zaznacz + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + Stracony OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + Zaznaczony jako stracony + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + Czyść + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD - OSD + OSD-ik + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + Oczyszczony + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + Zniszcz + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + Zniszczony + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + Flagi + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + PG-y + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + Czytanie bajtów + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + Zapis bajtów + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops Czytanie ops + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + Zapis ops + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + Usuń + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + Zaawansowane... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + Priorytet odzyskiwania OSD + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + Priorytet + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + Dostosuj wartości priorytetowe + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + Max zasypywanie + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active Max aktywność wyzdrowienia + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + Max pojedynczy start wyzdrowienia + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + Uśpienie wyzdrowienia + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + Zwyczaj + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + Wartość powinna być pomiędzy 0 a 1. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSDs - Scrub - + OSDs Scrub + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} - {VAR_SELECT, select, true {Deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + surowość + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + Wystartowany + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + Powiadomienia + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + Grupa + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + Edytuj + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + Usuń + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + Wartość + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- - -- No service available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + Wersja + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - Must be of the format hostname:port. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- - -- Select auth protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + Nazwa użytkownika + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL - SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. - Invalid SSL certificate. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: - Includes basic information about the cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons - Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: - Includes information about daemon crashes: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name - Organization name + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. - The entered value is too low! It must be greater or equal to 8. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy - Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + Wstecz + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + Pauza + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + Status klastra + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + Ostatnie 5 minut + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + Ostatnie 15 minut + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + Ostatnie 30 minut + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours Ostatnie 3 godziny + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + Ostatnie 6 godzin + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + Ostatnie 12 godzin + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + Ostatnie 24 godziny + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster - Cluster + Klaster + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning - Warning + Ostrzeżenie + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + Monitory + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + OSD-ki + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + Obiekty bram + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + Serwery metadanych + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + Bramy iSCSI + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + Pojemność + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity - Raw Capacity + Pojemność rzędu + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status Status PG + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + PG-y na OSD + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + Odczyt/Zapis klienta + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + Przepustowość klienta + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + Przepustowość odzyskiwania + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + Czyta + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s - /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + Pisze + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + Dostępny + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean - Clean + Czyść + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + Działający + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + Nieznany + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + Podniesiony + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + brak systemów plików + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + aktywny + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + Rezerwa + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + aktywny demon + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay - standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a - n/a + niedostępny + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total - total + Razem + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + pełny + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + Adresy + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + Typ dostępu + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster Klaster + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + Protokół NFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + Pamięć Podręczna + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User Użytkownik CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + system plików CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + Etykieta bezpieczeństwa + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway - Object Gateway + Dostęp obiektowy + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + Użytkownik dostępu obiektowego + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + Każdy klient ma dostęp + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + Adresy + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + Musi zawierać jedną albo więcej ,rozdzielonych przecinkiem, wartości + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + Na przykład: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + Typ dostępu + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + Dodaj klientów + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (Odziedziczyło z globalnej konfiguracji) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- -- Wybierz typ dostępu -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + Odziedziczyło z globalnej konfiguracji + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- Wybierz, jakiego rodzaju identyfikacja użytkownika ma być przeprowadzana -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- Brak dostępnego klastra -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- Wybierz klaster -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume - Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + Etykieta bezpieczeństwa + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + Uruchom etykietę bezpieczeństwa + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + Ścieżka CephFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + Ścieżka powinna zaczynać się z '/' i następne może być słowo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + Protokół NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. Używając różnych opcji Pseudo, ta sama Ścieżka może być wyeksportowana kilka razy. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- Brak dostępnych typów dostępu -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + - Brak squasha - + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + Protokół Transportu + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway - Object Gateway + Dostęp obiektowy + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + Liczniki wydajności nie są dostępne + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + Nazwa może składać się z alfanumerycznych znaków, kresek i podkreśleń. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + Wybrana nazwa profilu kodu kasowania jest już używana. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule - Crush Rule + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + Wtyczka + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + Ramka danych (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + Musi być większa bądź równa 2. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + Kodowanie kawałka (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + Musi być większa bądź równa 1. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + Estymator trwałości (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) - Helper chunks (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D has to be greater than k ( - ). - + D has to be greater than k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + Lokalność (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + Domena niepowodzenia Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + Lokalność Crusha + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + Nic + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + Technika + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + Rozmiar pakietu + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + korzeń Crusha + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + urządzenie klasy Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + Katalog + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + Szczegóły poziomów pamięci podręcznej + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode Tryb pamięci podręcznej + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + Min wiek eksmisji + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + Min wiek wyrównania + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + Max bajtów obiektu docelowego + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + Max obiektów docelowych + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + Nie dodano żadnego zastosowania + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + Osiągnięto limit zastosowań + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + Pul może mieć maksymalnie 4 definicje aplikacji. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + Dozwolone znaki '_a-zA-Z0-9' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters Maksymalna długość wynosi 128 znaków + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + Dodaj zastosowanie + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + Wybrana nazwa Ceph pula jest już użyta. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + Typ pula + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- Wybierz typ pula -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + Grupa umieszczenia + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + Przynajmniej jedna grupa umieszczenia jest wymagana + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. Twój klaster nie obsługuje tylu PG. Skalkuluj proszę potrzebną ilość PG. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help - Calculation help + Pomoc obliczeniowa + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + Replikowany rozmiar + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + EC Nadpisuje + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + Zastosowania + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + Kopia lustrzana + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH - CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + Skasuj profil kodu. + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- Brak profilu kasowania -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- Wybierz profil kodu wymazywania -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset zbiór zasad Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- Wybierz zasadę Crush -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + zasada Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps - Crush steps + Kroki Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + Kompresja + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + Algorytm + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- Brak algorytmu kompresji wymazywania -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + Minimalny rozmiar blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + np. 128 KB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + Wartość powinna być większa niż 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + Maksymalny rozmiar blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + np. 512 KB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + Wartość powinna być większa niż minimalny rozmiar blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + Stosunek + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + Skompresowany stosunek + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + Wartość powinna być pomiędzy 0.0, a 1.0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + skasuj profil kodu + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + Lista puli + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + Zastosowania + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status Status PG + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + Zbiór zasad Crush + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key Klucz + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + Typ indeksu + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + Zasada umieszczania + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + kontyngent wiadra + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + Uaktywniony + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + Maksymalny rozmiar + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + Nielimitowany + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + Maksimum obiektów + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days - Days + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id Number ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + Wybrana nazwa już jest użyta. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + Właściciel + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- Wybierz użytkownika -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. - Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + wiadro + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + Właściciel + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + Liczniki wydajności + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group - Zone Group + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + Strefa + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + Dane pul + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- -- wybierz typ -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + Pozwolenie + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- -- Wybierz pozwolenie -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability - capability + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + Klucze + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show Pokaż + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + Pełne imię + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + Adres email + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + Zawieszony + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + Maksimum wiader + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + pod-użytkownicy + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + Zdolności + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + Limit użytkownika + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + Nazwa użytkownika + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + Nielimitowany + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + Wartość nie jest poprawna. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + Wybrane ID użytkownika jest już użyte. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. Ten adres email nie jest poprawny. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + Wybrany adres email jest już użyty. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + Max. wiader + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + Wyłączony + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom - Custom + Zwyczaj + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + klucz S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key Auto-generowany klucz + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + Klucz dostępu + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + Tajny klucz + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + Nie ma pod-użytkowników. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 - S3 + S3 (prosty serwis przechowywania) + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + Nie ma kluczy. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift - Swift + Szybki + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + Nie ma zdolności. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + Nielimitowany rozmiar + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + Max. rozmiar + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + Nielimitowane obiekty + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + Max. obiektów + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + Podana wartość musi być >= 0 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + użytkownik + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + Pełne imię + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + Adres email + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + Zawieszony + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + Max. wiader + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users - users + użytkownicy + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- Wybierz nazwę użytkownika -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + pod-użytkownik + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + Wybrane ID pod-użytkownika jest już użyte. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + odczyt, zapis + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + pełny + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Szybki klucz + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + Auto-generowany sekret + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + pod-użytkownik + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + Użytkownicy + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + Role + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy - Life Expectancy + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons Demony + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART - SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. - Password confirmation doesn't match the new password. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + Nazwa użytkownika jest wymagana + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + Hasło jest wymagane. + + src/app/core/auth/login/login.component.html + 48 + Log in - Log in + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + Zakres + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + Stwórz + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + Zaktualizuj + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + Usuń + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + Opis... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + Pozwolenia + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role System roli + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + Potwierdź hasło + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + Potwierdzające hasło nie pokrywa się z hasłem. + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email Email + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + Niepoprawny email. + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + Zamierzasz usunąć uprawnienia „odczytu / aktualizacji użytkownika” od własnego użytkownika. + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + Jeśli kontynuujesz, nie będziesz mógł dodawać albo usuwać role od użytkowników. + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Created user ' - ' - + Created user '' + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + Zaktualizuj użytkownika + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + Zostałeś automatycznie wylogowany, ponieważ zostały zmienione twoje role. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email Email + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + Role + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + + src/app/core/error/error.ts + 11,12 + Access Denied - Access Denied + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. - Sorry, the user does not exist in Ceph. - You'll be logged out from the Identity Provider when you retry logging in. + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + Pomoc + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + Ustawienia Pulpitu + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + Zarządzanie użytkownikami + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + Pomoc + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API - API + Interfejs API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + O + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + Zalogowany użytkownik + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + Rozwiń + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + CRUSH mapa + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + Wiadra + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS - NFS + Sieciowy system plików NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + Logi + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. - Each object is split in data-chunks parts, each stored on a different OSD. + Każdy obiekt jest podzielony na części fragmentów danych, każdy jest przechowywany na innym OSD. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + Oblicz porcje kodu dla każdego obiektu i przechowuj je na różnych OSD. + Liczba fragmentów kodujących to również liczba OSD, które mogą zostać wyłączone bez utraty danych. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + Wtyczka jerasure jest najbardziej uniwersalną i elastyczną wtyczką, + jest to również domyślne ustawienie dla pui kodowanych przez Ceph. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + Bardziej elastyczną techniką jest reed_sol_van: wystarczy ustawić k + oraz m. Technika cauchy_good może być szybsza, ale musisz wybrać rozmiar pakietu + ostrożnie. Wszystkie reed_sol_r6_op, liberation, blaum_roth, liber8tion są odpowiednikami RAID6 + w tym sensie, że mogą być skonfigurowane tylko z m = 2. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,15 +16704,19 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + Z wtyczką jerasure, gdy obiekt zakodowany przy użyciu skasowania jest przechowywany na + wielu OSD-kach, odzyskiwanie po utracie jednego OSD wymaga odczytu ze wszystkich pozostałych. + Na przykład, jeśli konfiguracja skryptu ma wartość k = 8 ,m = 4 i l=4, utrata jednego OSD wymaga odczytu + od jedenastu innych do naprawy. - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + Wtyczka kodu wymazywania lrc tworzy fragmenty o parzystości lokalnej, aby móc je odzyskać + mniej OSD. Na przykład, jeśli lrc jest skonfigurowane z k = 8, m = 4 i l = 4, zostanie utworzony + dodatkowy fragment parzystości na każde cztery OSD. Gdy jeden OSD zostanie utracone, może to być + odzyskane tylko z czterema OSD zamiast jedenastu. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, @@ -8850,62 +16725,89 @@ Grupuj fragmenty kodu i danych w zestawy lokalizacji wielkości. Na przykład, dla k = 4 i m = 2, gdy lokalność = 3 tworzone są dwie grupy po trzy. Każdy zestaw może odzyskać bez czytania kawałków z innego zestawu. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined by l will be stored. For instance, if it is set to rack, each group of l chunks will be placed in a different rack. It is used to create a CRUSH rule step such as step choose rack. If it is not set, no such grouping is done. - The type of the crush bucket in which each set of chunks defined - by l will be stored. For instance, if it is set to rack, each group of l chunks will be - placed in a different rack. It is used to create a CRUSH rule step such as step choose - rack. If it is not set, no such grouping is done. + Typ wiadra CRUSH, w którym zdefiniowano każdy zestaw porcji + przez l zostaną zapisane. Na przykład, jeśli jest ustawiony na rack, każda grupa l porcji będzie + umieszczona w innym raku. Służy do utworzenia kroku reguły CRUSH, takiego jak krok wyboru + racka. Jeśli nie jest ustawiony, nie ma takiego grupowania. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + Wtyczka isa zawiera bibliotekę ISA. Działa tylko na procesorach Intel. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + Wtyczka ISA jest dostępna w dwóch formach Reed Solomon. + Jeśli ustawiono reed_sol_van, jest to Vandermonde, jeśli ustawiono cauchy, to jest to Cauchy. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + Wtyczka shec zawiera wiele bibliotek SHEC. + Pozwala ceph odzyskać dane bardziej efektywnie niż kody Reeda Solomona. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + Liczba kawałków parzystości, z których każdy zawiera każdą porcję danych w swoim zakresie obliczeń. Liczba jest używana jako estymator trwałości. Na przykład, jeśli c = 2, + 2 OSD można wyłączyć bez utraty danych. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8913,1738 +16815,2686 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - technique specifies the technique that will be picked - within the 'scalar_mds' plugin specified. Supported techniques - are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', - 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', - 'cauchy' for isa and 'single', 'multiple' for shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + Nazwa wiadra crush jest użyte do pierwszego kroku reguły CRUSH. +Na przykład krok jest domyślny. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + Upewnij się, że żadne dwie porcje nie znajdują się w wiadrze z tą samą awarią + domeny. Na przykład, jeśli domena awarii jest hostem, nie zostaną na niej zapisane dwie porcje + hosta. Służy do utworzenia kroku reguły CRUSH, takiego jak krok wyboru hosta. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. Ustaw nazwę katalogu, z którego ładowana jest wtyczka kodu kasowania. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + Dozwolone są wszystkie operacje + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + Dozwolone są operacje, które nie modyfikują serweru + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + Brak dostępu w ogóle + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. - Please specify a filesystem volume. + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- wybierz priorytet -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + Niski + + src/app/shared/api/osd.service.ts + 44 + High - High + Wysoki + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... - Please wait... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + Informacja + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. Tak, jestem pewny. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation - documentation + + src/app/shared/components/doc/doc.component.ts + 12 + Download - Download + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + Pole jest wymagane. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + Trwa ładowanie danych... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Wybór czasu Grafana + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + Zresetuj ustawienia + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + Ostatnia 1 godzina (domyślnie) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday Wczoraj + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + Do tej pory dzisiaj + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + Przedwczoraj + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + Ostatnie 2 dni + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + Tego dnia tydzień temu + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week Poprzedni tydzień + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + Do tej pory w tym tygodniu + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + Ostatnie 7 dni + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + Poprzedniego miesiąca + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + Do tej pory w tym miesiącu + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + Ostatnie 30 dni + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + Ostatnie 90 dni + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + Ostatnie 6 miesięcy + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + Ostatni 1 rok + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + Poprzedniego roku + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + Do tej pory bieżącego roku + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + Ostatnie 2 lata + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + Ostatnie 5 lat + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + Wybierz język + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + Nie wybrano żadnej pozycji + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + Odznacz pozycję, żeby wybrać ponownie + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + Osiągnięto limit wyboru. + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + Filtr tagów. + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + Dodaj odznakę + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + Brak dostępnych pozycji. + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export Eksport + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + Dodaj + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + Zatwierdź + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + Anuluj + + src/app/shared/constants/app.constants.ts + 176 + Preview - Preview + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + + src/app/shared/constants/app.constants.ts + 178 + Next - Next + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + Wstecz + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + Sklonuj + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + Kopia + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + Szoruj głęboko + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + Zniszcz + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + + src/app/shared/constants/app.constants.ts + 189 + Flatten Spłaszcz + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + zaznacz jako upadły + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + Zaznacz jako w + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + Zaznacz jako stracony + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + Zaznacz jako poza + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + Zabezpiecz + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + Zmień nazwę + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + Przywróć + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + Ponowne ważenie + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + Szoruj + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + Pokaż + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + Przenieś do kosza + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + Odbezpiecz + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain - Stop Drain + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + Usunięty + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + Przeniesiono + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + Sklonowano + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + Skopiowano + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + Spłaszczony + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + + src/app/shared/constants/app.constants.ts + 313 + Purged Oczyszczony + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + Przywrócony + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + Wycofaj + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + Zamknij + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + Wybrane + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + Znaleziono + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total - total - X total + Razem + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row - Expand/Collapse Row + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + Błąd wczytywania danych. + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + Tak + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + Nie + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months - %d months + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year - a year + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Must contain at least - characters - + Must contain at least characters + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts - no active alerts + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + Jakość serwisu + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + Limit BPS + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + Pożądany limit IO bajtów na sekundę. + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + Limit IOPS + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + Pożądany limit operacji IO na sekundę. + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + limit odczytu BPS + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + Pożądany limit odczytu bajtów na sekundę. + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + limit odczytu IOPS + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + Pożądany limit operacji odczytu na sekundę. + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + Limit zapisu BPS + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + Pożądany limit zapisu bajtów na sekundę. + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + Limit zapisu IOPS + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + Pożądany limit operacji zapisu na sekundę. + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + Wiązka BPS + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + Żądana granica serii IO bajtów. + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + Wiązka IOPS + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + Żądana granica serii operacji IO. + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + Odczyt wiązki BPS + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + Żądana granica serii odczytanych bajtów. + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + Odczyt wiązki IOPS + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + Żądana granica serii operacji odczytu. + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + Zapis wiązki BPS + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + Żądana granica serii bajtów zapisu. + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + Zapis wiązki IOPS + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + Żądana granica serii operacji zapisu. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + Wykonywanie + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + Wykonaj + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + Wykonany + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + Nieznane zadanie + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + Tworzenie + + src/app/shared/services/task-message.service.ts + 67 + create - create + Utwórz + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + Aktualizowanie + + src/app/shared/services/task-message.service.ts + 68 + update - update + Zaktualizuj + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + Usuwanie + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding - Adding + + src/app/shared/services/task-message.service.ts + 70 + add - add + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + + src/app/shared/services/task-message.service.ts + 133 + Identified - Identified + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + Klonowanie + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + Sklonuj + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + Kopiowanie + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + Kopiuj + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + Spłaszczanie + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + Spłaszcz + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + + src/app/shared/services/task-message.service.ts + 243 + Rolling back Wycofywanie + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + Wycofanie + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + Przenoszenie + + src/app/shared/services/task-message.service.ts + 256 + move - move + Przenieś + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. Nie znaleziono obrazu. + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + Przywracanie + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + Przywróć + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Image name ' - ' is already in use. - + Image name '' is already in use. + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + oczyszczać + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + oczyść + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + Wszystkie pule + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + Nie można wyłączyć lustrzenia ponieważ zawiera parowanie. + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - host ' - ' - + host '' + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.pt-BR.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.pt-BR.xlf index 5d1d86f8f42..7613bb513ce 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.pt-BR.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.pt-BR.xlf @@ -1,8827 +1,17313 @@ - - + + Close - Close + Fechar + + node_modules/src/ngb-config.ts + 13 + HH HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + Fechar + + node_modules/src/ngb-config.ts + 13 + «« «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + Selecionar mês + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + Mês anterior + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours Horas + + node_modules/src/ngb-config.ts + 13 + « « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Anterior + + node_modules/src/ngb-config.ts + 13 + MM MM + + node_modules/src/ngb-config.ts + 13 + » » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + Selecionar ano + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + Mês seguinte + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + Avançar + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + Minutos + + node_modules/src/ngb-config.ts + 13 + »» »» + + node_modules/src/ngb-config.ts + 13 + Increment hours - Increment hours + Incrementar horas + + node_modules/src/ngb-config.ts + 13 + First - First + Primeiro + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + Anterior + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + Decrementar horas + + node_modules/src/ngb-config.ts + 13 + Next - Next + Avançar + + node_modules/src/ngb-config.ts + 13 + Increment minutes Incrementar minutos + + node_modules/src/ngb-config.ts + 13 + Last - Last + Último + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + Decrementar minutos + + node_modules/src/ngb-config.ts + 13 + SS SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + Segundos + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + Incrementar segundos + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + Decrementar segundos + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + Deve ser maior do que ou igual a . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + Deve ser menor do que ou igual a . + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + Visão geral + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets Destinos + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology Topologia iSCSI + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + Nome + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + Atual + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + Padrão + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication Autenticação de Descoberta + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + Usuário + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + Este campo é obrigatório. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Os nomes de usuário devem ter entre 8 e 64 caracteres e podem incluir caracteres alfanuméricos: '.', '@', '-', '_' ou ':'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + Senha + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + As senhas devem ter entre 12 e 16 caracteres e podem incluir caracteres alfanuméricos: '@', '-', '_' ou '/'. + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + Usuário Mútuo + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + Senha Mútua + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + Autenticação de descoberta atualizada + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + IQN de Destino + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + IQN tem padrão incorreto. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + Um IQN tem a seguinte notação 'iqn.$year-$month.$reversedAddress:$definedName' + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + Por exemplo: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + Mais informações + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + Este destino tem configurações avançadas modificadas. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + Portais + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + Adicionar portal + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + Pelo menos gateways são necessários. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images Imagens + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + Backstore: .  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + Esta imagem tem configurações modificadas. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + Números LUN duplicados. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + WWN duplicado. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + Adicionar imagem + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + Autenticação ACL + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Os nomes de usuário devem ter entre 8 e 64 caracteres e podem incluir caracteres alfanuméricos: '.', '@', '-', '_' ou ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + As senhas devem ter entre 12 e 16 caracteres e podem incluir caracteres alfanuméricos: '@', '-', '_' ou '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + Iniciadores + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + Iniciador + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + IQN do Cliente + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + O IQN do Iniciador precisa ser exclusivo. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + Os nomes de usuário devem ter entre 8 e 64 caracteres e podem incluir caracteres alfanuméricos: '.', '@', '-', '_' ou ':'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + As senhas devem ter entre 12 e 16 caracteres e podem incluir caracteres alfanuméricos: '@', '-', '_' ou '/'. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + O iniciador pertence a um grupo. As imagens serão configuradas no grupo. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + Nenhum item adicionado. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + Adicionar iniciador + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + Grupos + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + Grupo + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name - Name + Nome + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + Adicionar grupo + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. Não há portais disponíveis. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + Não há imagens disponíveis. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. Não há imagens disponíveis. Adicione uma imagem ao destino. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. Não há iniciadores disponíveis. Adicione um iniciador ao destino. + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + destino + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + Configurar + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + Não costuma ser necessário mudar o valor padrão destes parâmetros. + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + Identificador + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + Configurações + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore Backstore + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + Configurações Avançadas + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + Destinos iSCSI não disponíveis + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + Consulte sobre como configurar e habilitar a funcionalidade de gerenciamento de Destinos iSCSI. + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + Informações disponíveis: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + Autenticação de descoberta + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + Destino + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + Portais + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + Imagens + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions Nº de Sessões + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + Gateway(s) não disponível(is) + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + O destino tem sessões ativas + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + Destino iSCSI + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways Gateways + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + Estado + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + Nº de Destinos + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool Pool + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image Imagem + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore Backstore + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + Bytes de Leitura + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + Bytes de Gravação + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + Op. de Leitura + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + Op. de Gravação + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + A/O Desde + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token Criar Token de Boot + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - Para criar um token de boot que possa ser importado por um cluster de site de peer, informe o nome do site local, selecione os pools que terão o espelhamento habilitado e clique em - Gerar - . - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + Para criar um token de boot que possa ser importado por um cluster de site de peer, informe o nome do site local, selecione os pools que terão o espelhamento habilitado e clique em Gerar. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + Nome do Site + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + Nome... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools Pools + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + Pelo menos um pool é necessário. + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + Gerar + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token Token + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + Token gerado... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + Fechar + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + Importar Token de Boot + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - Para importar um token de boot que foi criado por um cluster de site de peer, informe o nome do site local, selecione os pools que terão o espelhamento habilitado, insira o token gerado e clique em - Importar - . - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + Para importar um token de boot que foi criado por um cluster de site de peer, informe o nome do site local, selecione os pools que terão o espelhamento habilitado, insira o token gerado e clique em Importar. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + Direção + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + O token é inválido. + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + Instância + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname Nome de host + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version - Version + Versão + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + Saúde + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + Problema + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + Andamento + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description Descrição + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons Daemons + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + Criar Token de Boot + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + Importar Token de Boot + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + Editar modo de espelho do pool + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + Para editar o modo de espelho do pool , selecione um novo modo na lista e clique em Atualizar. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + Modo + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + Clusters de peer devem ser removidos antes de desabilitar o espelho. + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + Desabilitado + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + {VAR_SELECT, select, edit {Editar} other {Adicionar}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + peer de espelho do pool + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + os atributos do peer de espelho do pool e clicar em Enviar. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + Nome do Cluster + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + O nome do cluster não é válido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID - CephX ID + ID do CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... - CephX ID... + ID do CephX... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + O ID do CephX não é válido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + Endereços do Monitor + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + Endereços delimitados por vírgula... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + O endereço de monitoria não é válido. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key Chave do CephX + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Chave codificada com base64... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. A chave do CephX deve ser codificada com base64. + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + Nº Local + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + Nº Remoto + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + Modo de Edição + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer Adicionar Peer + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer Editar Peer + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + Excluir Peer + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode Modo + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader Leader + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + Nº Local + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + Nº Remoto + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + espelhar peer + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + Porta + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + Iniciador + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + Carregando... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host Host + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport - Transport + Transporte + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool Pool + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- -- Selecionar pool -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + '/' e '@' não são permitidos. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace Namespace + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + Detalhes + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces Namespaces + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. O valor deve ser no mínimo 1. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration Configuração de RBD + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. Remova o valor de configuração local. No lugar dele, o valor de configuração pai será herdado e usado. + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + O valor mínimo é 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global Global + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + Imagem + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + Chave + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + Origem + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + Valor + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + Disponível apenas para imagens RBD com fast-diff habilitado + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + Pool de Dados + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + Criado + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + Tamanho + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + Objetos + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + Tamanho do objeto + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + Recursos + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + Aprovisionado + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A N/A + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned Total aprovisionado + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + Unidade de distribuição + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + Total de distribuições + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + Pai + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + Prefixo do nome do bloco + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + Ordem + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + Versão do Formato + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + Instantâneos + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + Configuração + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + Desempenho + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + Não é possível exibir informações para RBD com status 'Removendo'. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + Esta configuração substitui o valor global + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + Este é o valor global. Nenhum valor para esta opção foi definido para esta imagem. + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + Você precisa mais do que um pool com o uso do rótulo de aplicativo rbd para utilizar um pool de dados dedicado. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- Não há pools de dados disponíveis -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- Sem namespaces disponíveis -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- Selecionar namespace -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + Você precisa aumentar o tamanho. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping Distribuição + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- Selecionar unidade de distribuição -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + Este campo é obrigatório porque o total de distribuições foi definido! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + A unidade de distribuição é maior do que o tamanho do objeto. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + Este campo é obrigatório porque a unidade de distribuição foi definida! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + O total de distribuições deve ser maior do que 0. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + Nivelamento profundo + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + Disposição em camadas + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + Bloqueio exclusivo + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + Mapa de objetos (requer bloqueio exclusivo) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + Diff rápido (interligado com o mapa de objetos) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + A exclusão desta imagem também excluirá todos os seus instantâneos. + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + Os seguintes instantâneos estão protegidos e serão removidos: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + RBD com status 'Removendo' + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + Tamanho + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + Uso + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + Objetos + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + Tamanho do objeto + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + Pai + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + Espelhamento + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + Aviso + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + Este RBD tem instantâneos clonados. Exclua os RBDs relacionados antes de excluir esse RBD. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + Esta imagem RBD tem um nome inválido e não pode ser gerenciada pelo ceph. + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + A ação não é possível para um RBD com status 'Removendo' + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + Criar Namespace + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- Não há pools de RBD disponíveis -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. Namespace já existe. + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + Namespace '/' criado + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + Total de imagens + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + Namespace '/' excluído + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + Namespace contém imagens + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + Instantâneo do RBD + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + O instantâneo deve ser protegido para ser feita a clonagem. + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + Você está prestes a fazer rollback + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + Usado + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + PROTEGIDO + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + NÃO PROTEGIDO + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + Criado + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + Rollback de instantâneo do RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + Fazer Rollback + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + Instantâneo do RBD + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + Lixo + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + Desempenho Geral + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + Purgar Lixo + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + Venceu em + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + Protegido até + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + Esta imagem está protegida até . + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status Status + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At Excluído à(s) + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + Mover imagem para o lixo + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + Esta imagem contém instantâneos, o que a impedirá de ser removida depois de enviada para o lixo. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + Para mover para o lixo, clique em Mover. Se preferir, escolha uma data de vencimento. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + Vencimento da proteção em + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + NÃO PROTEGIDO + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Formato de data incorreto. Use "AAAA-MM-DD HH:mm:ss". + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + A proteção já venceu. Escolha uma data no futuro ou deixe-a vazia. + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + Para purgar, selecione Tudo ou um pool e clique em Purgar.  + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: Pool: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + Nome do pool... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + Tudo + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + Restaurar Imagem + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + Para restaurar @, digite o novo nome da imagem e clique em Restaurar. + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + Novo Nome + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + Este campo é obrigatório! + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id - id + ID + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + tipo + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + estado + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + versão + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + raiz + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + Cliente '' expulso + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + Posições + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys Standbys + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + Contadores de desempenho MDS + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + Daemons de standby + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + Posição + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon Daemon + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + Atividade + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries Dentries + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes Inodes + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + Diretórios + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + Recursos + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + Tipo + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + Cotas + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + Origem + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + Caminho + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + Não é possível criar instantâneos para arquivos/pastas no subvolume + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + Tamanho máx. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + Máx. de arquivos + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + O herdado é o valor máximo que será usado. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + Salvar + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + Cota do CephFS para '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + tamanho + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + arquivos + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + cota de '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + O valor deve ser no mínimo 0 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + O valor deve ser no máximo + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + Atualizado + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - para herdar - - + in order to inherit + para herdar + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + que não é usado por causa da herança de + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + para não ter cota no diretório + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + . + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + Criar Instantâneo + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + Insira o nome do instantâneo. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + Instantâneo '' criado para '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + Instantâneo do CephFs + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + Instantâneo '' excluído para '' + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + Posicionamento + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts Hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label Rótulo + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + Não há hosts. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + Filtrar hosts + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled Habilitado + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + Horário de início + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + Reconectando, aguarde... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + Padrão + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + ex. 10 GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All - All + Tudo + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + Leitura + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute Executar + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + Pool de Dados + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + Diretórios + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + Clientes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + Detalhes de Desempenho + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + Descrição + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + Descrição extensa + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values Valores atuais + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + Padrão do daemon + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + Tipo + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + Mín. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + Máx. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags Flags + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + Serviços + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source Origem + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + Nível + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + Pode ser atualizado em tempo de execução (editável) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags Tags + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + Valores de enum + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + Consulte também + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + É possível atualizar o valor em temo de execução. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + Daemons/clientes não extraem este valor do + banco de dados de configuração do monitor. A configuração desta opção não é permitida por meio de 'ceph config + set ...'. Essa opção deve ser configurada por meio do ceph.conf ou da + linha de comando. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + A opção entra em vigor apenas durante a inicialização do daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + A opção afeta apenas a criação do cluster. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + A opção afeta apenas a criação do daemon. + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + Valores + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + -- Padrão -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true - true + verdadeiro + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false - false + falso + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - O valor inserido é muito alto! Ele não deve ser maior do que - . - + The entered value is too high! It must not be greater than . + O valor inserido é muito alto! Ele não deve ser maior do que . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + O valor inserido é muito baixo! Ele não deve ser menor do que . + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - Opção de configuração - atualizada - + Updated config option + Opção de configuração atualizada + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + Modificado + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + Nível + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service Serviço - - - Modified - Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + Valor atual + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + Editável + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + Recursos de Cluster + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + Capacidade de Armazenamento + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + Número de dispositivos + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + Capacidade bruta + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs CPUs + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory - Memory + Memória + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + Detalhes do Host + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + Boas-vindas ao + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + Expanda seu cluster primeiro + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + Expandir Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + Ignorar + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + Adicionar Hosts + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + Criar OSDs + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + Criar Serviços + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - Você está prestes a ignorar o processo de expansão do cluster. Será necessário - navegar pelo menu para adicionar hosts e serviços. - - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + Você está prestes a ignorar o processo de expansão do cluster. Será necessário navegar pelo menu para adicionar hosts e serviços. + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + Deseja realmente continuar? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + Continuar + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + Expansão do cluster ignorada pelo usuário + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + Expansão do cluster bem-sucedida + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + Expandir Cluster + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + Visualizador de mapa CRUSH + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + Dispositivos + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + Discos Físicos + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + Saúde do dispositivo + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + Nenhum nome de host encontrado. + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + Nome de host + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + Para adicionar vários hosts de uma vez, você pode inserir: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + uma lista de nomes de host separados por vírgula (ex.: example-01,example-02,example-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + uma expressão de faixa (ex.: example-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + uma expressão de faixas separadas por vírgula (ex.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + O nome de host escolhido já está em uso. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + Endereço da rede + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + O valor não é um endereço IP válido. + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + Rótulos + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + Modo de Manutenção + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + Não há rótulos. + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + Filtrar ou adicionar rótulos + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label Adicionar rótulo + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host host + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + Lista de Hosts + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + Os dados estarão disponíveis apenas se o Orchestrator estiver disponível. + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs SSD, NVMEs + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + O recurso está desabilitado porque o host selecionado não é gerenciado pelo Orchestrator. + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + Rótulos + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + Modelo + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs CPUs + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + Núcleos + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + Memória Total + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity Capacidade Bruta + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs HDDs + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash Flash + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs NICs + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + Editar Host: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + Editar Host + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + Host Atualizado &quot;&quot; + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + &quot;&quot; movido para manutenção + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + Não é possível colocar &quot;&quot; em manutenção + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - &quot; - &quot; saiu da manutenção - + "" has exited maintenance + &quot;&quot; saiu da manutenção + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + &quot;&quot; parou a drenagem + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + &quot;&quot; iniciou a drenagem + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + Identificar + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + Caminho do dispositivo + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + Disponível + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + Fornecedor + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs OSDs + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + Identificar o dispositivo + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + Informe por quanto tempo o LED deve ficar piscando. + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + 1 minuto + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + 2 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + 5 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + 10 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + 15 minutos + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + Identificação de '' iniciada no host '' + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + Registros do Cluster + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + Registros de Auditoria + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + Prioridade: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + Palavra-chave: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + Data: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + Faixa de horários: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + Nenhuma entrada de registro encontrada. Tente selecionar outras opções de filtro. + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + Redefinir filtro. + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module Editar módulo do gerenciador + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + O valor inserido não é um UUID válido. Ex.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + O valor inserido precisa ser um endereço IP válido. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - O valor inserido é muito alto! Ele deve ser menor do que ou igual a - . - + The entered value is too high! It must be lower or equal to . + O valor inserido é muito alto! Ele deve ser menor do que ou igual a . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + O valor inserido é muito baixo! Ele deve ser maior do que ou igual a . + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. O valor inserido precisa ser um número. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + O valor inserido precisa ser um número ou decimal. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + Opções atualizadas para o módulo ''. + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + Sempre ativado + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + Editar + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + Habilitar + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + Desabilitar + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + Este módulo do Gerenciador está sempre ativado. + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status Status + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + ID do Cluster + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + monmap modificado + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + época de monmap + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con quorum con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon quorum mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con con obrigatório + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + mon obrigatório + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + No Quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + Não está no Quorum + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + Endereço Público + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + Sessões Abertas + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + Visualização da criação do OSD + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups DriveGroups + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + Atributos (mapa OSD) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + Metadados + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + Metadados não disponíveis + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + Contador de desempenho + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + dispositivos + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + Os dispositivos de armazenamento principais. Esses dispositivos contêm todos os dados de OSD. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. Dispositivos Write-Ahead-Log. Esses dispositivos são usados no diário interno do BlueStore. Apenas será útil usar um dispositivo WAL se ele for mais rápido do que o dispositivo principal (por exemplo, dispositivos NVME ou SSDs). Se houver apenas um pequeno volume de armazenamento rápido disponível (por exemplo, menos do que um gigabyte), recomendamos usá-lo como dispositivo WAL. + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + É possível usar dispositivos de BD para armazenar metadados internos do BlueStore. A provisão de um dispositivo de BD será útil apenas se ele for mais rápido do que o dispositivo principal (ex. dispositivos NVME ou SSD). + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + Adicionar + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + Limpar + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + Capacidade bruta: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + Sem dispositivos disponíveis + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + Adicione primeiro os dispositivos principais + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters Adicionar dispositivos usando filtros + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + dispositivos + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + Pelo menos um destes filtros deve ser aplicado para continuar: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + Número de dispositivos: . Capacidade bruta: . + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + Flags OSD Individuais + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + Todo o cluster + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + Restaurar seleção anterior + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + Não Ativo + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + Os OSDs não podem ser iniciados + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + Não Inativo + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + Os relatórios de falha de OSD estão sendo ignorados, portanto, os monitores não marcarão os OSDs como inativos + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + Não Entrada + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + Os OSDs que já foram marcados como saída não serão remarcados como entrada ao serem iniciados + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + Não Saída + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + Os OSDs não serão automaticamente marcados como saída após o intervalo configurado + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + A flag foi habilitada no cluster inteiro. + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + Flags OSD Atualizadas + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + Flags OSD de todo o Cluster + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + Pausar + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes Pausa leituras e gravações + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + Sem Remoção + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + Remoção desabilitada + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + Sem Remoção Profunda + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + Remoção Profunda desabilitada + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + Sem Provisionamento + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended Provisionamento de PGs suspenso + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + Sem Rebalanceamento + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded O OSD não fará o provisionamento, a menos que o PG também seja prejudicado + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + Sem Recuperação + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + Recuperação de PGs suspensa + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + Classificação Bit a Bit + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort Usar classificação bit a bit + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + Snapdirs Purgados + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + OSDs converteram snapsets + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + Exclusões de Recuperação + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + Exclusões realizadas durante a recuperação, e não o emparelhamento + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + Limite Físico do Registro de PG + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + Atribui um limite físico ao tamanho do registro de PG + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices Dispositivos compartilhados + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + Slots WAL + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + Quantos OSDs por dispositivo WAL. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + Especifique 0 para que o backbend do Orchestrator tome essa decisão. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + O valor deve ser maior do que ou igual a 0 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + Slots do BD + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + Quantos OSDs por dispositivo de BD. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption Criptografia + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + Lista de OSDs + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + OSD(s) será(ão) marcado(s) se você continuar. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {OSD é} other {OSDs são}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + OSD será se você continuar. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + Preserve o(s) ID(s) do OSD para substituição. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + saída + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + entrada + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + inativo + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + Marcar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + OSD perdido + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + marcado como perdido + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + Purgar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + purgado + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + destruir + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + destruído + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags Flags + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + Prioridade de Recuperação + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + Remoção do PG + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + Classe do dispositivo + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs PGs + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + Bytes de leitura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + Bytes de gravação + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops Op. de leitura + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + Op. de gravação + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + Editar OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + Editar OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + OSD '' atualizado + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + Marcar OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + Marcar + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + excluir + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + excluído + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + Avançado... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + Opções de configuração avançada + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + Opções de remoção do PG + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + Opções de remoção do PG atualizadas + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + Prioridade de Recuperação de OSD + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + Prioridade + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + Personalizar valores de prioridade + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + O valor inserido é muito alto! Ele não deve ser maior do que . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + O valor inserido é muito baixo! Ele não deve ser menor do que . + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + Máx. de Provisionamentos + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active Máx. Recuperação Ativo + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + Máx. Recuperação Inicialização Única + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + Suspensão de Recuperação + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + Personalizado + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + Prioridade de velocidade de recuperação de OSD '' atualizada + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + Reponderar OSD: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + O valor precisa ser entre 0 e 1. + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - Remoção - de OSDs - + OSDs Scrub + Remoção de OSDs + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} {VAR_SELECT, select, true {Profunda } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + Você está prestes a aplicar uma remoção ao(s) OSD(s): . + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {profunda } other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + foi inicializado no(s) seguinte(s) OSD(s): + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + Para ver todos os alertas ativos do Prometheus, insira o URL para a API do Alertmanager do Prometheus conforme descrito em . + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + Criar Silêncio + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + Gravidade + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + Iniciado + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + Alertas + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + Silêncios + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + Para ver todos os alertas configurados do Prometheus, insira o URL para a API do Prometheus conforme descrito em . + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + Grupo + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + Duração + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + Consulta + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + Editar + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + Excluir + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + A edição de um silêncio expira o silêncio anterior e o recria como um novo + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + Criador + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + Comentário + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + Horário de início + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + Se o horário de início estiver no passado, o horário de criação será usado + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + Duração + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + Horário de término + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + Correspondentes + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + Um silêncio requer pelo menos um correspondente + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + Adicionar correspondente + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + silêncio + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + Nome do atributo + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + Expressão regular + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + Adicione seu host do Prometheus à configuração do painel de controle e atualize a página + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + Para habilitar Silêncios, insira o URL para a API do Alertmanager do Prometheus conforme descrito em . + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + Criado por + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + Termina em + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + Silêncio + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + {VAR_SELECT, select, true {Editar} other {Adicionar}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + Correspondente + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + -- Selecionar atributo para correspondência -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + Valor + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + Usar expressão regular + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + sem especificação + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + não gerenciado + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + total: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + rótulo: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + Eventos de Serviço + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + Última Atualização + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + Eventos de Daemon + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + Nome do Serviço + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + Tipo de Serviço + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + Eventos de Serviço + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- Selecionar um tipo de serviço -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + Serviço de Backend + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- -- Nenhum serviço disponível -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + Nome do Serviço + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + Domínio + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + Grupo de Zonas + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + Zona + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + Não gerenciado + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + Total + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + Porta + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + O valor não pode exceder 65535. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- Nenhum pool disponível -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + IPs Confiáveis + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + Lista de endereços IP separados por vírgula. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - Adicione os endereços IP do - Ceph Manager - aqui; do contrário, os gateways iSCSI não poderão ser acessados. - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + Adicione os endereços IP do Ceph Manager aqui; do contrário, os gateways iSCSI não poderão ser acessados. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + IP Virtual + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + O endereço IP virtual e a sub-rede (na notação CIDR) em que o serviço de entrada estará disponível. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + Porta de Front-end + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + A porta usada para acessar o serviço de entrada. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + Porta do Monitor + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + A porta usada pelo haproxy para status do balanceador de carga. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + Redes CIDR + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + Uma lista de redes para identificar a interface de rede que será usada para o endereço IP virtual. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + Versão + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + -- Selecionar versão SNMP -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + Destino + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. Deve estar no formato nomedehost:porta. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + O valor não corresponde ao padrão: nomedehost:porta + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + ID do Mecanismo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + Identificador Exclusivo do dispositivo (em hexadecimal). + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + O valor não corresponde ao padrão: Deve ser hexadecimal, e o tamanho deve ser múltiplo de 2 com valor mínimo = 10 e valor máximo = 64. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + Protocolo Auth + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- -- Selecionar protocolo auth -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + Protocolo de Privacidade + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + -- Selecionar protocolo de privacidade -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + Crendenciais + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + Comunidade SNMP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + Nome de usuário + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + Criptografia + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + Certificado + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + O certificado SSL no formato PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. Certificado SSL inválido. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + Chave privada + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + A chave privada SSL no formato PEM. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + Chave privada SSL inválida. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + serviço + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + Posicionamento + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + Em Execução + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + Etapa de 2: Configuração do relatório de telemetria + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - O módulo de telemetria envia dados anônimos sobre este cluster do Ceph aos desenvolvedores do Ceph para ajudar a entender como o Ceph é usado e quais problemas os usuários podem estar enfrentando. - Esses dados são visualizados em - painéis de controle públicos - que permitem que a comunidade veja rapidamente um resumo das estatísticas de quantos clusters estão gerando relatórios, a capacidade total e a contagem de OSD deles, e as tendências de distribuição. - - Os dados relatados - não - incluem informações confidenciais, como nomes de pools, nomes de objetos, conteúdo de objetos, nomes de host ou números de série de dispositivos. Eles incluem contadores e estatísticas sobre como o cluster foi implantado, a versão do Ceph, a distribuição dos hosts e outros parâmetros que ajudam o projeto a ter uma compreensão melhor do modo como o Ceph é usado. Os dados são enviados de forma protegida para - e - (relatório do dispositivo). - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + O módulo de telemetria envia dados anônimos sobre este cluster do Ceph aos desenvolvedores do Ceph para ajudar a entender como o Ceph é usado e quais problemas os usuários podem estar enfrentando. Esses dados são visualizados em painéis de controle públicos que permitem que a comunidade veja rapidamente um resumo das estatísticas de quantos clusters estão gerando relatórios, a capacidade total e a contagem de OSD deles, e as tendências de distribuição. Os dados relatados não incluem informações confidenciais, como nomes de pools, nomes de objetos, conteúdo de objetos, nomes de host ou números de série de dispositivos. Eles incluem contadores e estatísticas sobre como o cluster foi implantado, a versão do Ceph, a distribuição dos hosts e outros parâmetros que ajudam o projeto a ter uma compreensão melhor do modo como o Ceph é usado. Os dados são enviados de forma protegida para e (relatório do dispositivo). + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + Desativar + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + Canais + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - O relatório de telemetria é dividido em vários "canais", cada um com um tipo diferente de informações, que podem ser configuradas abaixo. + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + O relatório de telemetria é dividido em vários "canais", cada um com um tipo diferente de informações, que podem ser configuradas abaixo. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + Básico + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: Inclui informações básicas sobre o cluster: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + Capacidade do cluster + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons Número de monitores, gerenciadores, OSDs, MDSs, gateways de objetos ou outros daemons + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + Versão do software que está em uso no momento + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + Número e tipos de pools RADOS e sistemas de arquivos CephFS + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + Nomes das opções de configuração que foram alteradas do padrão (mas sem os valores) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + Falha + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: Inclui informações sobre falhas nos daemons: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + Tipo de daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + Versão do daemon + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + Sistema operacional (distribuição do OS, versão do kernel) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + Rastreamento de pilha que identifica onde houve falha no código do Ceph + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + Dispositivo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + Inclui informações sobre as métricas do dispositivo, como as métricas SMART anônimas. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + Identif. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + Inclui informações de identificação sobre o cluster fornecidas pelo usuário. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + Informações de contato + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + O envio de qualquer informação de contato é completamente opcional e, por padrão, está desabilitado. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + Contato + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + Meu primeiro cluster do Ceph + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + Organização + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name Nome da organização + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + Intervalo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + Por padrão, o módulo compila e envia um novo relatório a cada 24 horas. Você pode ajustar esse intervalo definindo um número diferente de horas. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. O valor inserido é muito baixo. Ele deve ser maior do que ou igual a 8. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy Proxy + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + Se o cluster não puder conectar-se diretamente ao endpoint de telemetria configurado (telemetry.ceph.com padrão), você poderá configurar um servidor proxy HTTP/HTTPS ao adicionar https://10.0.0.1:8080, por exemplo + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 - You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 + É possível incluir usuário:senha, se necessário. Por exemplo, https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - Nota: - Ao clicar em 'Avançar', primeiro aparece uma visualização do conteúdo do relatório antes que você possa ativar o envio automático dos seus dados. - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + Nota: Ao clicar em 'Avançar', primeiro aparece uma visualização do conteúdo do relatório antes que você possa ativar o envio automático dos seus dados. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + Etapa de 2: Visualização do relatório de telemetria + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + ID do Relatório + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + Um UUID aleatório para identificar determinado cluster durante o andamento de vários relatórios de telemetria. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + Os dados reais de telemetria que serão enviados. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + Concordo com o envio dos meus dados de telemetria conforme previsto no Contrato de Licença de Dados da Comunidade - Compartilhamento - Versão 1.0 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + O módulo Telemetria foi configurado e ativado com êxito. + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + Erro ao atualizar a configuração do módulo Telemetria. Tente novamente + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + Voltar + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + Pausar + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + Status do Cluster + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + Últimos 5 minutos + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + Últimos 15 minutos + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + Últimos 30 minutos + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours Últimas 3 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + Últimas 6 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + Últimas 12 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + Últimas 24 horas + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster Cluster + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + Perigo + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning Aviso + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + Monitores + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs OSDs + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + Gerenciadores + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + Gateways de Objetos + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + Servidores de Metadados + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + Gateways iSCSI + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + Capacidade + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity Capacidade Bruta + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status Status do PG + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + PGs por OSD + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + Leitura/Gravação do Cliente + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput - Client Throughput + Throughput do Cliente + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + Throughput de Recuperação + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + Removendo + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + Leituras + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + Gravações + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + Disp. + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean Limpar + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + Em funcionamento + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + Desconhecido + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + Saudável + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + Mal posicionado + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + Degradado + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + Não encontrado + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + objetos + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + aqui + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + ativo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + sem sistemas de arquivos + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + ativo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby standby + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + daemons de standby + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + daemon ativo + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a n/a + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (quorum - ) - + (quorum ) + (quorum ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total total + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full - near full + quase cheio + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + completo + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + Clientes () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + Endereços + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + Tipo de Acesso + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash - Squash + Executar Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster Cluster + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + Protocolo NFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + Backend de Armazenamento + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User Usuário do CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + Sistema de Arquivos do CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + Rótulo de Segurança + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway - Object Gateway + Gateway de Objetos + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + Usuário do Gateway de Objetos + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + Qualquer cliente pode acessar + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + Endereços + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + Deve conter um ou mais valores separados por vírgula + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + Por exemplo: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + Tipo de Acesso + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash - Squash + Executar Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients - Add clients + Adicionar clientes + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (herdado da configuração global) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- -- Selecionar tipo de acesso -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + herdado da configuração global + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- Selecionar que tipo de squash de ID de usuário será executado -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- Não há clusters disponíveis -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- Selecionar cluster -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + Este é o ID de um Serviço NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + Este campo é obrigatório. Para criar um cluster NFS, adicione um novo Serviço NFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume Volume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- Sem sistema de arquivos CephFS disponível -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- Selecionar sistema de arquivos CephFS -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + Rótulo de Segurança + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + Habilitar rótulo de segurança + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + Caminho do CephFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + Um caminho em um sistema de arquivos CephFS. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + O caminho precisa começar com '/' e pode ser seguido de uma palavra + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + O caminho não existe no volume selecionado. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + Compartimento + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + O compartimento não existe ou não está no domínio padrão (em caso de vários domínios configurados). Para continuar, crie um novo compartimento. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + Protocolo NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo Pseudo + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. Ao usar opções diferentes de Pseudo, o mesmo Caminho pode ser exportado várias vezes. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + O pseudo já está em uso por outra exportação. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + O Pseudo precisa começar com '/' e não pode conter nenhum destes caracteres: >, <, |, &, ( ou ). + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- Não há tipos de acesso disponíveis -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- Não há squashes disponíveis -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + Protocolo de Transporte + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + Exportação do NFS + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + Erro ao recuperar caminhos. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + Erro ao recuperar nomes de compartimentos. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway - Object Gateway + Gateway de Objetos + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + Compartimento + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + Contadores de desempenho não disponíveis + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + O nome pode conter apenas caracteres alfanuméricos, traços e sublinhados. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + O nome do perfil de código de eliminação escolhido já está em uso. + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + Raiz + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + Tipo de domínio de falha + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + Classe do dispositivo + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule Regra de Crush + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + Plug-in + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + Pacotes de dados (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + Deve ser igual ou maior do que 2. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + Os pacotes (k+m) excederam os OSDs disponíveis de . + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + Para uma distribuição igual, k deve ser múltiplo de (k+m)/l. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + K deve ser igual a ou maior do que m para recuperar os dados corretamente por c. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + Fator de distribuição: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + Pacotes de codificação (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + Deve ser igual ou maior do que 1. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + Estimador de durabilidade (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + C deve ser igual a ou menor do que m, já que m define a quantidade de pacotes que pode ser usada. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) Pacotes do ajudante (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + Defina d manualmente ou use o cálculo padrão do plug-in que maximiza d. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + D é automaticamente atualizado com base nas alterações de k e m + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D can be set from - to - - + D can be set from to + D pode ser definido de para + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + D só pode ser definido como + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D deve ser maior do que k ( - ). - + D has to be greater than k (). + D deve ser maior do que k (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + D deve ser menor do que k + m (). + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + Localidade (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + Impossível dividir os pacotes (k+m) corretamente com a localidade atual. + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + Grupos de localidades: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + Domínio de falha do Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + Localidade do Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + Nenhum + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds - Scalar mds + Mds escalar + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + Técnica + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + Tamanho do pacote + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + Raiz do Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + Classe do dispositivo do Crush + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + OSDs disponíveis: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + Diretório + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + Perfil EC + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + Detalhes das Camadas do Cache + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode Modo de Cache + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + Tempo Mín. Expulsão + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + Tempo Mín. Descarregamento + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + Máx. de Bytes de Destino + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + Máx. de Objetos de Destino + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + Nenhum aplicativo adicionado + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + Limite de aplicativos atingido + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + Um pool apenas pode ter até quatro definições de aplicativos. + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + Caracteres permitidos: '_a-zA-Z0-9' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters Tamanho máximo de 128 caracteres + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + Filtrar ou adicionar aplicativos' + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + Adicionar aplicativo + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + O nome do pool do Ceph escolhido já está em uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + Não é possível criar um pool de RBD com '/' no nome. Altere o nome ou remova o 'rbd' da lista de aplicativos. + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + O nome do pool pode conter apenas letras, números, '.', '-', '_' ou '/'. + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + Tipo de pool + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- Selecionar tipo de pool -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + Dimensionamento Automático de PG + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + Grupos de posicionamento + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + Pelo menos um grupo de posicionamento é necessário! + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. Seu cluster não pode processar tantos PGs. Recalcule a quantidade de PG necessária. + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help Ajuda no cálculo + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + As configurações dos PGs atuais foram calculadas para você. Verifique se os valores estão de acordo com as suas necessidades antes de enviar. + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + Tamanho replicado + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + Mínimo: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + Máximo: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + O tamanho especificado está fora da faixa. É possível usar um valor de a . + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + Um tamanho de 1 não criará uma replicação do objeto. O 'Tamanho replicado' inclui o próprio objeto. + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + Sobregravações de EC + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + Aplicativos + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + Espelhamento + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + Perfil do código de eliminação + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- Não há perfis de código de eliminação disponíveis -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- Selecionar perfil do código de eliminação -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + Não é possível excluir este perfil porque ele está em uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + Perfil + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + Usado por pools + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + Perfil não está em uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset Conjunto de regras do Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + Um novo conjunto de regras de crush será criado implicitamente. + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + Não há regras. + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- Selecionar regra de crush -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + Não é possível excluir esta regra porque ela está em uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + Regra de Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps - Crush steps + Etapas do Crush + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + Regra não está em uso. + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + A regra não pode ser usada no cluster atual porque ele tem menos OSDs do que o mínimo exigido por essa regra. + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + Compactação + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + Algoritmo + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- Não há algoritmos de compactação de eliminação disponíveis -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + Tamanho mínimo do blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + ex. 128 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + O valor deve ser maior do que 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + O valor deve ser menor do que o tamanho máximo do blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + Tamanho máximo do blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + ex. 512 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + O valor deve ser maior do que o tamanho mínimo do blob + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + Taxa + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + Taxa de compactação + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + O valor deve ser entre 0.0 e 1.0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + Máx. de bytes + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + Deixe-a em branco ou especifique 0 para desabilitar esta cota. + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + Uma cota válida deve ser maior do que 0. + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + Máx. de objetos + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + O valor deve ser maior do que ou igual a 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool pool + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + perfil de código de eliminação + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + regra de crush + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + Lista de Pools + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + Proteção de Dados + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + Aplicativos + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status Status do PG + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + Conjunto de Regras do Crush + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + A exclusão de pool foi desabilitada pela configuração mon_allow_pool_delete. + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key Chave + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + Controle de versão + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + Exclusão da MFA + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + Tipo de índice + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + Regra de posicionamento + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + Cota do compartimento + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + Habilitado + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + Tamanho máximo + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + Ilimitado + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + Máximo de objetos + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + Bloqueio + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days Dias + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + Os nomes de compartimentos podem conter apenas letras minúsculas, números, pontos e hifens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + O nome escolhido já está em uso. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + Os nomes de compartimentos não devem conter caracteres maiúsculos ou sublinhados. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + Cada rótulo deve começar e terminar com uma letra minúscula ou um número. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + Não é possível formatar nomes de compartimentos como endereço IP. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + Os rótulos de compartimentos não podem ficar vazios e só podem conter letras minúsculas, números e hifens. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + Os nomes de compartimentos devem ter de 3 a 63 caracteres. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + Proprietário + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- Selecionar usuário -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + Habilita o controle de versão dos objetos no compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication - Multi-Factor Authentication + Autenticação Multifator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled - Delete enabled + Exclusão habilitada + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + Habilita a Exclusão da MFA (autenticação multifator), que exige autenticação adicional para alterar o estado do controle de versão do compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + Número de Série do Token + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + PIN do Token + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. Habilita o bloqueio dos objetos no compartimento. O bloqueio apenas pode ser habilitado ao criar um compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + O número de dias que você deseja especificar para o período de retenção padrão que será aplicado aos novos objetos armazenados neste compartimento. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + O valor inserido deve ser um número inteiro positivo. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + Dias de Retenção deve ser um número inteiro positivo. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + Destino de posicionamento + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- Selecionar destino de posicionamento -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + compartimento + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + Compartimento do Gateway de Objetos atualizado ''. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + Compartimento do Gateway de Objetos criado '' + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + Sem Limite + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + Proprietário + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + Capacidade Usada + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + Limite de Capacidade % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - buckets + Limite de Objetos % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + Contadores de Desempenho + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + Desempenho de Sincronizaão + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + Domínio + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group Grupo de Zonas + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + Zona + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + Apenas este número de daemons será criado. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + Grupo de zonas + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + Pool de dados + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + Erro + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- -- Selecionar tipo -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + Permissão + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- -- Selecionar permissão -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability recurso + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + Chaves + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show Mostrar + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + Locatário + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + ID de Usuário + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + Nome completo + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + Endereço de e-mail + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + Suspenso + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + Máximo de compartimentos + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + Subusuários + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + Recursos + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) MFAs(Id) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + Cota do usuário + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + Nome de usuário + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + Ilimitado + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + O valor não é válido. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + O ID de usuário escolhido já está em uso. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + Mostrar Locatário + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + O ID de usuário escolhido neste locatário. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. Este não é um endereço de e-mail válido. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + O endereço de e-mail escolhido já está em uso. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + Máx. de compartimentos + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + Desabilitado + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom Personalizado + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + O valor inserido deve ser >= 1. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + Chave S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key Gerar chave automaticamente + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + Chave de acesso + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + Chave secreta + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + Não há subusuários. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + Não há chaves. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + Não há recursos. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + Todos os recursos já foram adicionados. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + Tamanho ilimitado + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + Tamanho máx. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + Objetos ilimitados + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + Máx. de objetos + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + O valor inserido deve ser >= 0. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + usuário + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + subusuário + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + Chave S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + Usuário do Gateway de Objetos atualizado '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + Usuário do Gateway de Objetos criado '' + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + Locatário + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + Nome completo + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + Endereço de e-mail + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + Suspenso + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + Máx. de compartimentos + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users usuários + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- Selecionar nome de usuário -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + Subusuário + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + O ID de subusuário escolhido já está em uso. + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + leitura, gravação + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + completo + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Chave Swift + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + Gerar segredo automaticamente + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + Subusuário + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + Chave Swift + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + Usuários + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + Funções + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + Não foi especificado um nome de host ou um ID do OSD + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID - Device ID + ID do Dispositivo + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + Estado de Saúde + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + Bom + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + Ruim + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + Obsoleto + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy Expectativa de Vida + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + Data de Criação da Predição + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + Nome do Dispositivo + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons Daemons + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + Falha ao recuperar os dados SMART. + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + Os dados recebidos têm o formato JSON versão 2.x e são incompatíveis com o painel de controle no momento. + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + Sem dados SMART disponíveis. + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + Resultado do teste de autoavaliação da saúde geral do SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + desconhecido + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + aprovado + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + reprovado + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + Informações do Dispositivo + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + Sem informações disponíveis para este dispositivo. + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + Sem dados SMART disponíveis para este dispositivo. + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + Carregando dados SMART. + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctl recebeu um argumento desconhecido (código do erro ). Talvez você use uma versão incompatível do smartmontools. A versão &gt;= 7.0 do smartmontools é necessária para recuperar os dados com êxito. + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + Ocorreu um erro com o código . + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + Bruto + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + Limite + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + Quando Falhou + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + Pior + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + Defina uma senha nova. + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + Na sequência, você será redirecionado à página de login. + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + As senhas antiga e nova devem ser diferentes. + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. A confirmação da senha não é igual à senha nova. + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + Nome de usuário é obrigatório + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + Senha é obrigatória + + src/app/core/auth/login/login.component.html + 48 + Log in Efetuar Login + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + Escopo + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + Criar + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + Atualizar + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + Excluir + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + Descrição... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + Permissões + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + função + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + Função '' criada + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + Função '' atualizada + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role Função do Sistema + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + Função '' excluída + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + Novo nome + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + Clonar Função + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + Função '' clonada de '' + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + O nome de usuário já existe. + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + Confirmar senha + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + A confirmação de senha não corresponde à senha. + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + Data de vencimento da senha + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + Data de vencimento da senha... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + E-mail + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + E-mail inválido. + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + O usuário deve alterar a senha no próximo logon + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + Você está prestes a remover as permissões de "leitura/atualização de usuário" do seu próprio usuário. + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + Se você continuar, não poderá mais adicionar ou remover funções de nenhum usuário. + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + Não há funções. + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - Usuário ' - ' criado - + Created user '' + Usuário '' criado + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + Atualizar usuário + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + Você foi automaticamente desconectado porque suas funções foram alteradas. + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + Usuário '' atualizado + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + E-mail + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + Funções + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + Usuário '' excluído + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + Falha ao excluir o usuário '' + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + Você efetuou login como ''. + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + Senha antiga + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + Senha nova + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + Confirmar senha nova + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + senha + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + Senha do usuário atualizada" + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + Gateway de Objetos Selecionados: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + Gateway de Objetos Selecionado + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + Página não Encontrada + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + Não encontramos o que você procura. A página solicitada pode ter sido alterada ou movida. + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + Ir para o Painel de Controle + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + Página Não Encontrada + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + Não encontramos o que você procura. + A página solicitada pode ter sido alterada ou movida. + + src/app/core/error/error.ts + 11,12 + Access Denied Acesso Negado + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + Você não tem permissão para ver esta página ou recurso. + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + Usuário Negado + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. O usuário não existe no Ceph. Seu logout será efetuado do Provedor de Identidade quando você repetir o login. + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + Ajuda + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security - Security + Segurança + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + Marcas Registradas + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + Configurações do Painel de Controle + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + Gerenciamento de usuários + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + Configuração de telemetria + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + Ajuda + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + documentação + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + Sobre + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + Usuário que efetuou login + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + Alterar senha + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + Alternar navegação + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + Mapa CRUSH + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + Compartimentos + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + Sistemas de Arquivos + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + Registros + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + Módulos do Gerenciador + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + Tarefas e Notificações + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + O nome do nó sob o qual os dados devem ser colocados. + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + O tipo de nós do CRUSH nos quais devemos separar as réplicas. + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. Cada objeto é dividido em partes de pacotes de dados, cada uma armazenada em um OSD diferente. + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + Calcule os pacotes de codificação de cada objeto e armazene-os em diferentes OSDs. + O número de pacotes de codificação é também o número de OSDs que podem ficar inativos sem perda de dados. + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + O plug-in jerasure é o mais genérico e flexível, + além de ser o padrão para pools codificados para eliminação do Ceph. + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + A técnica mais flexível é reed_sol_van: ela é suficiente para definir k + e m. A técnica cauchy_good pode ser mais rápida, mas você precisa escolher o tamanho do pacote + com cuidado. Todos os reed_sol_r6_op, liberation, blaum_roth e liber8tion são equivalentes ao RAID6 + no sentido de que só podem ser configurados com m=2. + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + A codificação será feita em pacotes de tamanho de bytes um de cada vez. + A escolha do tamanho do pacote certo é difícil. + A documentação do jerasure contém informações completas sobre este tópico. + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,15 +17319,19 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + Com o plug-in jerasure, quando um objeto codificado para eliminação é armazenado em + vários OSDs, a recuperação após a perda de um OSD requer a leitura de todos os outros. + Por exemplo, se o jerasure for configurado com k=8 e m=4, a perda de um OSD exigirá a leitura + dos outros onze para fazer o reparo. - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + O plug-in de código de eliminação lrc cria pacotes locais de paridade para conseguir recuperar usando + menos OSDs. Por exemplo, se o lrc for configurado com k=8, m=4 e l=4, ele criará + um pacote de paridade adicional para cada quatro OSDs. Quando um único OSD é perdido, ele pode ser + recuperado apenas com quatro OSDs, em vez de onze. + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, @@ -8850,6 +17340,10 @@ Agrupe os pacotes de codificação e dados em conjuntos de localidades com tamanho. Por exemplo, no caso de k=4 e m=2, quando locality=3, dois grupos de três são criados. Cada conjunto pode ser recuperado sem a leitura dos pacotes do outro conjunto. + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined @@ -8860,52 +17354,84 @@ por l será armazenado. Por exemplo, se isso for definido como rack, cada grupo de pacotes l será colocado em um rack diferente. Isso é usado para criar uma etapa da regra CRUSH, como a etapa de escolha do rack. Se isso não for definido, esse tipo de agrupamento não será feito. + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + O plug-in isa encapsula a biblioteca ISA. Ele apenas é executado em processadores Intel. + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + O plug-in ISA vem em dois formatos de Reed Solomon. + Se reed_sol_van for definido, ele será Vandermonde, se cauchy for definido, ele será Cauchy. + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + O plug-in shec encapsula a biblioteca múltipla SHEC. + Ele permite ao ceph recuperar dados com mais eficiência do que os códigos de Reed Solomon. + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + O número de pacotes de paridade, em que cada um inclui cada pacote de dados em sua + faixa de cálculo. O número é usado como estimador de durabilidade. Por exemplo, se c=2, + 2 OSDs podem ficar inativos sem perda de dados. + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + Códigos CLAY (abreviação de coupled-layer) são códigos de eliminação criados para + proporcionar economias significativas em termos de largura de banda de rede e E/S de disco, quando um + nó/OSD/rack está sendo reparado. + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + Número de OSDs solicitados para enviar dados durante a recuperação de um único pacote. + d precisa ser escolhido para que k+1 <= d <= k+m-1. Quanto maior for d, melhor será + a economia. + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + scalar_mds especifica o plug-in que é usado como bloco de construção + na construção em camadas. Ele pode ser jerasure, isa ou shec. + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8918,1733 +17444,2840 @@ são 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' para jerasure, 'reed_sol_van', 'cauchy' para isa e 'single', 'multiple' para shec. + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + O nome do compartimento de crush usado para a primeira etapa da regra CRUSH. + Por exemplo, a etapa assumir o padrão. + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + Verifique se não há dois pacotes em um compartimento com o mesmo domínio de + falha. Por exemplo, se o domínio de falha for um host, não armazene dois pacotes no mesmo + host. Isso é usado para criar uma etapa da regra CRUSH, como a etapa de escolha do host folha. + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. Defina o nome do diretório do qual o plug-in de código de eliminação é carregado. + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + Permite todas as operações + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + Permite apenas as operações que não modificam o servidor + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + Não permite nenhum tipo de acesso + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. Especifique um volume do sistema de arquivos. + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + O recurso foi desabilitado porque o Orchestrator não está disponível. + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + O backend do Orchestrator não é compatível com este recurso. + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- Selecionar prioridade -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + Baixa + + src/app/shared/api/osd.service.ts + 44 + High - High + Alta + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + Os dados da lista de usuários podem estar obsoletos. Se necessário, é possível recarregá-los manualmente. + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + Recuperando dados para . + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + Recuperando dados. + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... Aguarde... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + Exibindo dados já armazenados em cache para . + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + Exibindo dados já armazenados em cache. + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + Não foi possível carregar os dados para . + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + Não foi possível carregar os dados. + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + Verifique a saúde do cluster. + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + Erro + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + Informações + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + Êxito + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + Perigo + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + Remova o valor da configuração personalizada. No lugar dela, a configuração padrão será herdada e usada. + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + O valor inserido é muito alto! Ele não deve ser maior do que . + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + O valor inserido é muito baixo! Ele não deve ser menor do que . + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + Copiar para Área de Transferência + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + Deseja realmente ? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + Deseja realmente os itens selecionados? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + Deseja realmente o(s) selecionado(s)? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. Sim, desejo. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation documentação + + src/app/shared/components/doc/doc.component.ts + 12 + Download Fazer Download + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + Este campo é obrigatório. + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + Erro. + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + Carregando dados do painel... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + Consulte sobre como configurar e habilitar a funcionalidade de monitoramento. + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + O Painel de Controle do Grafana não existe. Consulte sobre como adicionar painéis de controle ao Grafana. + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Seletor de Horário do Grafana + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + Redefinir Configurações + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + Última 1 hora (Padrão) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday Ontem + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + Até agora hoje + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + Antes de ontem + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + Últimos 2 dias + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + Este dia na semana passada + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week Semana anterior + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + Até agora nesta semana + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + Últimos 7 dias + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + Mês anterior + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + Até agora neste mês + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + Últimos 30 dias + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + Últimos 90 dias + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + Últimos 6 meses + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + Último ano + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + Ano anterior + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + Até agora neste ano + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + Últimos 2 anos + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + Últimos 5 anos + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + Selecionar Idioma + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + Limpar notificações + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + Remover notificação + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: - Duration: + Duração: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + Não há notificações. + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + O recurso não é compatível com o Orchestrator atual. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + O Orchestrator não está disponível. Consulte sobre como configurar e habilitar a funcionalidade. + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + Sua senha expira em menos de 1 dia. Clique aqui para alterá-la agora. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + Sua senha expira em dia(s). Clique aqui para alterá-la agora. + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + Atualizar + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + Nenhum item selecionado. + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + Desmarcar item para selecionar novamente + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + Limite de seleção atingido + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + Tags de filtro + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + Adicionar selo + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + Não há itens disponíveis. + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + A comunidade do Ceph precisa da sua ajuda para continuar fazendo melhorias: Ative o módulo Telemetria. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + Lembrete de ativação da telemetria sem som + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + Você pode ativar o módulo na página Configuração de telemetria (<b>Configurações do Painel de Controle</b> -> <b>Configuração de telemetria</b>) a qualquer momento. + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export Exportar + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + Importar + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + Adicionar + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + Definir + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + Enviar + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + Remover + + src/app/shared/constants/app.constants.ts + 170 + Unset - Unset + Não definir + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + Cancelar + + src/app/shared/constants/app.constants.ts + 176 + Preview Visualização + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + Mover + + src/app/shared/constants/app.constants.ts + 178 + Next Avançar + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + Voltar + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + Clonar + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + Copiar + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + Remoção Profunda + + src/app/shared/constants/app.constants.ts + 187 + Destroy - Destroy + Destruir + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + Expulsar + + src/app/shared/constants/app.constants.ts + 189 + Flatten Nivelar + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + Marcar como Inativo + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + Marcar como Entrada + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + Marcar como Perdido + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + Marcar como Saída + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + Proteger + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + Renomear + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + Restaurar + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + Reponderar + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + Remoção + + src/app/shared/constants/app.constants.ts + 201 + Show - Show + Mostrar + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + Mover para Lixo + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + Cancelar proteção + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + Alterar + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + Entrar em Manutenção + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + Sair da Manutenção + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + Iniciar Drenagem + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain Parar Drenagem + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + Recriar + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + Expirar + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + Desativar + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + Excluído + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + Adicionado + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + Removido + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + Editado + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + Cancelado + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + Visualizado + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + Movido + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + Clonado + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + Copiado + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + Removido Profundamente + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + Destruído + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + Nivelado + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + Marcado como Inativo + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + Marcado como Entrada + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + Marcado como Perdido + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + Marcado como Saída + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + Protegido + + src/app/shared/constants/app.constants.ts + 313 + Purged Purgado + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + Renomeado + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + Restaurado + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + Reponderado + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + Rollback feito + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + Removido + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + Exibido + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + Movido para Lixeira + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + Desprotegido + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + Recriado + + src/app/shared/constants/app.constants.ts + 326 + Expired - Expired + Expirado + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + Fechar + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + Limpar filtros + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + selecionado(s) + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + encontrado(s) + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total total - X total + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row Expandir/Recolher Linha + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + Falha ao carregar dados. + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + Carregando dados do formulário... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + Não foi possível carregar os dados do formulário. + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + O tamanho deve ser no mínimo + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + O tamanho deve ser no máximo + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + Sim + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + Não + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + em %s + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + %s atrás + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + alguns segundos + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d segundos + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + um minuto + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + %d minutos + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + uma hora + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d horas + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + um dia + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d dias + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + uma semana + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d semanas + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + um mês + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months %d meses + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year um ano + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d anos + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + Regras exigidas para senhas: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - Deve conter no mínimo - caracteres - + Must contain at least characters + Deve conter no mínimo caracteres + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + Não deve ser igual à anterior + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + Não pode conter o nome de usuário + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + Não pode conter nenhuma palavra-chave configurada + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + Não pode conter caracteres repetidos, por exemplo, "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + Não pode conter caracteres sequenciais, por exemplo, "abc" + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + Deve consistir em caracteres dos seguintes grupos: + * Alfabeto a-z, A-Z + * Números 0-9 + * Caracteres especiais: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Qualquer outro caractere (sinais) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + Sua correspondência não parece seguir nenhuma regra definida ou alerta ativo no momento. + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts sem alertas ativos + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1 alerta ativo + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + alertas ativos + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + Segue 1 regra + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + Corresponde a regras + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + com . + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + Qualidade do Serviço + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + Limite de BPS + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + O limite de bytes por segundo de E/S desejado. + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + Limite de IOPS + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + O limite de operações por segundo de E/S desejado. + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + Limite de BPS de Leitura + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + O limite de bytes por segundo de leitura desejado. + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + Limite de IOPS de Leitura + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + O limite de operações por segundo de leitura desejado. + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + Limite de BPS de Gravação + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + O limite de bytes por segundo de gravação desejado. + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + Limite de IOPS de Gravação + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + O limite de operações por segundo de gravação desejado. + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + Intermitência de BPS + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + O limite de bytes de E/S de intermitência desejado. + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + Intermitência de IOPS + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + O limite de operações de E/S de intermitência desejado. + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + Intermitência de BPS de Leitura + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + O limite de bytes de leitura de intermitência desejado. + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + Intermitência de IOPS de Leitura + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + O limite de operações de leitura de intermitência desejado. + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst - Write BPS Burst + Intermitência de BPS de Gravação + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + O limite de bytes de gravação de intermitência desejado. + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + Intermitência de IOPS de Gravação + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + O limite de operações de gravação de intermitência desejado. + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + Falha ao + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + Executando + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + executar + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + Executado + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + tarefa desconhecida + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + Criando + + src/app/shared/services/task-message.service.ts + 67 + create - create + criar + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + Atualizando + + src/app/shared/services/task-message.service.ts + 68 + update - update + atualizar + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + Excluindo + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding Adicionando + + src/app/shared/services/task-message.service.ts + 70 + add - add + adicionar + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + Removendo + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + remover + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + Importando + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + importar + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + Importado + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + RBD '' + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + Instantâneo do RBD '@' + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + espelhando nome do site + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + token de boot + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + modo de espelho do pool '' + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + peer de espelho do pool '' + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + todos os painéis de controle + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + Identificando + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + identificar + + src/app/shared/services/task-message.service.ts + 133 + Identified Identificado + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + dispositivo '' no host '' + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + OSDs (DriveGroups: ) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + Nome já está em uso por . + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - is busy. - + is busy. + está ocupado. + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + contém instantâneos. + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + Clonando + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + clonar + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + Instantâneo de deve ser protegido. + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + Copiando + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + copiar + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + Nivelando + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + nivelar + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + Impossível cancelar a proteção de porque há imagens filho. + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + Impossível excluir porque está protegido. + + src/app/shared/services/task-message.service.ts + 243 + Rolling back Fazendo rollback + + src/app/shared/services/task-message.service.ts + 248 + rollback rollback + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + Movendo + + src/app/shared/services/task-message.service.ts + 256 + move - move + mover + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + imagem '' para jogar no lixo + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. Imagem não encontrada. + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + Restaurando + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + restaurar + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + imagem '' para '' + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - Nome da imagem ' - ' já está em uso. - + Image name '' is already in use. + Nome da imagem '' já está em uso. + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + imagem '' + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + Purgando + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + purgar + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + todos os pools + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + imagens de + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + Impossível desabilitar espelhamento porque ele contém um peer. + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - host ' - ' - + host '' + host '' + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + OSD '' + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + pool '' + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + perfil de código de eliminação '' + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + regra de crush '' + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + destino '' + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS ' - : - ' - + NFS ':' + NFS ':' + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-CN.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-CN.xlf index 83e681ac48b..e128e6813da 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-CN.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-CN.xlf @@ -1,8827 +1,17312 @@ - - + + Close - Close + 关闭 + + node_modules/src/ngb-config.ts + 13 + HH HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + 关闭 + + node_modules/src/ngb-config.ts + 13 + «« «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + 选择月份 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + 上个月 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours 小时 + + node_modules/src/ngb-config.ts + 13 + « « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + 上一页 + + node_modules/src/ngb-config.ts + 13 + MM MM + + node_modules/src/ngb-config.ts + 13 + » » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + 选择年份 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + 下月 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + 下一页 + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + 分钟 + + node_modules/src/ngb-config.ts + 13 + »» »» + + node_modules/src/ngb-config.ts + 13 + Increment hours 递增小时数 + + node_modules/src/ngb-config.ts + 13 + First - First + 第一页 + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + 上一页 + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + 递减小时数 + + node_modules/src/ngb-config.ts + 13 + Next - Next + 下一页 + + node_modules/src/ngb-config.ts + 13 + Increment minutes 递增分钟数 + + node_modules/src/ngb-config.ts + 13 + Last - Last + 最后一页 + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + 递减分钟数 + + node_modules/src/ngb-config.ts + 13 + SS SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + 秒 + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + 递增秒数 + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + 递减秒数 + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + 必须大于或等于 。 + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + 必须小于或等于 。 + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + 概览 + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets 目标 + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology iSCSI 结构图 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + 名称 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + 当前 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + 默认值 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication 发现身份验证 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + 用户 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + 这是必填字段! + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 用户名长度必须为 8 至 64 个字符,可以包含字母数字字符、"."、"@"、"-"、"_" 或 ":"。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + 密码 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 密码长度必须为 12 至 16 个字符,可以包含字母数字字符、"@"、"-"、"_" 或 "/"。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + 互认证用户 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + 互认证密码 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + 已更新发现身份验证 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + 目标 IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. - IQN has wrong pattern. + IQN 格式错误。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + IQN 应由以下格式构成:“iqn.$year-$month.$reversedAddress:$definedName” + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + 例如:iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + 更多信息 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + 此目标的高级设置修改过。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + 端口 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + 添加端口 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + 至少需要 个网关。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images 映像 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + 后备存储:。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + 此映像的设置修改过。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + 重复的 LUN 编号。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + 重复的 WWN。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + 添加映像 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + ACL 身份验证 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 用户名长度必须为 8 至 64 个字符,可以包含字母数字字符、"."、"@"、"-"、"_" 或 ":"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 密码长度必须为 12 至 16 个字符,可以包含字母数字字符、"@"、"-"、"_" 或 "/"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators - Initiators + 授权人 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + 授权人 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + 客户端 IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + 授权人 IQN 必须唯一。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 用户名长度必须为 8 至 64 个字符,可以包含字母数字字符、"."、"@"、"-"、"_" 或 ":"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 密码长度必须为 12 至 16 个字符,可以包含字母数字字符、"@"、"-"、"_" 或 "/"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + 授权人属于某个组。将在组中配置映像。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + 未添加项目。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + 添加授权人 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + 组 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + 组 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name 名称 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + 添加组 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. 没有可用的端口。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + 没有可用的映像。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. 没有可用的映像。请确保为目标添加一个映像。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. 没有可用的授权人。请确保为目标添加一个授权人。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + 目标 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + 配置 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + 通常无须更改这些默认参数值。 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + 标识符 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + 设置 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore - Backstore + 后备存储 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + 高级设置 + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + 没有可用的 iSCSI 目标 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + 请参见 了解如何配置和启用 iSCSI 目标管理功能。 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + 可用信息: + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + 发现身份验证 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + 目标 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + 端口 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + 映像 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions 会话数量 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + 不可用的网关 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + 目标具有活跃会话 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + iSCSI 目标 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + 网关 + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + 状态 + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + 目标数量 + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool - Pool + 存储池 + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image 映像 + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore - Backstore + 后备存储 + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + 读字节数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + 写字节数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + 读操作数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + 写操作数 + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + 活动/优化开始时间 + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token 创建引导令牌 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - 要创建可由对等站点集群导入的引导令牌,请提供本地站点的名称,选择将为其启用镜像的存储池, 然后点击 - 生成 - 。 - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + 要创建可由对等站点集群导入的引导令牌,请提供本地站点的名称,选择将为其启用镜像的存储池, 然后点击生成。 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + 站点名称 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + 名称... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + 存储池 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + 至少需指定一个存储池。 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + 生成 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + 令牌 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + 生成的令牌... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + 关闭 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + 导入引导令牌 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - 要导入由对等站点集群创建的引导令牌,请提供本地站点的名称,选择将为其启用镜像的存储池,提供生成的令牌, 然后点击 - 导入 - 。 - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + 要导入由对等站点集群创建的引导令牌,请提供本地站点的名称,选择将为其启用镜像的存储池,提供生成的令牌, 然后点击导入。 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + 方向 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + 令牌无效。 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + 实例 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname 主机名 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version 版本 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + 健康状况 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + 问题 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + 进度 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description 描述 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons 守护进程 + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + 创建引导令牌 + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + 导入引导令牌 + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + 编辑存储池镜像模式 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + 要编辑存储池 的镜像模式,请从列表中选择新模式,然后点击更新。 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + 模式 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + 在禁用镜像功能前必须先移除同伴集群。 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + 已禁用 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + {VAR_SELECT, select, edit {编辑} other {添加}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + 存储池镜像对等 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + 存储池 的存储池镜像对等属性,并点击提交。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + 集群名称 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + 该集群名称无效。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID CephX ID + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... CephX ID... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + 该 CephX ID 无效。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + Monitor 地址 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + 逗号分隔的地址... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + 该 Monitor 地址无效。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key CephX 密钥 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Base64 编码的密钥... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. CephX 密钥必须为 base64 编码。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + 本地数量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + 远程数量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + 编辑模式 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer 添加对等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer 编辑对等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + 删除对等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode 模式 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader 主管 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + 本地数量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + 远程数量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + 镜像对等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + 端口 + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + 授权人 + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + 正在加载... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host - Host + 主机 + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport - Transport + 传输 + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool - Pool + 存储池 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- -- 请选择存储池 -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + 不允许使用 "/" 和 "@"。 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + 名称空间 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + 详细信息 + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + 名称空间 + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. 值必须至少为 1。 + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration RBD 配置 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. 删除本地的配置值。将继承并改用父配置值。 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + 最小值为 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global - Global + 全局 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + 映像 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + 密钥 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + 来源 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + 值 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + 仅可用于启用了 fast-diff 的 RBD 映像 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + 数据池 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + 已创建 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + 容量 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + 对象数 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + 对象大小 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + 特性 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + 已供给容量 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A - N/A + 不适用 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned 总供给容量 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + 条带单元大小 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + 条带个数 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + 父项 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + 块设备名称前缀 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + 顺序 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + 格式版本 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + 快照 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + 配置 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + 性能 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + 无法显示处于 "正在删除" 状态的 RBD 的信息。 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + 此设置会覆盖全局值 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + 该值为全局值。没有为此映像设置此选项的值。 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + 要使用专用的数据池,您需要多个使用了 RBD 应用标签的存储池。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- 没有可用的数据池 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- 没有可用的名称空间 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- 请选择名称空间 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + 您必须提高容量。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping 条带 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- 请选择条带单元大小 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + 因为设置了条带个数,所以这是必填字段! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + 条带单元大小超过了对象大小。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + 因为设置了条带单元大小,所以这是必填字段! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + 条带个数必须大于 0。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + 完全展开 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + 分层 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + 互斥锁 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + object map(需要互斥锁支持) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + Fast diff(与 object-map 互锁) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + 删除此映像时也会删除它的所有快照。 + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + 以下快照当前受到保护,将会被删除: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + RBD 处于 "正在删除" 状态 + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + 容量 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + 使用率 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + 对象数 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + 对象大小 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + 父项 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + 镜像 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + 警报 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + 此 RBD 具有克隆的快照。请先删除相关 RBD,再删除此 RBD。 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + 此 RBD 映像的名称无效,无法通过 Ceph 进行管理。 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + 无法对处于 "正在删除" 状态的 RBD 执行操作 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + 创建名称空间 + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- 没有可用的 RBD 存储池 -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. 名称空间已存在。 + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + 已创建名称空间 "/" + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + 映像总数 + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - Deleted namespace ' - / - ' - + Deleted namespace '/' + 已删除名称空间 "/" + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images - Namespace contains images + 名称空间包含映像 + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + RBD 快照 + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + 快照必须处于受保护状态才能克隆。 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + 您即将进行回滚操作 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + 已使用 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + 受保护 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + 无保护 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + 已创建 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + RBD 快照回滚 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + 回滚 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + RBD 快照 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + 回收站 + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + 总体性能 + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + 清空回收站 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + 过期时间 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + 保护期限 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + 此映像在 前始终受到保护。 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status - Status + 状态 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At 删除时间 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + 将映像移至回收站 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + 此映像包含快照,这将阻止映像移至回收站后被删除。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + 要将 移至回收站,请点击移动。您可以视需要选择一个超期日期。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + 保护期截至 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + 无保护 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + 日期格式有误。请使用 "YYYY-MM-DD HH:mm:ss"。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + 保护期限已过。请选择一个将来的日期或留空。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + 要进行清除,请选择所有或一个存储池,然后点击清除。 + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: - Pool: + 存储池: + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + 存储池名称... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + 所有 + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + 恢复映像 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + 要恢复 @,请键入映像的新名称,然后点击恢复。 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + 新名称 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + 这是必填字段! + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id - id + ID + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + 类型 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + 状态 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + 版本 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + 根 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + 已逐出客户端 "" + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + 排位 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + 待机 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters - MDS performance counters + MDS 性能计数器 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + 待机守护进程 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + 排位 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon - Daemon + 守护进程 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + 活跃度 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries dentry + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + inode + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + 目录 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + 功能 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + 类型 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + 配额 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + 来源 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + 路径 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + 无法创建子卷 中的文件/文件夹的快照 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + 最大大小 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + 最大文件数量 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + 继承的 为将使用的最大值。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + 保存 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + "" 的 CephFS 配额 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + 大小 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + 文件数量 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + "" 中的 配额 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + 值必须大于或等于 0 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + 值必须小于或等于 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + 已更新 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - 以继承 - - + in order to inherit + 以继承 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + 未使用,因为继承了 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + 为了不为目录分配配额 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + 。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + 创建快照 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + 请输入快照的名称。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + 已创建 "" 的快照 "" + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + CephFs 快照 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + 已删除 "" 的快照 "" + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + 归置 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + 主机 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label 标签 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + 没有主机。 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + 过滤主机 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled 已启用 + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + 开始时间 + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + 正在重新连接,请稍候... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + 默认值 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + 例如 10GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All 所有 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + 读取 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute 执行 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + 数据池 + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + 目录 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + 客户端 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + 性能详细信息 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + 描述 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + 详细描述 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values 当前值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + 守护进程的默认值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + 类型 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + 下限 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + 上限 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + 标志 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + 服务 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source 来源 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + 级别 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + 可在运行时更新(可编辑) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + 标记 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + 枚举值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + 另请参见 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + 该值可在运行时更新。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + 守护进程/客户端不会从 monitor 的配置数据库提取此值。 + 因此不能用 "ceph config set ..." 设置此选项,但可以通过 + ceph.conf 或者用命令行进行配置。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + 选项仅会在守护进程启动期间生效。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. - Option only affects cluster creation. + 选项仅会影响集群的创建。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + 选项仅会影响守护进程的创建。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + 值 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + -- 默认值 -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true true + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false false + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - 输入的值太大!值不得大于 - 。 - + The entered value is too high! It must not be greater than . + 输入的值太大!值不得大于 。 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 输入的值太小!值不得小于 。 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - 已更新配置选项 - - + Updated config option + 已更新配置选项 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + 已修改 + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + 级别 + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service 服务 - - - Modified - Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + 当前值 + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + 可编辑 + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + 集群资源 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + 存储容量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + 设备数量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + 裸容量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs CPU + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory 内存 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + 主机详细信息 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + 欢迎使用 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + 请先扩展您的集群 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + 扩展集群 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + 跳过 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + 添加主机 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + 创建 OSD + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + 创建服务 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - 您即将跳过集群扩展流程。您需要 - 在菜单中导航以添加主机和服务 - 。 - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + 您即将跳过集群扩展流程。您需要在菜单中导航以添加主机和服务。 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + 确实要继续吗? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + 继续 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + 用户已跳过集群扩展 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + 集群扩展成功 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + 扩展集群 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + CRUSH 索引查看器 + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices - Devices + 设备 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks - Physical Disks + 物理磁盘 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + 设备健康状况 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + 未找到主机名。 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + 主机名 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + 要一次添加多个主机,您可以输入: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - 主机名称的逗号分隔列表 - (例如:example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + 主机名称的逗号分隔列表(例如:example-01,example-02,example-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + 范围表达式(例如:example-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + 范围表达式的逗号分隔列表(例如:example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + 所选主机名已被使用。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + 网络地址 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + 不合法的IP地址 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + 标签 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + 维护模式 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + 没有标签。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + 过滤或添加标签 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label 添加标签 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host - host + 主机 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + 主机列表 + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + 仅当 Orchestrator 可用时,才能获取数据。 + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + SSD、NVME + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash - Flash + 闪存 + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + 由于所选主机并不是由 Orchestrator 管理,该功能已禁用。 + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + 标签 + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + 型号 + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + CPU + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + 内核 + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + 总内存 + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity 裸容量 + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + HDD + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash - Flash + 闪存 + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + NIC + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + 编辑主机: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + 编辑主机 + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + 已更新主机 &quot;&quot; + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + &quot;&quot; 已进入维护模式 + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + 无法将 &quot;&quot; 置于维护模式 + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - &quot; - &quot; 已退出维护模式 - + "" has exited maintenance + &quot;&quot; 已退出维护模式 + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + &quot;&quot; 已停止排空 + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - " - " started draining - + "" started draining + &quot;&quot; 已开始排空 + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + 身份 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + 设备路径 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + 可用 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + 供应商 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + OSD + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + 识别设备 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + 请输入 LED 闪烁的时长。 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + 1 分钟 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + 2 分钟 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + 5 分钟 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + 10 分钟 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + 15 分钟 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + 正在识别主机 "" 上启动的 "" + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + 集群日志 + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + 审计日志 + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + 优先级: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + 关键字 + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + 日期 + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + 时间范围: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + 未找到任何日志条目。请尝试选择不同的过滤选项。 + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + 重置过滤器。 + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module 编辑 Manager 模块 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + 输入的值不是有效的 UUID,例如:67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + 输入的值应该是有效的 IP 地址。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - 输入的值太大!值必须小于或等于 - 。 - + The entered value is too high! It must be lower or equal to . + 输入的值太大!值必须小于或等于 。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + 输入的值太小!值必须大于或等于 。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. 输入的值应该是数字。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + 输入的值应该是数字或小数。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + 已更新模块 "" 的选项。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + 始终启用 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + 编辑 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + 启用 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + 禁用 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + 此 Manager 模块始终处于启用状态。 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status 状态 + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + 集群 ID + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + monmap 修改时间 + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + monmap 版本编号 + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con - quorum con + 仲裁 con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon - quorum mon + 仲裁 mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con 所需 con + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + 所需 mon + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + 仲裁成员 + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + 非仲裁成员 + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + 公用地址 + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + 活动会话 + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + OSD 创建预览 + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups - DriveGroups + DriveGroup + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + 属性(OSD 索引) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + 元数据 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + 元数据不可用 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + 性能计数器 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + 设备 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + 主存储设备。这些设备包含所有 OSD 数据。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. 预写式日志设备。这些设备用于存储 BlueStore 的内部日志。仅当 WAL 设备速度快于主设备(例如 NVME 设备或 SSD)时,才适合使用 WAL 设备。如果可用的快速存储空间很少(例如不到 1 GB),我们建议将其用作 WAL 设备。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + DB 设备可用于存储 BlueStore 的内部元数据。仅当 DB 设备速度快于主设备(例如 NVME 设备或 SSD)时,才适合供给 DB 设备。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + 添加 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + 清除 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + 裸容量: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + 没有可用的设备 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + 请先添加主设备 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters 使用过滤器添加设备 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + 设备 + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + 至少须应用以下过滤器之一才能继续: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + 设备数量:。裸容量:。 + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + 各 OSD 标志 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + 集群范围 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + 恢复先前的选择 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + 不启用 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + 不允许启动 OSD + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down - No Down + 不停用 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + 当前不受理 OSD 故障报告,因此 monitor 不会将 OSD 标记为停用 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + 不加入 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + 之前被标记为除名的 OSD 在启动后将不会被重新标记为加入集群 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + 不除名 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + 发现 OSD 在配置的间隔时间后无响应时,该 OSD 将不会自动被标记为除名。 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + 已为整个集群启用该标志。 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + 已更新 OSD 标志 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + 集群范围的 OSD 标志 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + 暂停 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes 暂停读写 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + 不洗刷 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + 禁止洗刷 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + 不深层洗刷 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + 禁止深层洗刷 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + 不回填 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended 暂停 PG 回填 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + 不重新平衡 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded OSD 将不选择回填,除非 PG 也已降级 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + 不恢复 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + 暂停 PG 恢复 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + 逐位排序 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort 使用逐位排序 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + 已清除 Snapdir + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + OSD 已转换 snapset + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + 在恢复时执行删除 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + 在恢复时而非对等互联期间执行删除 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + PG 日志硬限制 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + 为 pg 日志长度设置硬限制 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices 共享设备 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + WAL 槽 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + 一个 WAL 设备对应的 OSD 数量。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + 指定 0 可让 Orchestrator 后端决定数量。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + 值应大于或等于 0 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + DB 槽 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + 一个 DB 设备对应的 OSD 数量。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption 加密 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + OSD 列表 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + 如果继续,OSD 将被标记为。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {OSD} other {OSD}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + 如果继续,OSD 将会。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + 保留 OSD ID 以便替换。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + 除名 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + 加入 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + 停用 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + 标记 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + OSD 丢失 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + 已标记为丢失 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + 清除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + 已清除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + 销毁 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + 已销毁 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + 标志 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + 恢复优先级 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + PG 洗刷 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + 设备类型 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + PG + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes - Read bytes + 读字节数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + 写字节数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops 读操作数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + 写操作数 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + 编辑 OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + 编辑 OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + 已更新 OSD "" + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + 将 OSD 标记为 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + 标记为 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + 删除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + 已删除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + 高级... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + 高级配置选项 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + PG 洗刷选项 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + 已更新 PG 洗刷选项 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + OSD 恢复优先级 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + 优先级 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + 自定义优先级值 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + 输入的值太大!值不得大于 。 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 输入的值太小!值不得小于 。 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + 最大回填量 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active 最大活跃恢复请求数 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + 最大单次恢复操作数 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + 恢复/回填操作间隔睡眠时间 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + 自定义 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + 已更新 OSD 恢复速度优先级 "" + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + 重设 OSD 的权重: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + 值应介于 0 到 1 之间。 + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSD - 洗刷 - + OSDs Scrub + OSD 洗刷 + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} {VAR_SELECT, select, true {深层} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + 您即将对以下 OSD 应用洗刷:。 + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {深层} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + 已在下列 OSD 中初始化 : + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + 要查看所有活动的 Prometheus 告警,请按 中所述向 Prometheus 告警管理器 API 提供 URL。 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + 创建静默 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + 严重程度 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started - Started + 已启动 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + 警告 + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + 静默 + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + 要查看所有已配置的 Prometheus 告警,请按 中所述向 Prometheus 的 API 提供 URL。 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + 组 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + 时长 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + 查询 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + 编辑 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + 删除 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + 编辑静默将会使旧静默过期并将其重新创建为新静默 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + 创建者 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + 注释 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + 开始时间 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + 如果开始时间为过去时间,将使用创建时间 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + 时长 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + 结束时间 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers - Matchers + 匹配器 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher - A silence requires at least one matcher + 一个静默至少需要一个匹配器 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + 添加匹配器 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + 静默 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + 属性名称 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + 正则表达式 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + 请将您的 Prometheus 主机添加到仪表盘配置中,然后刷新页面 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + 要启用 "静默",请按 中所述向 Prometheus 告警管理器 API 提供 URL。 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + 创建者 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + 结束 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + 静默 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + {VAR_SELECT, select, true {编辑} other {添加}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + 匹配器 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + --请选择要匹配的属性-- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + 值 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + 使用正则表达式 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + 无规范 + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + 非受管 + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + 计数: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + 标签: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + 服务事件 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + 上次刷新 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + 守护进程事件 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + 服务名称 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + 服务类型 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + 服务事件 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- 请选择服务类型 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + 后端服务 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- -- 没有可用的服务 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + 服务名称 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + 领域 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + 区域组 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + 区域 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + 非受管 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + 计数 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + 端口 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + 值不得超过 65535。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- 没有可用的存储池 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + 可信 IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + IP 地址逗号分隔列表。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - 请在此处添加 - Ceph Manager - IP 地址,否则将无法连接到 iSCSI 网关。 - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + 请在此处添加 Ceph Manager IP 地址,否则将无法连接到 iSCSI 网关。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + 虚拟 IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + 可以使用入站服务的虚拟 IP 地址和子网(采用 CIDR 表示法)。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + 前端端口 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + 用于访问入站服务的端口。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + Monitor 端口 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + HAProxy 用于获取负载平衡器状态的端口。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + CIDR 网络 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + 用于标识虚拟 IP 地址所用网络接口的网络列表。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + 版本 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + -- 请选择 SNMP 版本 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + 目标 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - 必须采用 "主机名:端口" 格式。 + 必须采用 "主机名:端口" 格式。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + 该值与模式主机名:端口不匹配 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + 引擎 ID + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + 设备的唯一标识符(采用十六进制)。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + 该值与以下模式不匹配:必须为十六进制且长度必须为 2 的倍数,最小值为 10,最大值为 64 。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + 身份验证协议 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- -- 请选择身份验证协议 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + 隐私协议 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + -- 请选择隐私协议 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + 身份凭证 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + SNMP 社区 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + 用户名 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + 加密 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + 证书 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + PEM 格式的 SSL 证书。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. SSL 证书无效。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + 私用密钥 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + PEM 格式的 SSL 私用密钥。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + SSL 私用密钥无效。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + 服务 + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + 归置 + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + 正在运行 + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + 第 步(共 2 步):遥测报告配置 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - 遥测模块会将有关此 Ceph 集群的匿名数据发回给 Ceph 开发人员,以帮助其了解 Ceph 的使用情况,以及用户可能遇到了什么问题。 - 这些数据直观呈现在 - 公共仪表盘 - 上,社区可通过该仪表盘迅速了解以下汇总统计信息:所报告的集群数量,集群的总容量和 OSD 计数,以及版本分发趋势。 - - 报告的数据 - 不 - 包含存储池名称、对象名称、对象内容、主机名或设备序列号等任何敏感数据。它包含有关以下信息的计数器和统计数据: 集群的部署方式、Ceph 版本、主机分布,以及有助于项目更好地了解 Ceph 使用情况的其他参数。这些数据会以安全方式发送至 - 和 - (设备报告)。 - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + 遥测模块会将有关此 Ceph 集群的匿名数据发回给 Ceph 开发人员,以帮助其了解 Ceph 的使用情况,以及用户可能遇到了什么问题。这些数据直观呈现在公共仪表盘上,社区可通过该仪表盘迅速了解以下汇总统计信息:所报告的集群数量,集群的总容量和 OSD 计数,以及版本分发趋势。报告的数据不包含存储池名称、对象名称、对象内容、主机名或设备序列号等任何敏感数据。它包含有关以下信息的计数器和统计数据: 集群的部署方式、Ceph 版本、主机分布,以及有助于项目更好地了解 Ceph 使用情况的其他参数。这些数据会以安全方式发送至 和 (设备报告)。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + 停用 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + 通道 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - 遥测报告细分为数个 "通道",每个通道包含不同类型的信息,您可以在下面进行配置。 + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + 遥测报告细分为数个 "通道",每个通道包含不同类型的信息,您可以在下面进行配置。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + 基本 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: 包含有关集群的基本信息: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + 集群容量 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons Monitor、Manager、OSD、MDS、对象网关或其他守护进程的数量 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + 当前所使用的软件版本 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + RADOS 存储池和 CephFS 文件系统的数量及类型 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + 默认值被更改的配置选项的名称(而不是其值) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + 崩溃 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: 包含有关守护进程崩溃的信息: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon - Type of daemon + 守护进程类型 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + 守护进程版本 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + 操作系统(操作系统发行套件、内核版本) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + 标识 Ceph 代码中发生崩溃的位置的堆栈跟踪 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + 设备 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + 包含有关设备度量(如匿名 SMART 度量)的信息。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + 身份 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + 包含用户提供的关于集群的标识信息: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + 联系信息 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + 提交任何联系信息完全是可选操作,默认已被禁用。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + 联系 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + 我的首个 Ceph 集群 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + 组织 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name 组织名称 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + 间隔 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + 模块默认每 24 小时编译并发送一次新报告。您可以设置不同的小时数以调整此间隔。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. 输入的值过小!值必须大于或等于 8。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy 代理 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + 如果集群无法直接连接到配置的遥测端点(默认为 telemetry.ceph.com),您可以配置 HTTP/HTTPS 代理服务器,例如,通过添加 https://10.0.0.1:8080 来配置 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 如果需要,您还可以包含 user:pass,例如 https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - 注意: - 点击 "下一步" 后,您首先会看到报告内容预览,然后才能激活数据的自动提交功能。 - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + 注意:点击 "下一步" 后,您首先会看到报告内容预览,然后才能激活数据的自动提交功能。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + 第 步(共 2 步):遥测报告预览 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + 报告 ID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + 随机分配的 UUID,用于在数个遥测报告中标识特定的集群。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + 将要提交的实际遥测数据。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + 我同意根据社区数据许可协议 - 共享 - 1.0 版本提交我的遥测数据 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + 已成功配置并激活遥测模块。 + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + 更新遥测模块配置时发生错误。请重试 + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + 返回 + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + 暂停 + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + 集群状态 + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes - Last 5 minutes + 过去 5 分钟 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + 过去 15 分钟 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + 过去 30 分钟 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours 过去 3 小时 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + 过去 6 小时 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + 过去 12 小时 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + 过去 24 小时 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster 集群 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + 危险 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning 警报 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + Monitor + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + OSD + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + Manager + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + 对象网关 + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + 元数据服务器 + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + iSCSI 网关 + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + 容量 + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity 裸容量 + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status PG 状态 + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + 每个 OSD 的 PG 数 + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + 客户端读/写 + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput 客户端吞吐量 + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + 恢复吞吐量 + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + 正在洗刷 + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + 读取次数 + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + 写入次数 + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + 可用 + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean 正常 + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + 运行中 + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + 未知 + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + 运行状况良好 + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + 位置不正确 + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + 已降级 + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + 未找到 + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + 对象 + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + 此处 + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up - up + 启用 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + 无文件系统 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + 活跃 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + 待机 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + 待机守护进程 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + 活跃守护进程 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a n/a + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (仲裁 - ) - + (quorum ) + (仲裁 ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total - total + 总数 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full 将满 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + 全部 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + 客户端 () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + 地址 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + 访问类型 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster 集群 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + NFS 协议 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo - Pseudo + 伪 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + 存储后端 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User CephFS 用户 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + CephFS 文件系统 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + 安全标签 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway - Object Gateway + 对象网关 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + 对象网关用户 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + 任何客户端均可访问 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + 地址 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + 必须包含一个或多个逗号分隔值 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + 例如: + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + 访问类型 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients 添加客户端 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (从全局配置继承) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- -- 选择访问类型 -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + 从全局配置继承 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- 请选择执行哪种类型的用户 ID 匿名访问 -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- 没有可用的集群 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- 请选择集群 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + 这是 NFS 服务的 ID。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + 这是必填字段。要创建新 NFS 集群,请添加新 NFS 服务。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume - Volume + 卷 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- 没有可用的 CephFS 文件系统 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- 选择 CephFS 文件系统 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + 安全标签 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + 启用安全标签 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + CephFS 路径 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + CephFS 文件系统中的路径。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + 路径需以 "/" 开头,后面可跟单词 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + 选定卷中不存在该路径。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + 存储桶 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + 存储桶不存在或不在默认领域中(如果配置了多个领域)。要继续,请创建新的存储桶。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + NFS 协议 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo - Pseudo + 伪 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. 通过使用不同伪选项,可将同一路径导出多次。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + 另一个导出中已在使用该伪代码。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + 伪必须以 "/" 开头且不能包含以下任何字符:>、<、|、&、( 或 )。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- 没有可用的访问类型 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- 没有可用的 squash -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + 传输协议 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + NFS 导出 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + 检索路径时出错。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + 检索存储桶名称时出错。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway - Object Gateway + 对象网关 + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + 存储桶 + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + 性能计数器不可用 + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + 名称只能由字母、数字、短划线和下划线组成。 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + 所选纠删码配置名称已被使用。 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + 根 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + 故障域类型 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + 设备类型 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule Crush 规则 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + 插件 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + 数据块 (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + 必须大于或等于 2。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + 数据块 (k+m) 已超过 的可用 OSD 数量。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + 要实现均衡分布,k 必须为 (k+m)/l 的倍数。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + K 必须大于或等于 m 才能通过 c 正确恢复数据。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + 分布系数: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + 编码块 (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + 必须大于或等于 1。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + 持久性估值 (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + C 必须小于或等于 m,因为 m 定义可以使用的数据块数量。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) 助手块 (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + 手动设置 d 或使用插件的默认计算值(最大值为 d)。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + D 会在 k 和 m 更改时自动更新 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D 可设置为 - 到 - - + D can be set from to + D 可设置为 到 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + D 仅可设置为 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D 必须大于 k ( - )。 - + D has to be greater than k (). + D 必须大于 k ()。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + D 必须小于 k + m ()。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + 局部性因子 (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + 无法使用当前局部性因子正确分割 (k+m) 个数据块。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + 局部性因子组: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + CRUSH 故障域 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + CRUSH 局部性 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + 无 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds Scalar mds + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + 算法 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + 数据包大小 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + CRUSH 根 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + CRUSH 设备类型 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + 可用 OSD: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + 目录 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + EC 配置 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + 缓存层详细信息 + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode 缓存模式 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + 逐出前至少可存留的时间 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + 刷回前至少可存留的时间 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + 目标最大字节数 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + 目标最大对象数 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + 未添加任何应用标记 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + 应用标记已达到上限 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + 一个存储池最多只能有四个应用标记定义。 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + 可用的字符为 "_a-zA-Z0-9" + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters 长度限制为 128 个字符 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + 过滤或添加应用 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + 添加应用标记 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + 所选 Ceph 存储池名称已被使用。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + 无法创建名称中包含 "/" 的 RBD 存储池。请更改名称或从应用列表中删除 "rbd"。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + 存储池名称只能包含字母、数字、"."、"-"、"_" 或 "/"。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + 存储池类型 + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- 请选择存储池类型 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + PG 自动伸缩 + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + 归置组 + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + 至少需要一个归置组! + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. 您的集群无法处理这么多的 PG。请重新计算需要的 PG 数量。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help 在线 PG 计算器 + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + 当前的 PG 设置是为您计算的,您应在提交前确保这些值符合您的需求。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + 副本个数 + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + 最低: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + 最高: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + 指定的个数超出范围。请使用介于 到 的值。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + 指定个数 1 将不创建对象的副本。"副本个数" 包括对象本身。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + EC 重写 + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + 应用标记 + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + 镜像 + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + 纠删码配置 + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- 没有可用的纠删码配置 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- 请选择纠删码配置 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + 此配置正被使用,不能删除。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + 配置 + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + 由存储池使用 + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + 配置未被使用。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset CRUSH 规则集 + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + 将隐式创建一个新的 crush 规则集。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + 没有规则。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- 请选择 CRUSH 规则 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + 此规则正被使用,不能删除。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + CRUSH 规则 + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps CRUSH 步骤 + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + 规则未被使用。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + 无法在当前集群中使用该规则,因为集群的 OSD 数量太少,不满足此规则要求的最低 OSD 数量。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + 压缩 + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + 算法 + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- 没有可用的纠删码压缩算法 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + blob 大小下限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + 例如 128 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + 值应大于 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + 值应小于 blob 大小上限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + blob 大小上限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + 例如 512KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + 值应大于 blob 大小下限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + 比例 + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + 压缩率 + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + 值应介于 0.0 到 1.0 之间 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + 最大字节数 + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + 留空或指定 0 可禁用此配额。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + 有效配额应大于 0。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + 最大对象数 + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + 该值应大于或等于 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + 存储池 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + 纠删码配置 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + Crush 规则 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + 存储池列表 + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + 数据保护 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + 应用标记 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status PG 状态 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + CRUSH 规则集 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + mon_allow_pool_delete 配置设置已禁用存储池删除功能。 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key 密钥 + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + 版本控制 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + MFA 删除 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + 索引类型 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + 归置规则 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + 存储桶配额 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + 已启用 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + 大小上限 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + 无限制 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + 对象数目上限 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + 锁定 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days 天 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + 存储桶名称只能包含小写字母、数字、句点和连字符。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + 所选名称已被使用。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + 存储桶名称不能包含大写字符或下划线。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + 每个标签都必须以小写字母或数字开头和结尾。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + 存储桶名称不能采用 IP 地址格式。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + 存储桶标签不能为空,并且只能包含小写字母、数字和连字符。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + 存储桶名称长度必须在 3 到 63 个字符之间。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner - Owner + 所有者 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- 请选择用户 -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + 对存储桶中的对象启用版本控制。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication 多重身份验证 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled 启用删除 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + 启用 MFA(多重身份验证)删除功能,这样更改存储桶版本控制状态时将需要进行额外的身份验证。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + 令牌序列号 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + 令牌 PIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. 对存储桶中的对象启用锁定功能。只有在创建存储桶时才能启用锁定功能。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + 您要指定的默认保留天数,将应用于此存储桶中存放的新对象。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + 输入的值必须为正整数。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + 保留天数必须为正整数。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + 归置目标 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- 选择归置目标 -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + 存储桶 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + 已更新对象网关存储桶 ""。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + 已创建对象网关存储桶 "" + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + 无限制 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + 所有者 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + 已用容量 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + 容量上限 % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - 存储桶 + 对象上限 % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + 性能计数器 + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance - Sync Performance + 同步性能 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + 领域 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group 区域组 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + 区域 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + 系统将只创建该数量的守护进程。 + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + 区域组 + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + 数据池 + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error - Error + 错误 + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- -- 请选择类型 -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + 权限 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- -- 请选择权限 -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability 权限 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + 密钥 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show 显示 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + 租户 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + 用户 ID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + 全名 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + 邮箱 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + 已暂停 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + 存储桶数目上限 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers - Subusers + 子用户 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + 权限 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + MFA (ID) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + 用户配额 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + 用户名 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + 无限制 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + 该值无效。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + 所选用户 ID 已被使用。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + 显示租户 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + 此租户中存在所选用户 ID。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. 这是无效的邮箱地址。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + 此邮箱地址已被使用。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + 存储桶数目上限 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + 已禁用 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom 自定义 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + 输入的值必须大于或等于 1。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + S3 密钥 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key 自动生成密钥 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + 访问密钥 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + 秘密密钥 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + 没有子用户。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + 没有密钥。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + 没有权限。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + 已添加所有权限。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + 大小无限制 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + 大小上限 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + 对象数目无限制 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + 对象数目上限 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. - The entered value must be >= 0. + 输入的值必须大于或等于 0。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + 用户 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + 子用户 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + S3 密钥 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + 已更新对象网关用户 "" + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + 已创建对象网关用户 "" + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + 租户 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + 全名 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + 邮箱 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + 已暂停 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + 存储桶数目上限 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users 用户 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- 请选择用户名 -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + 子用户 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + 所选子用户 ID 已被使用。 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + 读写 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + 全部 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Swift 密钥 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + 自动生成密钥 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + 子用户 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + Swift 密钥 + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + 用户 + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + 角色 + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + 未提供主机名和 OSD ID + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID 设备ID + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + 健康状态 + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + 良好 + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + 不佳 + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + 过时 + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy 预计寿命 + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + 预测创建日期 + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + 设备名称 + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons 守护进程 + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + 无法检索 SMART 数据。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + 收到的数据为 JSON 2.x 版本格式,目前与仪表盘不兼容。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + 没有可用的 SMART 数据。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + SMART 总体健康状况自评测试结果 + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + 未知 + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + 通过 + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + 失败 + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + 设备信息 + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + 未获取此设备的设备信息。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + 未获取此设备的 SMART 数据。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + 正在加载 SMART 数据。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl 收到未知参数(错误代码 - )。您使用的可能是不兼容的 smartmontools 版本。要成功检索数据,需使用 7.0 或更高版本的 smartmontools。 - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctl 收到未知参数(错误代码 )。您使用的可能是不兼容的 smartmontools 版本。要成功检索数据,需使用 7.0 或更高版本的 smartmontools。 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + 发生错误,错误代码 。 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + 裸容量 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + 阈值 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + 失败时 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + 最差 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + 请设置一个新密码。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + 之后,您将被重定向到登录页面。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + 新旧密码必须不同。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. 确认密码与新密码不一致。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + 必须输入用户名 + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + 必须输入密码 + + src/app/core/auth/login/login.component.html + 48 + Log in 登录 + + src/app/core/auth/login/login.component.html + 63 + Scope - Scope + 作用范围 + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + 创建 + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + 更新 + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + 删除 + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + 描述... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + 权限 + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + 角色 + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + 已创建角色 "" + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + 已更新角色 "" + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role 系统角色 + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + 已删除角色 "" + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + 新名称 + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + 克隆角色 + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + 已从 "" 克隆角色 "" + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + 该用户名已存在。 + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + 确认密码 + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + 确认密码与之前输入的密码不一致。 + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + 密码超期日期 + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + 密码超期日期... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + 邮箱 + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + 邮箱无效。 + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + 用户下次登录时必须更改密码 + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + 您即将删除您自己的 "用户读取/更新" 权限。 + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + 如果继续,您将再也无法为任何用户添加或删除角色。 + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + 没有角色。 + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - 已创建用户 " - " - + Created user '' + 已创建用户 "" + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + 更新用户 + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + 您被自动登出,因为您的角色有了变动。 + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + 已更新用户 "" + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + 邮箱 + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + 角色 + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + 已删除用户 "" + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + 无法删除用户 "" + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + 您当前以 "" 身份登录。 + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + 旧密码 + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + 新密码 + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + 确认新密码 + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + 密码 + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + 已更新用户密码" + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + 所选对象网关: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + 选择对象网关 + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + 找不到页面 + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + 抱歉,找不到您要查找的数据。您请求的页面可能已被更改或移动。 + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + 转到仪表盘 + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + 找不到页面 + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + 抱歉,找不到您要查找的数据。 +您请求的页面可能已被更改或移动。 + + src/app/core/error/error.ts + 11,12 + Access Denied 访问拒绝 + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + 抱歉,您无权限浏览页面或资源 + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + 已拒绝用户 + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. 抱歉,Ceph 中不存在该用户。 当您重新尝试登录时,将会从该身份提供者中登出。 + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + 帮助 + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security 安全 + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + 商标 + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + 仪表盘设置 + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management - User management + 用户管理 + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + 遥测配置 + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + 帮助 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + 文档 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + 关于 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + 登录的用户 + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + 更改密码 + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + 切换导航 + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + CRUSH 索引 + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + 存储桶 + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + 文件系统 + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + 日志 + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + Manager 模块 + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + 任务和通知 + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + 应用于存放数据的节点的名称。 + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + 我们应为其分隔副本的 CRUSH 节点类型。 + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. 各对象都被分割为数据块,分别存储于不同的 OSD。 + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + 计算各对象的编码块,并存储于不同的 OSD。 + 编码块的数量等同于在不丢数据的前提下允许同时停用的 OSD 数量。 + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + jerasure 插件是最通用、最灵活的插件, + 也是 Ceph 纠删码存储池的默认插件。 + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + reed_sol_van 算法更灵活:它足以设置 k 和 m 值。 + cauchy_good 算法更快,但您需要谨慎选择 packetsize 值。 + reed_sol_r6_op、liberation、blaum_roth、 liber8tion 都是与 RAID6 等价的算法, + 只能为它们配置 m=2。 + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + 一次将对多少字节的数据包执行编码。 + 选择合适的数据包大小很难。 + Jerasure 文档中包含了有关此主题的详尽信息。 + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,15 +17318,17 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + 使用 jerasure 插件时,纠删码编码的对象存储在多个 OSD 上, + 丢失一个 OSD,恢复时就需要读取所有其他的 OSD。 + 例如,如果 jerasure 的配置为 k=8 且 m=4,丢失一个 OSD 后需读取其他十一个 OSD 才能恢复。 - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + lrc 纠删码插件创建的是局部奇偶校验块,这样只需较少的 OSD 即可恢复。 + 例如,如果 lrc 的配置为 k=8,m=4 且 l=4,它将为每四个 OSD 创建额外的奇偶校验块。 + 当一个 OSD 丢失时,它只需四个 OSD 即可恢复,而不需要十一个 OSD。 + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, @@ -8850,6 +17337,10 @@ 将编码块和数据块分组为大小为 locality 的集合。 例如,当 k=4 且 m=2 时,如果设置 locality=3,将会分组为大小为三的两组。 这样每个组都能自行恢复,无需从另一组读数据块。 + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined @@ -8860,52 +17351,83 @@ 例如,如果设置为 rack,大小为 l 块的各组将被存入不同的机架。 此值用于创建类似 step choose rack 的 CRUSH 规则步骤。 如果未设置,就不会这样分组。 + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + isa 插件封装了 ISA 库,只能在 Intel 处理器上运行。 + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + ISA 插件包含两种 Reed Solomon 编码形式。 + 设置为 reed_sol_van 时表示使用 Vandermonde 算法,设置为 cauchy 时表示使用 Cauchy 算法。 + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. - The shec plugin encapsulates the multiple SHEC library. - It allows ceph to recover data more efficiently than Reed Solomon codes. + Shec 插件封装了 multiple SHEC 库。 + 与 Reed Solomon 编码相比,它能使 Ceph 更高效地恢复数据。 + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + 奇偶校验块数量,它们在各自的计算范围内包含了各数据块。 + 此数值用作持久性估值。例如,假设 c=2 + 在不丟失数据的情况下可停用 2 个 OSD。 + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + CLAY(耦合层缩写)代码是可用于 + 在修复故障节点/OSD/机架时显著节省 + 网络带宽和磁盘 IO 的纠删码。 + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better the savings. - Number of OSDs requested to send data during recovery of a single chunk. - d needs to be chosen such that k+1 <= d <= k+m-1. The larger the d, the better - the savings. + 恢复单个数据块期间请求发送数据的 ODS 数量。 + 选择的 d 需要大于等于 k+1 且小于等于 k+m-1。d 越大,节省的越多。 + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + scalar_mds 指定分层构造中用作构建块 + 的插件。可以是 jerasure、isa、shec 之一。 + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8913,1738 +17435,2845 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - 算法指定将会在所指定的 "scalar_mds" 插件中 + 算法指定将会在所指定的 "scalar_mds" 插件中 选择的算法。支持的算法有 - "reed_sol_van"、"reed_sol_r6_op"、"cauchy_orig"、 - "cauchy_good"、"liber8tion"(用于 jerasure)、"reed_sol_van"、 - "cauchy"(用于 isa),"single"、"multiple"(用于 shec)。 + "reed_sol_van"、"reed_sol_r6_op"、"cauchy_orig"、 + "cauchy_good"、"liber8tion"(用于 jerasure)、"reed_sol_van"、 + "cauchy"(用于 isa),"single"、"multiple"(用于 shec)。 + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + 规则集第一步所指向的 CRUSH 桶名称, + 例如 step take default。 + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + 确保两个编码块不会存在于同一故障域的桶中。 + 例如,假设故障域是主机,就不会有两个编码块存储于同一主机上。 + 此值用于创建类似 step chooseleaf host 的 CRUSH 规则步骤。 + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. 设置从中加载纠删码插件的目录名称。 + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + 允许所有操作 + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + 只允许不修改服务器端数据的操作 + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + 完全禁止访问 + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. 请指定文件系统卷。 + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + 该功能已禁用,因为 Orchestrator 不可用。 + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + Orchestrator 后端不支持此功能。 + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- 请选择优先级 -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + 低 + + src/app/shared/api/osd.service.ts + 44 + High - High + 高 + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + 用户列表数据可能已过时。如果需要,您可以手动重新加载这些数据。 + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + 正在检索 的数据。 + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + 正在检索数据。 + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... 请稍候... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + 正在显示之前缓存的 数据。 + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + 正在显示之前缓存的数据。 + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + 无法加载 的数据。 + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + 无法加载数据。 + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + 请检查集群健康状况。 + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + 错误 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + 信息 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + 成功 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + 危险 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + 删除自定义配置值。将继承并改用默认配置。 + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + 输入的值太大!值不得大于 。 + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 输入的值太小!值不得小于 。 + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + 复制到剪贴板 + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + 您确定要吗? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - Are you sure that you want to - the selected items? - + Are you sure that you want to the selected items? + 您确定要所选项吗? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + 您确定要所选吗? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. 是的,我确定。 + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation 文档 + + src/app/shared/components/doc/doc.component.ts + 12 + Download 下载 + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + 这是必填字段! + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + 发生错误。 + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + 正在加载面板的相关数据... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + 请参见 了解如何配置和启用监控功能。 + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + Grafana 仪表盘不存在。请参见 了解如何在 Grafana 中添加仪表盘。 + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Grafana 时间选择器 + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + 重置设置 + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + 过去 1 小时(默认值) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday 昨天 + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + 今天到目前为止 + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + 前天 + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + 过去 2 天 + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + 上周的今天 + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week 上个星期 + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + 本周以来 + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + 过去 7 天 + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + 上个月 + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + 本月以来 + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + 过去 30 天 + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + 过去 90 天 + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + 过去 6 个月 + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + 过去 1 年 + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + 去年 + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + 今年以来 + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + 过去 2 年 + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + 过去 5 年 + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + 请选择语言 + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + 清除通知 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + 删除通知 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: 时长: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + 没有通知。 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + 当前的 Orchestrator 不支持该功能。 + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + Orchestrator 不可用。请参见 了解如何配置和启用该功能。 + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + 您的密码将在 1 天内超期。请点击此处立即更改。 + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + 您的密码将在 天后超期。请点击此处立即更改。 + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + 刷新 + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + 未选择项目。 + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + 取消选择以重新选择 + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + 达到选择项数上限。 + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + 过滤标记 + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + 添加徽章 + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + 没有可用的项目。 + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + Ceph 需要您的帮助以持续改进:请激活遥测模块。 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + 遥测激活提醒功能已禁用 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + 您随时都可在 "遥测配置" 页面(<b>仪表盘设置</b> -> <b>遥测配置</b>)中激活该模块。 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export 导出 + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + 导入 + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + 添加 + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + 设置 + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + 提交 + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + 删除 + + src/app/shared/constants/app.constants.ts + 170 + Unset 取消设置 + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + 取消 + + src/app/shared/constants/app.constants.ts + 176 + Preview 预览 + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + 移动 + + src/app/shared/constants/app.constants.ts + 178 + Next 下一步 + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + 返回 + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + 克隆 + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + 复制 + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + 深层洗刷 + + src/app/shared/constants/app.constants.ts + 187 + Destroy 销毁 + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + 逐出 + + src/app/shared/constants/app.constants.ts + 189 + Flatten 展开 + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + 标记为停用 + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + 标记为加入 + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + 标记为丢失 + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + 标记为除名 + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + 保护 + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + 重命名 + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + 恢复 + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + 重设权重 + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + 洗刷 + + src/app/shared/constants/app.constants.ts + 201 + Show 显示 + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + 移至回收站 + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + 解除保护 + + src/app/shared/constants/app.constants.ts + 204 + Change - Change + 更改 + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + 进入维护模式 + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + 退出维护模式 + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + 开始排空 + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain 停止排空 + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + 重新创建 + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + 过期 + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + 停用 + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + 已删除 + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + 已添加 + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + 已删除 + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + 已编辑 + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + 已取消 + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + 已预览 + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + 已将 + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + 已克隆 + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + 已复制 + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + 已深层洗刷 + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + 已销毁 + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + 已展开 + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + 已标记为停用 + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + 已标记为加入 + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + 已标记为丢失 + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + 已标记为除名 + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + 受保护 + + src/app/shared/constants/app.constants.ts + 313 + Purged 已清除 + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + 已重命名 + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + 已恢复 + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + 已重设权重 + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + 已回滚 + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + 已洗刷 + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + 已显示 + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + 已移至回收站 + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + 已解除保护 + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + 已重新创建 + + src/app/shared/constants/app.constants.ts + 326 + Expired 已过期 + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + 关闭 + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + 清除过滤器 + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + 个已选中 + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + 个已找到 + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total - total - X total + 总数 + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row 展开/收起行 + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + 无法加载数据。 + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + 正在加载表单数据... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + 无法加载表单数据。 + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + 大小必须大于或等于 + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + 大小必须小于或等于 + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + 是 + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + 否 + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + %s后 + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + %s前 + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + 几秒 + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d 秒 + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + 一分钟 + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + %d 分钟 + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + 一小时 + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d 小时 + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + 一天 + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d 天 + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + 一周 + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d 周 + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + 一个月 + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months %d 个月 + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year 一年 + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d 年 + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + 密码必须遵循的规则: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - 必须至少包含 - 个字符 - + Must contain at least characters + 必须至少包含 个字符 + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + 不得与之前的密码相同 + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + 不能包含用户名 + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + 不能包含任何配置的关键字 + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + 不能包含任何重复字符,例如 "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + 不能包含任何顺序字符,例如 "abc" + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + 必须包含以下类型的字符: + * 字母 a-z、A-Z + * 数字 0-9 + * 特殊字符:!"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * 任何其他字符(符号) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + 您的匹配器似乎与当前定义的任何规则或活动告警均不匹配。 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts 没有活动告警 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1 条活动告警 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + 条活动告警 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + 匹配 1 条规则 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + 匹配 条规则 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + 具有 的 。 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + 服务质量 + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + BPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + 所需的每秒 IO 字节数上限。 + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + IOPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + 所需的每秒 IO 操作次数上限。 + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + 读 BPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + 所需的每秒内读取的字节数上限。 + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + 读 IOPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + 所需的每秒读操作次数上限。 + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + 写 BPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + 所需的每秒内写入的字节数上限。 + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + 写 IOPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + 所需的每秒写操作次数上限。 + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + BPS 突发 + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + 所需的 IO 字节数突发上限。 + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + IOPS 突发 + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + 所需的 IO 操作次数突发上限。 + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + 读 BPS 突发 + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + 所需的读取的字节数突发上限。 + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + 读 IOPS 突发 + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + 所需的读操作次数突发上限。 + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst 写 BPS 突发 + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + 所需的写入的字节数突发上限。 + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + 写 IOPS 突发 + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + 所需的写操作次数突发上限。 + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + 无法 + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + 正在执行 + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + 执行 + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + 已执行 + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + 未知任务 + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + 正在创建 + + src/app/shared/services/task-message.service.ts + 67 + create - create + 创建 + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + 正在更新 + + src/app/shared/services/task-message.service.ts + 68 + update - update + 更新 + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + 正在删除 + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding 正在添加 + + src/app/shared/services/task-message.service.ts + 70 + add - add + 添加 + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + 正在删除 + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + 删除 + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + 正在导入 + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + 导入 + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + 已导入 + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + RBD "" + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + RBD 快照 "@" + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + 镜像站点名称 + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + 引导令牌 + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + 存储池 "" 的镜像模式 + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + 存储池 "" 的镜像对等 + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + 所有仪表盘 + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + 正在标识 + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + 标识 + + src/app/shared/services/task-message.service.ts + 133 + Identified 已标识 + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + 主机 "" 上的设备 "" + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + OSD(DriveGroup:) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + 该名称已被 使用。 + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - 正忙。 - + is busy. + 正忙。 + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + 包含快照。 + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + 正在克隆 + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + 克隆 + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + 的快照必须受到保护。 + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + 正在复制 + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + 复制 + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + 正在展开 + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + 展开 + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + 无法将 解除保护,因为它包含子映像。 + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + 无法删除 ,因为它受到保护。 + + src/app/shared/services/task-message.service.ts + 243 + Rolling back 正在回滚 + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + 回滚 + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + 正在将 + + src/app/shared/services/task-message.service.ts + 256 + move - move + 将 + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + 映像 "" 移至回收站 + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. 找不到映像。 + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + 正在将 + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + 将 + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + 映像 "" 移至 "" 中 + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - 映像名称 " - " 已被使用。 - + Image name '' is already in use. + 映像名称 "" 已被使用。 + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + 映像 "" + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + 正在清除 + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + 清除 + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + 所有存储池 + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + 中的映像 + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + 因为它包含对等,无法禁用镜像功能。 + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - 主机 " - " - + host '' + 主机 "" + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + OSD "" + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + 存储池 "" + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + 纠删码配置 "" + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + Crush 规则 "" + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + 目标 "" + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS " - : - " - + NFS ':' + NFS ":" + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + diff --git a/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-TW.xlf b/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-TW.xlf index d618a76c434..d1915be7be1 100644 --- a/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-TW.xlf +++ b/src/pybind/mgr/dashboard/frontend/src/locale/messages.zh-TW.xlf @@ -1,8827 +1,17313 @@ - - + + Close - Close + 關閉 + + node_modules/src/ngb-config.ts + 13 + HH HH + + node_modules/src/ngb-config.ts + 13 + Close - Close + 關閉 + + node_modules/src/ngb-config.ts + 13 + «« «« + + node_modules/src/ngb-config.ts + 13 + Select month - Select month + 選取月份 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Previous month - Previous month + 上個月 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - Slide - of - - - Slide - of - - - Currently selected slide number read by screen reader + Slide of + + node_modules/src/ngb-config.ts + 13 + + Currently selected slide number read by screen reader Hours 小時 + + node_modules/src/ngb-config.ts + 13 + « « + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + 上一張 + + node_modules/src/ngb-config.ts + 13 + MM MM + + node_modules/src/ngb-config.ts + 13 + » » + + node_modules/src/ngb-config.ts + 13 + Select year - Select year + 選取年份 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next month - Next month + 下個月 + + node_modules/src/ngb-config.ts + 13 + + + node_modules/src/ngb-config.ts + 13 + Next - Next + 下一張 + + node_modules/src/ngb-config.ts + 13 + Minutes - Minutes + 分鐘 + + node_modules/src/ngb-config.ts + 13 + »» »» + + node_modules/src/ngb-config.ts + 13 + Increment hours 遞增小時數 + + node_modules/src/ngb-config.ts + 13 + First - First + 第一張 + + node_modules/src/ngb-config.ts + 13 + Previous - Previous + 上一張 + + node_modules/src/ngb-config.ts + 13 + Decrement hours - Decrement hours + 遞減小時數 + + node_modules/src/ngb-config.ts + 13 + Next - Next + 下一張 + + node_modules/src/ngb-config.ts + 13 + Increment minutes 遞增分鐘數 + + node_modules/src/ngb-config.ts + 13 + Last - Last + 最後一張 + + node_modules/src/ngb-config.ts + 13 + Decrement minutes - Decrement minutes + 遞減分鐘數 + + node_modules/src/ngb-config.ts + 13 + SS SS + + node_modules/src/ngb-config.ts + 13 + Seconds - Seconds + 秒 + + node_modules/src/ngb-config.ts + 13 + Increment seconds - Increment seconds + 遞增秒數 + + node_modules/src/ngb-config.ts + 13 + Decrement seconds - Decrement seconds + 遞減秒數 + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + - [object Object] - [object Object] + + + node_modules/src/ngb-config.ts + 13 + Block Pool is not configured - Block Pool is not configured + + src/app/ceph/block/block.module.ts + 121 + Configure Default pool - Configure Default pool + + src/app/ceph/block/block.module.ts + 122 + Block Mirroring is not configured - Block Mirroring is not configured + + src/app/ceph/block/block.module.ts + 181 + Configure Block Mirroring - Configure Block Mirroring + + src/app/ceph/block/block.module.ts + 182 + - This will create "rbd-mirror" service and a replicated Block pool - This will create "rbd-mirror" service and a replicated Block pool + This will create "rbd-mirror" service and a replicated Block pool + + src/app/ceph/block/block.module.ts + 183 + NVMe/TCP Gateway not configured - NVMe/TCP Gateway not configured + + src/app/ceph/block/block.module.ts + 236 + Configure NVMe/TCP - Configure NVMe/TCP + + src/app/ceph/block/block.module.ts + 237 + - Must be greater than or equal to - . - - Must be greater than or equal to - . - + Must be greater than or equal to . + 必須大於或等於 。 + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 51 + - Must be less than or equal to - . - - Must be less than or equal to - . - + Must be less than or equal to . + 必須小於或等於 。 + + src/app/ceph/block/iscsi-setting/iscsi-setting.component.html + 55 + Overview - Overview + 綜覽 + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 226 + Targets 目標 + + src/app/ceph/block/iscsi-tabs/iscsi-tabs.component.html + 14 + iSCSI Topology iSCSI 拓撲 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.html + 3 + Name - Name + 名稱 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 71 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 35 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 94 + + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 24 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 40 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 254 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 109 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 92 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 199 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 68 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 105 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 80 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 272 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 110 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 45 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 23 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 47 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 59 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 41 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 39 + + + src/app/ceph/pool/pool-details/pool-details.component.ts + 37 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 124 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 67 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 175 + + + src/app/core/auth/role-list/role-list.component.ts + 89 + + + src/app/core/auth/user-list/user-list.component.ts + 92 + Current - Current + 目前 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 77 + Default - Default + 預設值 + + src/app/ceph/block/iscsi-target-details/iscsi-target-details.component.ts + 83 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 118 + + + src/app/shared/api/osd.service.ts + 54 + Discovery Authentication 探查驗證 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 3 + User - User + 使用者 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 205 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 424 + This field is required. - This field is required. + 此欄位為必填欄位。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 24 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 55 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 79 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 110 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 36 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 217 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 250 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 275 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 309 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 357 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 379 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 410 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 435 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 466 + + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 33 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 82 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 32 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 51 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 63 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 39 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 57 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 46 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 28 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 43 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 87 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 162 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 216 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 282 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 44 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 63 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 27 + + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 30 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 33 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 85 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 117 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 26 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 26 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 41 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 94 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 28 + + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 23 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 39 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 70 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 104 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 128 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 154 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 275 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 370 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 432 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 457 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 484 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 505 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 640 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 672 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 704 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 746 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 765 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 788 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 814 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 854 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 871 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 888 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 905 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 945 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 970 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1005 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1071 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1091 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1111 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1131 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1151 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 41 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 75 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 111 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 168 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 193 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 225 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 263 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 289 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 334 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 375 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 408 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 22 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 28 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 44 + + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 60 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 46 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 93 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 167 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 183 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 372 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 391 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 584 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 602 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 57 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 77 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 97 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 116 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 151 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 171 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 188 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 206 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 223 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 32 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 48 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 28 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 47 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 67 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 86 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 24 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 126 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 30 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 106 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 43 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 100 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 151 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 24 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 36 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 25 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 90 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 144 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 223 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 248 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 518 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 558 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 615 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 655 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 37 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 80 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 107 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 39 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 112 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 24 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 52 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 77 + + + src/app/core/auth/role-form/role-form.component.html + 29 + + + src/app/core/auth/user-form/user-form.component.html + 32 + + + src/app/core/auth/user-form/user-form.component.html + 72 + + + src/app/core/auth/user-form/user-form.component.html + 105 + + + src/app/core/auth/user-form/user-form.component.html + 151 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 30 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 69 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 99 + + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 55 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 使用者名稱長度必須為 8 至 64 個字元,可以包含英數字元、"."、"@"、"-"、"_" 或 ":"。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 28,29 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 83,84 + Password - Password + 密碼 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 37 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 230 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 392 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 441 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 879 + + + src/app/core/auth/login/login.component.html + 36 + + + src/app/core/auth/user-form/user-form.component.html + 44 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 密碼長度必須為 12 至 16 個字元,可以包含英數字元、"@"、"-"、"_" 或 "/"。 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 59,60 + + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 114,115 + Mutual User - Mutual User + 雙向驗證使用者 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 68 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 263 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 424 + Mutual Password - Mutual Password + 雙向驗證密碼 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.html + 92 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 288 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 448 + Updated discovery authentication - Updated discovery authentication + 已更新探查驗證 + + src/app/ceph/block/iscsi-target-discovery-modal/iscsi-target-discovery-modal.component.ts + 114 + - - - - - - - - - form title + + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 9 + + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 3 + + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 3 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 4 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 4,5 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 9,10 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 3 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 3,4 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 3,5 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 3,5 + + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 4 + + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 3 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 53 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 4 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 9,11 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 3 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 9,11 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 3 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 8 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 3 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 3 + + + src/app/core/auth/role-form/role-form.component.html + 9,10 + + + src/app/core/auth/user-form/user-form.component.html + 9 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 7 + + form title Target IQN - Target IQN + 目標 IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 16 + IQN has wrong pattern. IQN 模式錯誤。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 40 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 361 + An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' - An IQN has the following notation 'iqn.$year-$month.$reversedAddress:$definedName' + IQN 的表示法如下:iqn.$year-$month.$reversedAddress:$definedName + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 44,45 + For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 - For example: iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + 例如:iqn.2016-06.org.dashboard:storage:disk.sn-a8675309 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 47 + More information - More information + 更多資訊 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 51 + This target has modified advanced settings. - This target has modified advanced settings. + 此目標的進階設定已修改。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 56 + Portals - Portals + 入口網站 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 65 + Add portal - Add portal + 新增入口網站 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 91 + - At least - gateways are required. - - At least - gateways are required. - + At least gateways are required. + 至少需指定 個閘道。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 104 + Images 影像 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 114 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 480 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 609 + + + src/app/ceph/block/iscsi/iscsi.component.html + 11 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 62 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 176 + - Backstore: - .  - - Backstore: - .  - + Backstore: .  + 後備儲存:。  + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 141 + This image has modified settings. - This image has modified settings. + 此影像的設定已修改。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 144 + Duplicated LUN numbers. - Duplicated LUN numbers. + 重複的 LUN 編號。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 156 + Duplicated WWN. - Duplicated WWN. + 重複的 WWN。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 160 + Add image - Add image + 新增影像 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 170 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 508 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 634 + ACL authentication - ACL authentication + ACL 驗證 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 190 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 使用者名稱長度必須為 8 至 64 個字元,可以包含英數字元、"."、"@"、"-"、"_" 或 ":"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 221,222 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 279,280 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 密碼長度必須為 12 至 16 個字元,可以包含英數字元、"@"、"-"、"_" 或 "/"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 254,255 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 313,314 + Initiators 啟動器 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 325 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 570 + + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 31 + Initiator - Initiator + 啟動器 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 332 + Client IQN - Client IQN + 用戶端 IQN + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 343 + Initiator IQN needs to be unique. - Initiator IQN needs to be unique. + 啟動器 IQN 必須是唯一的。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 353 + User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. - User names must have a length of 8 to 64 characters and can contain alphanumeric characters, '.', '@', '-', '_' or ':'. + 使用者名稱長度必須為 8 至 64 個字元,可以包含英數字元、"."、"@"、"-"、"_" 或 ":"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 383,384 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 439,440 + Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. - Passwords must have a length of 12 to 16 characters and can contain alphanumeric characters, '@', '-', '_' or '/'. + 密碼長度必須為 12 至 16 個字元,可以包含英數字元、"@"、"-"、"_" 或 "/"。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 414,415 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 470,471 + Initiator belongs to a group. Images will be configure in the group. - Initiator belongs to a group. Images will be configure in the group. + 啟動器屬於群組。影像須在群組中進行設定。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 498 + No items added. - No items added. + 未新增項目。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 521 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 649 + Add initiator - Add initiator + 新增啟動器 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 526 + + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 596 + Groups - Groups + 群組 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 540 + Group - Group + 群組 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 547 + Name 名稱 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 558 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 18 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 32 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 52 + + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 15 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 15 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 15 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 6 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 16 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 15 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 13 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 13 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 16 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 33 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 14 + + + src/app/core/auth/role-form/role-form.component.html + 17 + Add group - Add group + 新增群組 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.html + 654 + There are no portals available. 沒有可用的入口網站。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 60 + There are no images available. - There are no images available. + 沒有可用的影像。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 61 + There are no images available. Please make sure you add an image to the target. 沒有可用的影像。請確定為目標新增一個影像。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 63 + There are no initiators available. Please make sure you add an initiator to the target. 沒有可用的啟動器。請確定為目標新增一個啟動器。 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 66 + target - target + 目標 + + src/app/ceph/block/iscsi-target-form/iscsi-target-form.component.ts + 86 + Configure - Configure + 設定 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 3 + Changing these parameters from their default values is usually not necessary. - Changing these parameters from their default values is usually not necessary. + 通常不需要變更這些參數的預設值。 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 15 + + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 12 + Identifier - Identifier + 識別碼 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 19 + lun lun + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 25 + wwn wwn + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 41 + Settings - Settings + 設定 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 52 + Backstore - Backstore + 後備儲存 + + src/app/ceph/block/iscsi-target-image-settings-modal/iscsi-target-image-settings-modal.component.html + 58 + Advanced Settings - Advanced Settings + 進階設定 + + src/app/ceph/block/iscsi-target-iqn-settings-modal/iscsi-target-iqn-settings-modal.component.html + 3 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 202 + iSCSI Targets not available - iSCSI Targets not available + 無法使用 iSCSI 目標 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 5 + - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - - Please consult the - - on how to configure and enable the iSCSI Targets management functionality. - + Please consult the on how to configure and enable the iSCSI Targets management functionality. + 請參閱 以瞭解如何設定和啟用 iSCSI 目標管理功能。 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 7,8 + Available information: - Available information: + 可用資訊︰ + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 12 + Discovery authentication - Discovery authentication + 探查驗證 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.html + 44 + Target - Target + 目標 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 100 + Portals - Portals + 入口網站 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 106 + Images - Images + 影像 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 112 + # Sessions 工作階段數量 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 118 + + + src/app/ceph/block/iscsi/iscsi.component.ts + 55 + Unavailable gateway(s) - Unavailable gateway(s) + 無法使用的閘道 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 170 + + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 184 + Target has active sessions - Target has active sessions + 目標具有使用中工作階段 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 188 + iSCSI target - iSCSI target + iSCSI 目標 + + src/app/ceph/block/iscsi-target-list/iscsi-target-list.component.ts + 227 + Gateways - Gateways + 閘道 + + src/app/ceph/block/iscsi/iscsi.component.html + 3 + + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 14 + + + src/app/core/navigation/navigation/navigation.component.html + 246 + State - State + 狀態 + + src/app/ceph/block/iscsi/iscsi.component.ts + 39 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 48 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 60 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 84 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 129 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 54 + + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 82 + # Targets - # Targets + 目標數量 + + src/app/ceph/block/iscsi/iscsi.component.ts + 51 + Pool - Pool + 池 + + src/app/ceph/block/iscsi/iscsi.component.ts + 61 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 44 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 56 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 80 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 37 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 260 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 69 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 63 + Image 影像 + + src/app/ceph/block/iscsi/iscsi.component.ts + 65 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 45 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 57 + + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 81 + + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 38 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 66 + Backstore - Backstore + 後備儲存 + + src/app/ceph/block/iscsi/iscsi.component.ts + 69 + Read Bytes - Read Bytes + 讀取位元組數 + + src/app/ceph/block/iscsi/iscsi.component.ts + 74 + Write Bytes - Write Bytes + 寫入位元組數 + + src/app/ceph/block/iscsi/iscsi.component.ts + 79 + Read Ops - Read Ops + 讀取操作數 + + src/app/ceph/block/iscsi/iscsi.component.ts + 84 + Write Ops - Write Ops + 寫入操作數 + + src/app/ceph/block/iscsi/iscsi.component.ts + 90 + A/O Since - A/O Since + 使用中/最佳化開始時間 + + src/app/ceph/block/iscsi/iscsi.component.ts + 96 + Create Bootstrap Token 建立開機記號 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 3 + - To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  - Generate - . - - 若要建立可由對等站台叢集輸入的開機記號,請提供本地站台的名稱,選取將啟用鏡像的池,然後按一下 - 產生 - 。 - + To create a bootstrap token which can be imported by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, and click  Generate. + 若要建立可由對等站台叢集輸入的開機記號,請提供本地站台的名稱,選取將啟用鏡像的池,然後按一下產生。 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 13,16 + Site Name - Site Name + 站台名稱 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 22 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 22 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 9 + Name... - Name... + 名稱... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 25 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 25 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 24 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 41 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 22 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 40 + + + src/app/core/auth/role-form/role-form.component.html + 22 + Pools - Pools + 池 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 40 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 54 + + + src/app/ceph/block/mirroring/overview/overview.component.html + 51 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 15 + + + src/app/ceph/dashboard/health/health.component.html + 167 + + + src/app/core/navigation/navigation/navigation.component.html + 117 + At least one pool is required. - At least one pool is required. + 至少需指定一個池。 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 53 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 67 + Generate - Generate + 產生 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 59 + Token - Token + 記號 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 64 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 73 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 160 + Generated token... - Generated token... + 產生的記號 ... + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 67 + + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 75 + Close - Close + 關閉 + + src/app/ceph/block/mirroring/bootstrap-create-modal/bootstrap-create-modal.component.html + 81 + Import Bootstrap Token - Import Bootstrap Token + 輸入開機記號 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 3 + - To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click  - Import - . - - 若要輸入由對等站台叢集建立的開機記號,請提供本地站台的名稱,選取將啟用鏡像的池,提供產生的記號,然後按一下 - 輸入 - 。 - + To import a bootstrap token which was created by a peer site cluster, provide the local site's name, select which pools will have mirroring enabled, provide the generated token, and click Import. + 若要輸入由對等站台叢集建立的開機記號,請提供本地站台的名稱,選取將啟用鏡像的池,提供產生的記號,然後按一下輸入。 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 13,16 + Direction - Direction + 方向 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 39 + The token is invalid. - The token is invalid. + 該記號無效。 + + src/app/ceph/block/mirroring/bootstrap-import-modal/bootstrap-import-modal.component.html + 85 + Instance - Instance + 例項 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 32 + ID ID + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 33 + + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 53 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 86 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 279 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 120 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 37 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 174 + Hostname 主機名稱 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 34 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 216 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 108 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 140 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 42 + Version 版本 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 37 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 152 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 70 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 67 + Health - Health + 狀況 + + src/app/ceph/block/mirroring/daemon-list/daemon-list.component.ts + 43 + + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 111 + - Issues ( - ) - - Issues ( - ) - + Issues () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 7 + - Syncing ( - ) - - Syncing ( - ) - + Syncing () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 20 + - Ready ( - ) - - Ready ( - ) - + Ready () + + src/app/ceph/block/mirroring/image-list/image-list.component.html + 33 + Issue - Issue + 問題 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 52 + Progress - Progress + 進度 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 66 + Bytes per second - Bytes per second + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 70 + Entries behind primary - Entries behind primary + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 73 + Description 描述 + + src/app/ceph/block/mirroring/image-list/image-list.component.ts + 88 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 41 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 111 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 44 + + + src/app/core/auth/role-list/role-list.component.ts + 94 + Daemons 精靈 + + src/app/ceph/block/mirroring/overview/overview.component.html + 43 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 24 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 15 + Create Bootstrap Token - Create Bootstrap Token + 建立開機記號 + + src/app/ceph/block/mirroring/overview/overview.component.ts + 53 + Import Bootstrap Token - Import Bootstrap Token + 輸入開機記號 + + src/app/ceph/block/mirroring/overview/overview.component.ts + 61 + Edit pool mirror mode - Edit pool mirror mode + 編輯池鏡像模式 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 4 + - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - - To edit the mirror mode for pool  - - - , select a new mode from the list and click  - Update - . - + To edit the mirror mode for pool  , select a new mode from the list and click  Update. + 若要編輯池 的鏡像模式,請從清單中選取新模式,然後按一下更新。 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 14,16 + Mode - Mode + 模式 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 22 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 452 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 97 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 220 + Peer clusters must be removed prior to disabling mirror. - Peer clusters must be removed prior to disabling mirror. + 在停用鏡像之前,必須先移除對等叢集。 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.html + 33 + Disabled - Disabled + 已停用 + + src/app/ceph/block/mirroring/pool-edit-mode-modal/pool-edit-mode-modal.component.ts + 36 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.ts + 18 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 56 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 91 + {VAR_SELECT, select, edit {Edit} other {Add}} - {VAR_SELECT, select, edit {Edit} other {Add}} + {VAR_SELECT, select, edit {編輯} other {新增}} + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13 + - - pool mirror peer - - - pool mirror peer - + pool mirror peer + 池鏡像對等 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 3 + - - the pool mirror peer attributes for pool - - - and click - Submit - . - - - the pool mirror peer attributes for pool - - - and click - Submit - . - + the pool mirror peer attributes for pool and click Submit. + 池 的池鏡像對等屬性,然後按一下提交。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 13,15 + Cluster Name - Cluster Name + 叢集名稱 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 21 + The cluster name is not valid. - The cluster name is not valid. + 叢集名稱無效。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 35 + CephX ID CephX ID + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 41 + CephX ID... CephX ID... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 44 + The CephX ID is not valid. - The CephX ID is not valid. + CephX ID 無效。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 54 + Monitor Addresses - Monitor Addresses + 監控程式位址 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 60 + Comma-delimited addresses... - Comma-delimited addresses... + 逗號分隔的位址... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 64 + The monitory address is not valid. - The monitory address is not valid. + 監控程式位址無效。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 71 + CephX Key CephX 金鑰 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 77 + Base64-encoded key... - Base64-encoded key... + Base64 編碼的金鑰... + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 81 + CephX key must be base64 encoded. CephX 金鑰必須為 Base64 編碼的金鑰。 + + src/app/ceph/block/mirroring/pool-edit-peer-modal/pool-edit-peer-modal.component.html + 88 + Local image count - Local image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + # Local - # Local + 本地數量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 26 + Remote image count - Remote image count + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + # Remote - # Remote + 遠端數量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.html + 31 + Edit Mode - Edit Mode + 編輯模式 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 63 + Add Peer 新增對等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 69 + Edit Peer 編輯對等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 78 + Delete Peer - Delete Peer + 刪除對等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 85 + Mode 模式 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 95 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 97 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 133 + Leader 主管 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 96 + # Local - # Local + 本地數量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 99 + # Remote - # Remote + 遠端數量 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 105 + mirror peer - mirror peer + 鏡像對等 + + src/app/ceph/block/mirroring/pool-list/pool-list.component.ts + 155 + - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - - Gateways - Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. - - + Gateways Ceph NVMe-oF gateways provide Ceph Block Device storage through NVMe/TCP. For VMware clients the NVMe/TCP volumes display as VMFS Datastores. For Linux clients the NVMe/TCP volumes display as as block devices. + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.html + 3,6 + Address - Address + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 28 + + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 56 + Port - Port + 連接埠 + + src/app/ceph/block/nvmeof-gateway/nvmeof-gateway.component.ts + 32 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 47 + Hosts - Hosts + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 13,14 + Add host - Add host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 27 + Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. - Allow specific hosts to run NVMe/TCP commands to the NVMe subsystem. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 29 + Add host nqn - Add host nqn + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 38 + - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - - Expected NQN format - < - nqn.$year-$month.$reverseDomainName:$utf8-string - ".> or - < - nqn.2014-08.org.nvmexpress:uuid:$UUID-string - ".> - + Expected NQN format<nqn.$year-$month.$reverseDomainName:$utf8-string".> or <nqn.2014-08.org.nvmexpress:uuid:$UUID-string".> + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 66 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 34 + An NQN may not be more than 223 bytes in length. - An NQN may not be more than 223 bytes in length. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 69 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 37 + Duplicate entry detected. Enter a unique value. - Duplicate entry detected. Enter a unique value. + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 74 + Allow any host - Allow any host + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.html + 86 + Initiator - Initiator + 啟動器 + + src/app/ceph/block/nvmeof-initiators-form/nvmeof-initiators-form.component.ts + 40 + + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 50 + Any host allowed (*) - Any host allowed (*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.html + 25 + Allow any host(*) - Allow any host(*) + + src/app/ceph/block/nvmeof-initiators-list/nvmeof-initiators-list.component.ts + 109 + Host Name - Host Name + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 15 + Loading... - Loading... + 正在載入... + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 24 + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 31 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 75 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 203 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 250 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 32 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 58 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 89 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 358 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 30 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 26 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 63 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 128 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 155 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 315 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 351 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 52 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 49 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 246 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 310 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 400 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 233 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 478 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 84 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 624 + + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 117 + -- No hosts available -- - -- No hosts available -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 27 + -- Select a host -- - -- Select a host -- + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 30 + This hostname uniquely identifies the gateway on which the listener is being set up. - This hostname uniquely identifies the gateway on which the listener is being set up. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 34,36 + Transport Service ID - Transport Service ID + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 46 + The IP port to use. Default is 4420. - The IP port to use. Default is 4420. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 54 + The value cannot be greated than 65535. - The value cannot be greated than 65535. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 60 + The value must be a positive integer. - The value must be a positive integer. + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.html + 63 + + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 61 + Listener - Listener + + src/app/ceph/block/nvmeof-listeners-form/nvmeof-listeners-form.component.ts + 50 + Host - Host + 主機 + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 48 + + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 68 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 286 + Transport - Transport + 傳輸 + + src/app/ceph/block/nvmeof-listeners-list/nvmeof-listeners-list.component.ts + 52 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 54 + Pool - Pool + 池 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 16 + + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 16 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 23 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 58 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 16 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 350 + -- No block pools available -- - -- No block pools available -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 34 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 92 + -- Select a pool -- -- 選取池 -- + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 37 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 81 + + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 38 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 95 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 364 + An RBD application-enabled pool where the image will be created. - An RBD application-enabled pool where the image will be created. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 41,43 + Image Name - Image Name + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 54 + '/' and '@' are not allowed. - '/' and '@' are not allowed. + 不允許使用 "/" 和 "@"。 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 67 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 47 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 76 + - [object Object] - [object Object] + + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 91 + Enter a positive integer. - Enter a positive integer. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 95 + This field is required - This field is required + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 99 + Enter a value above than previous. A block device image can be expanded but not reduced. - Enter a value above than previous. A block device image can be expanded but not reduced. + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.html + 103 + Namespace - Namespace + 名稱空間 + + src/app/ceph/block/nvmeof-namespaces-form/nvmeof-namespaces-form.component.ts + 60 + + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 265 + + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 64 + + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 102 + Bdev Name - Bdev Name + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 57 + Pool - Pool + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 61 + Image Size - Image Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 71 + Block Size - Block Size + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 76 + IOPS IOPS + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 81 + + + src/app/ceph/dashboard/health/health.component.ts + 127 + R/W Throughput - R/W Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 88 + Read Throughput - Read Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 95 + Write Throughput - Write Throughput + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 102 + Load Balancing Group - Load Balancing Group + + src/app/ceph/block/nvmeof-namespaces-list/nvmeof-namespaces-list.component.ts + 109 + Details - Details + 詳細資料 + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 8 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 12 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 12 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 8 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 9 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 8 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 8 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 28 + Listeners - Listeners + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 16 + Namespaces - Namespaces + 名稱空間 + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.html + 24 + + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 16 + Serial Number - Serial Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 23 + Model Number - Model Number + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 24 + Minimum Controller Identifier - Minimum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 25 + Maximum Controller Identifier - Maximum Controller Identifier + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 26 + Subsystem Type - Subsystem Type + + src/app/ceph/block/nvmeof-subsystems-details/nvmeof-subsystems-details.component.ts + 27 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 16 + This NQN is already in use. - This NQN is already in use. + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 31 + Maximum Namespaces - Maximum Namespaces + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 44 + - The maximum namespaces per subsystem. Default is - - - The maximum namespaces per subsystem. Default is - - + The maximum namespaces per subsystem. Default is + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 52,53 + The value must be at least 1. 值必須至少為 1。 + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 55 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 310 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 336 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 412 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 666 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 698 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 999 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 141 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 167 + - The value cannot be greater than - . - - The value cannot be greater than - . - + The value cannot be greater than . + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.html + 58 + Subsystem - Subsystem + + src/app/ceph/block/nvmeof-subsystems-form/nvmeof-subsystems-form.component.ts + 37 + - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - - Subsystems - A subsystem provides access control to which hosts can access the namespaces within the subsystem. - - + Subsystems A subsystem provides access control to which hosts can access the namespaces within the subsystem. + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.html + 2,6 + NQN - NQN + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 48 + # Namespaces - # Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 52 + # Maximum Allowed Namespaces - # Maximum Allowed Namespaces + + src/app/ceph/block/nvmeof-subsystems/nvmeof-subsystems.component.ts + 56 + Subsystems - Subsystems + + src/app/ceph/block/nvmeof-tabs/nvmeof-tabs.component.html + 7 + RBD Configuration RBD 組態 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 3 + Remove the local configuration value. The parent configuration value will be inherited and used instead. 移除本地組態值。將繼承並使用父組態值。 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 57 + The minimum value is 0 - The minimum value is 0 + 最小值為 0 + + src/app/ceph/block/rbd-configuration-form/rbd-configuration-form.component.html + 66 + Global - Global + 全域 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 12 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + Image - Image + 影像 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.html + 14 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 68 + Key - Key + 金鑰 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 42 + Source - Source + 來源 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 45 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 72 + Value - Value + 值 + + src/app/ceph/block/rbd-configuration-list/rbd-configuration-list.component.ts + 49 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 150 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 62 + + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.ts + 49 + + + src/app/ceph/shared/smart-list/smart-list.component.ts + 178 + - Only available for RBD images with - fast-diff - enabled - - Only available for RBD images with - fast-diff - enabled - + Only available for RBD images with fast-diff enabled + 僅可用於啟用了 fast-diff 的 RBD 影像 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 2 + Data Pool - Data Pool + 資料池 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 28 + Created - Created + 已建立 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 33 + Size - Size + 大小 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 38 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 269 + Objects - Objects + 物件 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 43 + + + src/app/ceph/dashboard/health/health.component.html + 134 + Object size - Object size + 物件大小 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 48 + Features - Features + 功能 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 53 + + + src/app/ceph/block/rbd-form/rbd-form.component.html + 300 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 184 + Provisioned - Provisioned + 已佈建 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 62 + N/A - N/A + 無 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 68 + + + src/app/ceph/block/rbd-details/rbd-details.component.html + 83 + Total provisioned 總佈建數 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 77 + Striping unit - Striping unit + 分割單位 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 92 + Striping count - Striping count + 分割計數 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 97 + Parent - Parent + 父項 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 102 + Block name prefix - Block name prefix + 區塊名稱字首 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 111 + Order - Order + 順序 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 116 + Format Version - Format Version + 格式版本 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 121 + Snapshots - Snapshots + 快照 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 130 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 52 + + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 50 + Configuration - Configuration + 組態 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 143 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 7 + + + src/app/core/navigation/navigation/navigation.component.html + 375 + Performance - Performance + 效能 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 151 + + + src/app/ceph/dashboard/health/health.component.html + 185 + RBD details - RBD details + + src/app/ceph/block/rbd-details/rbd-details.component.html + 154 + Information can not be displayed for RBD in status 'Removing'. - Information can not be displayed for RBD in status 'Removing'. + 無法顯示處於 "正在移除" 狀態的 RBD 的資訊。 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 168 + This setting overrides the global value - This setting overrides the global value + 此設定會覆寫全域值 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 177 + This is the global value. No value for this option has been set for this image. - This is the global value. No value for this option has been set for this image. + 此值為全域值。未為此影像設定此選項的值。 + + src/app/ceph/block/rbd-details/rbd-details.component.html + 182 + - - from - - - from - + from + + src/app/ceph/block/rbd-form/rbd-form.component.html + 17 + - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - - You need to set - mirror mode - in the selected pool to enable mirroring. - Set Mode - - + You need to set mirror mode in the selected pool to enable mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 113,117 + - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - - You need to set mode as - Image - in the selected pool to enable snapshot mirroring. - Set Mode - - + You need to set mode as Image in the selected pool to enable snapshot mirroring. Set Mode + + src/app/ceph/block/rbd-form/rbd-form.component.html + 136,140 + Schedule Interval - Schedule Interval + + src/app/ceph/block/rbd-form/rbd-form.component.html + 147 + 12h or 1d or 10m - 12h or 1d or 10m + + src/app/ceph/block/rbd-form/rbd-form.component.html + 155 + Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively - Specify the interval to create mirror snapshots automatically. The interval can be specified in days, hours, or minutes using d, h, m suffix respectively + + src/app/ceph/block/rbd-form/rbd-form.component.html + 158 + Dedicated data pool - Dedicated data pool + + src/app/ceph/block/rbd-form/rbd-form.component.html + 176 + You need more than one pool with the rbd application label use to use a dedicated data pool. - You need more than one pool with the rbd application label use to use a dedicated data pool. + 若要使用專屬的資料池,您需要多個使用了 RBD 應用程式標籤的池。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 181 + -- No data pools available -- - -- No data pools available -- + -- 沒有可用的資料池 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 206 + -- No namespaces available -- - -- No namespaces available -- + -- 沒有可用的名稱空間 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 253 + -- Select a namespace -- - -- Select a namespace -- + -- 選取名稱空間 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 256 + 10 GiB - 10 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 277 + You have to increase the size. - You have to increase the size. + 您必須增加大小。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 285 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/ceph/block/rbd-form/rbd-form.component.html + 288 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 89 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 69 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 514 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 541 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 597 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 524 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 621 + Striping 分割 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 323 + - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - - Object size - Objects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. - - + Object sizeObjects in the Ceph Storage Cluster have a maximum configurable size (e.g., 2MB, 4MB, etc.). The object size should be large enough to accommodate many stripe units, and should be a multiple of the stripe unit. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 328,329 + - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - - Stripe unit - Stripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. - - + Stripe unitStripes have a configurable unit size (e.g., 64kb). The Ceph Client divides the data it will write to objects into equally sized stripe units, except for the last stripe unit. A stripe width, should be a fraction of the Object Size so that an object may contain many stripe units. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 345,346 + -- Select stripe unit -- - -- Select stripe unit -- + -- 選取分割單位 -- + + src/app/ceph/block/rbd-form/rbd-form.component.html + 352 + This field is required because stripe count is defined! - This field is required because stripe count is defined! + 由於已定義分割計數,因此必須填寫此欄位! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 358 + Stripe unit is greater than object size. - Stripe unit is greater than object size. + 分割單位大於物件大小。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 361 + - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - - Stripe count - The Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. - - + Stripe countThe Ceph Client writes a sequence of stripe units over a series of objects determined by the stripe count. The series of objects is called an object set. After the Ceph Client writes to the last object in the object set, it returns to the first object in the object set. + + src/app/ceph/block/rbd-form/rbd-form.component.html + 370,371 + This field is required because stripe unit is defined! - This field is required because stripe unit is defined! + 由於已定義分割單位,因此必須填寫此欄位! + + src/app/ceph/block/rbd-form/rbd-form.component.html + 379 + Stripe count must be greater than 0. - Stripe count must be greater than 0. + 分割計數必須大於 0。 + + src/app/ceph/block/rbd-form/rbd-form.component.html + 382 + RBD RBD + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 145 + Deep flatten - Deep flatten + 深層壓平 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 148 + Feature can be disabled but can't be re-enabled later - Feature can be disabled but can't be re-enabled later + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 152 + Speeds up the process of deleting a clone by removing the dependency on the parent image. - Speeds up the process of deleting a clone by removing the dependency on the parent image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 153 + Layering - Layering + 分層 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 156 + Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot - Feature flag can't be manipulated after the image is created. Disabling this option will also disable the Protect and Clone actions on Snapshot + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 160 + Allows the creation of snapshots and clones of an image. - Allows the creation of snapshots and clones of an image. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 161 + Exclusive lock - Exclusive lock + 獨佔鎖定 + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 164 + Ensures that only one client can write to the image at a time. - Ensures that only one client can write to the image at a time. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 168 + Object map (requires exclusive-lock) - Object map (requires exclusive-lock) + 物件對應 (需要獨佔鎖定) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 171 + Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. - Tracks which objects actually exist (have data stored on a device). Enabling object map support speeds up I/O operations for cloning, importing and exporting a sparsely populated image, and deleting. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 176 + Fast diff (interlocked with object-map) - Fast diff (interlocked with object-map) + Fast diff (與 object-map 連鎖) + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 179 + Speeds up the process of comparing two images. - Speeds up the process of comparing two images. + + src/app/ceph/block/rbd-form/rbd-form.component.ts + 185 + primary - primary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 46 + secondary - secondary + + src/app/ceph/block/rbd-list/rbd-list.component.html + 49 + Deleting this image will also delete all its snapshots. - Deleting this image will also delete all its snapshots. + 刪除此影像時也會刪除它的所有快照。 + + src/app/ceph/block/rbd-list/rbd-list.component.html + 78 + The following snapshots are currently protected and will be removed: - The following snapshots are currently protected and will be removed: + 以下快照目前受到保護,將會被移除: + + src/app/ceph/block/rbd-list/rbd-list.component.html + 81 + RBD in status 'Removing' - RBD in status 'Removing' + RBD 處於 "正在移除" 狀態 + + src/app/ceph/block/rbd-list/rbd-list.component.html + 107 + - - Do you want to force the operation? - - - - Do you want to force the operation? - - + Do you want to force the operation? + + src/app/ceph/block/rbd-list/rbd-list.component.html + 115,117 + Size - Size + 大小 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 270 + + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 115 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 65 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 147 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 321 + Usage - Usage + 使用率 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 278 + + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 67 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 90 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 120 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 330 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 161 + Objects - Objects + 物件 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 284 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 89 + Object size - Object size + 物件大小 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 292 + Parent - Parent + 父項 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 300 + Mirroring - Mirroring + 鏡像 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 307 + Next Scheduled Snapshot - Next Scheduled Snapshot + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 314 + image - image + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 540 + Warning - Warning + 警告 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 585 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 110 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 387 + + + src/app/ceph/dashboard/health/health.component.ts + 222 + + + src/app/ceph/shared/device-list/device-list.component.ts + 57 + + + src/app/shared/components/alert-panel/alert-panel.component.ts + 42 + Enforce - Enforce + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 586 + This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. - This RBD has cloned snapshots. Please delete related RBDs before deleting this RBD. + 此 RBD 具有克隆的快照。請先刪除相關 RBD,再刪除此 RBD。 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 630 + Primary RBD images cannot be resynced - Primary RBD images cannot be resynced + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 640 + This RBD image has an invalid name and can't be managed by ceph. - This RBD image has an invalid name and can't be managed by ceph. + 此 RBD 影像的名稱無效,無法由 ceph 管理。 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 653 + Action not possible for an RBD in status 'Removing' - Action not possible for an RBD in status 'Removing' + 無法對處於 "正在移除" 狀態的 RBD 執行動作 + + src/app/ceph/block/rbd-list/rbd-list.component.ts + 662 + Create Namespace - Create Namespace + 建立名稱空間 + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 3 + -- No rbd pools available -- - -- No rbd pools available -- + -- 沒有可用的 RBD 池 -- + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 35 + Namespace already exists. 名稱空間已存在。 + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.html + 66 + - Created namespace ' - / - ' - - Created namespace ' - / - ' - + Created namespace '/' + 已建立名稱空間 "/" + + src/app/ceph/block/rbd-namespace-form/rbd-namespace-form-modal.component.ts + 135 + Total images - Total images + 影像總計 + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 74 + - Deleted namespace ' - / - ' - - 已刪除名稱空間 " - / - " - + Deleted namespace '/' + 已刪除名稱空間 "/" + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 136 + Namespace contains images 名稱空間包含影像 + + src/app/ceph/block/rbd-namespace-list/rbd-namespace-list.component.ts + 152 + RBD overview - RBD overview + + src/app/ceph/block/rbd-performance/rbd-performance.component.html + 4 + - Snapshot mode is enabled on image - - - : snapshot names are auto generated - - Snapshot mode is enabled on image - - - : snapshot names are auto generated - + Snapshot mode is enabled on image : snapshot names are auto generated + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 29 + - The snapshot name cannot start with "." and cannot contain "/" and "@". - The snapshot name cannot start with "." and cannot contain "/" and "@". + The snapshot name cannot start with "." and cannot contain "/" and "@". + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 32 + Mirror Image Snapshot - Mirror Image Snapshot + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 49 + The peer must be registered to do this action. - The peer must be registered to do this action. + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.html + 51 + RBD Snapshot - RBD Snapshot + RBD 快照 + + src/app/ceph/block/rbd-snapshot-form/rbd-snapshot-form-modal.component.ts + 47 + The layering feature needs to be enabled on parent image - The layering feature needs to be enabled on parent image + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 114 + Snapshot must be protected in order to clone. - Snapshot must be protected in order to clone. + 快照必須處於受保護狀態才能複製。 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-actions.model.ts + 124 + You are about to rollback - You are about to rollback + 您即將復原 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.html + 15 + Used - Used + 已使用 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 122 + + + src/app/ceph/dashboard/health/health.component.ts + 184 + PROTECTED - PROTECTED + 受保護 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 135 + UNPROTECTED - UNPROTECTED + 未受保護 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 136 + Created - Created + 已建立 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 141 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 210 + + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 79 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 155 + + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 103 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 139 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 85 + + + src/app/shared/constants/app.constants.ts + 286 + + + src/app/shared/services/task-message.service.ts + 67 + RBD snapshot rollback - RBD snapshot rollback + RBD 快照復原 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 313 + Rollback - Rollback + 復原 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 314 + + + src/app/shared/constants/app.constants.ts + 200 + RBD snapshot - RBD snapshot + RBD 快照 + + src/app/ceph/block/rbd-snapshot-list/rbd-snapshot-list.component.ts + 331 + Trash - Trash + 垃圾桶 + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 24 + Overall Performance - Overall Performance + 整體效能 + + src/app/ceph/block/rbd-tabs/rbd-tabs.component.html + 33 + + + src/app/ceph/cluster/hosts/hosts.component.html + 49 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 46 + + + src/app/ceph/pool/pool-list/pool-list.component.html + 38 + + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 24 + Purge Trash - Purge Trash + 清除垃圾桶 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 26 + + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 3 + Expired at - Expired at + 過期日為 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 35 + Protected until - Protected until + 保護過期日為 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 38 + - This image is protected until - . - - This image is protected until - . - + This image is protected until . + 此影像在 前一直受保護。 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.html + 49 + Status - Status + 狀態 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 107 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 237 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 289 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 151 + + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 158 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 71 + Deleted At 刪除位置 + + src/app/ceph/block/rbd-trash-list/rbd-trash-list.component.ts + 113 + Move an image to trash - Move an image to trash + 將影像移至垃圾桶 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 3 + This image contains snapshot(s), which will prevent it from being removed after moved to trash. - This image contains snapshot(s), which will prevent it from being removed after moved to trash. + 此影像包含快照,這將阻止影像移至垃圾桶後被移除。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 15,16 + - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - - To move - - - to trash, click - Move - . Optionally, you can pick an expiration date. - + To move to trash, click Move. Optionally, you can pick an expiration date. + 若要將 移至垃圾桶,請按一下移動。(選擇性) 您可以選取一個過期日期。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 19,20 + Protection expires at - Protection expires at + 保護的過期日為 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 25 + NOT PROTECTED - NOT PROTECTED + 無保護 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 27 + - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". - Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + Wrong date format. Please use "YYYY-MM-DD HH:mm:ss". + 日期格式錯誤。請使用 "YYYY-MM-DD HH:mm:ss"。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 39 + Protection has already expired. Please pick a future date or leave it empty. - Protection has already expired. Please pick a future date or leave it empty. + 保護已過期。請選取一個未來的日期或保留空白。 + + src/app/ceph/block/rbd-trash-move-modal/rbd-trash-move-modal.component.html + 42 + - To purge, select  - All -   or one pool and click  - Purge - .  - - To purge, select  - All -   or one pool and click  - Purge - .  - + To purge, select  All  or one pool and click  Purge.  + 若要進行清除,請選取所有或一個池,然後按一下清除。 + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 12,15 + Pool: - Pool: + 池︰ + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 19 + Pool name... - Pool name... + 池名稱... + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 22 + All - All + 所有 + + src/app/ceph/block/rbd-trash-purge-modal/rbd-trash-purge-modal.component.html + 32 + Restore Image - Restore Image + 回存影像 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 3 + - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - - To restore  - - @ - - ,  type the image's new name and click  - Restore - . - + To restore  @,  type the image's new name and click  Restore. + 若要回存 @,請鍵入影像的新名稱并按一下回存。 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 12,15 + New Name - New Name + 新名稱 + + src/app/ceph/block/rbd-trash-restore-modal/rbd-trash-restore-modal.component.html + 20 + Fs name - Fs name + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 15,16 + This field is required! - This field is required! + 此欄位為必填欄位! + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 25 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 54 + + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 81 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 47 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 68 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 72 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 90 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 112 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 129 + + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 148 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 30 + + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 50 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 42 + + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 77 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 26 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 60 + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 88 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 24 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 57 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 80 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 117 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 220 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 28 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 61 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 102 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 432 + - User ID - You can manage users from - Ceph Users - page - - - User ID - You can manage users from - Ceph Users - page - - + User ID You can manage users from Ceph Users page + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 33,39 + client. - client. + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 45,46 + - Directory - Path to restrict access to - - - Directory - Path to restrict access to - - + Directory Path to restrict access to + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 63,64 + Permissons - Permissons + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 89 + Read - Read + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 100,101 + Read permission is the minimum givable access - Read permission is the minimum givable access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 102 + Write - Write + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 114,115 + Quota - Quota + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 126,127 + Permission to set layouts or quotas, write access needed - Permission to set layouts or quotas, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 128 + Snapshot - Snapshot + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 139,140 + Permission to create or delete snapshots, write access needed - Permission to create or delete snapshots, write access needed + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 141 + Root Squash - Root Squash + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.html + 152,153 + access - access + + src/app/ceph/cephfs/cephfs-auth-modal/cephfs-auth-modal.component.ts + 43 + id - id + ID + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 64 + type - type + 類型 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 65 + state - state + 狀態 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 66 + version - version + 版本 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 67 + root - root + 根 + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 69 + - Evicted client ' - ' - - Evicted client ' - ' - + Evicted client '' + 已逐出用戶端 "" + + src/app/ceph/cephfs/cephfs-clients/cephfs-clients.component.ts + 84 + Ranks - Ranks + 階層 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 3 + Standbys - Standbys + 待命 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 9 + MDS performance counters MDS 效能計數器 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.html + 23 + Standby daemons - Standby daemons + 待命精靈 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 44 + Rank - Rank + 階層 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 53 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 24 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 48 + Daemon - Daemon + 精靈 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 55 + Activity - Activity + 活動 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 56 + Dentries Dentry + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 57 + Inodes - Inodes + Inode + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 58 + Dirs - Dirs + 目錄 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 59 + Caps - Caps + 功能 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 60 + Type - Type + 類型 + + src/app/ceph/cephfs/cephfs-detail/cephfs-detail.component.ts + 64 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 118 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 50 + Quotas - Quotas + 定額 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.html + 33 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 572 + Origin - Origin + 來源 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 156 + Path - Path + 路徑 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 204 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 145 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 127 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 55 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + - Cannot create snapshots for files/folders in the subvolume - - - Cannot create snapshots for files/folders in the subvolume - - + Cannot create snapshots for files/folders in the subvolume + 無法為子磁碟區 中的檔案/資料夾建立快照 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 243 + Max size - Max size + 最大大小 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + Max files - Max files + 最大檔案數量 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 376 + - The inherited - is the maximum value to be used. - - The inherited - is the maximum value to be used. - + The inherited is the maximum value to be used. + 繼承的 為將使用的最大值。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 446,449 + Save - Save + 儲存 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 452 + - - CephFS - quota for ' - ' - - - CephFS - quota for ' - ' - + CephFS quota for '' + "" 的 CephFS 定額 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 458 + size - size + 大小 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + files - files + 檔案數量 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 462 + - - quota - from ' - ' - - - quota - from ' - ' - + quota from '' + "" 中的 定額 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 472 + Value has to be at least 0 or more - Value has to be at least 0 or more + 值必須大於或等於 0 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 496 + - Value has to be at most - or less - - Value has to be at most - or less - + Value has to be at most or less + 值必須小於或等於 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 497 + Updated - Updated + 已更新 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 511 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 141 + + + src/app/shared/services/task-message.service.ts + 68 + - in order to inherit - - - 以繼承 - - + in order to inherit + 以繼承 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 535 + - which isn't used because of the inheritance of - - - which isn't used because of the inheritance of - - + which isn't used because of the inheritance of + 未使用,因為繼承了 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 536 + in order to have no quota on the directory - in order to have no quota on the directory + 為了不為目錄設定定額 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 537 + - - - - . - - - - - . - + . + 。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 542,545 + Create Snapshot - Create Snapshot + 建立快照 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 554 + + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 565 + Please enter the name of the snapshot. - Please enter the name of the snapshot. + 請輸入快照的名稱。 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 555 + - Created snapshot ' - ' for ' - ' - - Created snapshot ' - ' for ' - ' - + Created snapshot '' for '' + 已建立 "" 的快照 "" + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 571 + - Snapshot name ' - ' is already in use. Please use another name. - - Snapshot name ' - ' is already in use. Please use another name. - + Snapshot name '' is already in use. Please use another name. + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 578 + CephFs Snapshot - CephFs Snapshot + CephFs 快照 + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 695 + - Deleted snapshot ' - ' for ' - ' - - Deleted snapshot ' - ' for ' - ' - + Deleted snapshot '' for '' + 已刪除 "" 的快照 "" + + src/app/ceph/cephfs/cephfs-directories/cephfs-directories.component.ts + 708 + - - - - - - - - - form title + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 9,11 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 7 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 9 + + Example: Create Volume + form title Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. - Orchestrator is not configured. Deploy MDS daemons manually after creating the volume. + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 16 + - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - - - The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: - - - - - - + The File System can only be renamed if it is shutdown and `refuse_client_session` is set to true. Follow the steps below in the command line and refresh the page: + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 24,30 + File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' - File System name should start with a letter or dot (.) and can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 50 + Placement - Placement + 放置 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 60 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 245 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 77 + Hosts - Hosts + 主機 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 66 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 98 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 9 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 252 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 284 + + + src/app/ceph/dashboard/health/health.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 83 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 115 + + + src/app/core/navigation/navigation/navigation.component.html + 123 + Label 標籤 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 68 + + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.html + 78 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 254 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 264 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 85 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 95 + File System - File System + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 72 + There are no hosts. - There are no hosts. + 沒有主機。 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 76 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 117 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 50 + Filter hosts - Filter hosts + 過濾主機 + + src/app/ceph/cephfs/cephfs-form/cephfs-form.component.ts + 77 + + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 118 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 51 + Enabled 已啟用 + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 73 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 50 + + + src/app/core/auth/user-list/user-list.component.ts + 110 + File System deletion is disabled by the mon_allow_pool_delete configuration setting. - File System deletion is disabled by the mon_allow_pool_delete configuration setting. + + src/app/ceph/cephfs/cephfs-list/cephfs-list.component.ts + 191 + Attach commands - Attach commands + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 3 + Using Mount command - Using Mount command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 8,10 + Using FUSE command - Using FUSE command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 15,17 + Using NFS Command - Using NFS Command + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 22,24 + Close - Close + + src/app/ceph/cephfs/cephfs-mount-details/cephfs-mount-details.component.html + 30,32 + Directory - Directory + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 15,16 + A snapshot schedule for this path already exists. - A snapshot schedule for this path already exists. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 36 + Start date - Start date + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 44,45 + - Start time - The time zone is assumed to be UTC. - - - Start time - The time zone is assumed to be UTC. - - + Start time The time zone is assumed to be UTC. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 73,76 + Schedule - Schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 92,93 + - [object Object] - [object Object] + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 109,110 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 147,148 + This schedule already exists for the selected directory. - This schedule already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 114 + Choose a value greater than 0. - Choose a value greater than 0. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 120 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 130,131 + This retention policy already exists for the selected directory. - This retention policy already exists for the selected directory. + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 157 + Add retention policy - Add retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.html + 167 + Snapshot schedule - Snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-form/cephfs-snapshotschedule-form.component.ts + 84 + - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - - In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled - Enable - - + In order to access the snapshot scheduler feature, the snap_scheduler module must be enabled Enable + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.html + 7,17 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 147 + + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 62 + Repeat interval - Repeat interval + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 148 + Retention policy - Retention policy + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 150 + Created Count - Created Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 152 + Deleted Count - Deleted Count + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 153 + Start time - Start time + 開始時間 + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 154 + Enabled Snapshot Schedule Module - Enabled Snapshot Schedule Module + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 218 + Reconnecting, please wait ... - Reconnecting, please wait ... + 正在重新連接,請稍候... + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 241 + + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 193 + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 589 + snapshot schedule - snapshot schedule + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 251 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 274 + + + src/app/ceph/cephfs/cephfs-snapshotschedule-list/cephfs-snapshotschedule-list.component.ts + 306 + The subvolume already exists. - The subvolume already exists. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 29 + Subvolume name can only contain letters, numbers, '.', '-' or '_' - Subvolume name can only contain letters, numbers, '.', '-' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 32 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 32 + Volume name - Volume name + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 40 + + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 37 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 40 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 53,54 + Default - Default + 預設值 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 62 + + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 30 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 58 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 37 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 56 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 56 + - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 73,77 + e.g., 10GiB - e.g., 10GiB + 例如 10 GiB + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 84 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 64 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 592 + - Pool - By default, the data_pool_layout of the parent directory is selected. - - - Pool - By default, the data_pool_layout of the parent directory is selected. - - + Pool By default, the data_pool_layout of the parent directory is selected. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 97,100 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 77,80 + UID - UID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 115 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 95 + GID - GID + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 130 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 110 + - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - - Mode - Permissions for the directory. Default mode is 755 which is rwxr-xr-x - - + Mode Permissions for the directory. Default mode is 755 which is rwxr-xr-x + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 145,148 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 125,128 + - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - - Isolated Namespace - To create subvolume in a separate RADOS namespace. - - + Isolated Namespace To create subvolume in a separate RADOS namespace. + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.html + 171,173 + All 所有 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 70 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 63 + + + src/app/core/auth/role-form/role-form.component.ts + 69 + Read - Read + 讀取 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 75 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 68 + + + src/app/core/auth/role-details/role-details.component.ts + 32 + + + src/app/core/auth/role-form/role-form.component.ts + 74 + Write - Write + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 74 + Execute 執行 + + src/app/ceph/cephfs/cephfs-subvolume-form/cephfs-subvolume-form.component.ts + 87 + + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 80 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 255 + Quota limit is not set - Quota limit is not set + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.html + 35 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 42 + Data Pool - Data Pool + 資料池 + + src/app/ceph/cephfs/cephfs-subvolume-group/cephfs-subvolume-group.component.ts + 81 + + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.ts + 111 + - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - - Retain snapshots - The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. - - + Retain snapshots The subvolume can be removed retaining existing snapshots using this option. If snapshots are retained, the subvolume is considered empty for all operations not involving the retained snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-list/cephfs-subvolume-list.component.html + 104,108 + The snapshot already exists. - The snapshot already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 29 + Subvolume group - Subvolume group + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 50,51 + Subvolume - Subvolume + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.html + 74,75 + snapshot - snapshot + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-form/cephfs-subvolume-snapshots-form.component.ts + 42 + Loading snapshots... - Loading snapshots... + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 3 + No subvolumes are present. Please create subvolumes to manage snapshots. - No subvolumes are present. Please create subvolumes to manage snapshots. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.html + 46 + Pending Clones - Pending Clones + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 91 + Create clone - Create clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 266 + Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' - Allowed characters are letters, numbers, '.', '-', '+', ':' or '_' + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 286 + A subvolume or clone with this name already exists. - A subvolume or clone with this name already exists. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 287 + Group name - Group name + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 294 + Create Clone - Create Clone + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 302 + - Created Clone " - " successfully. - - Created Clone " - " successfully. - + Created Clone "" successfully. + + src/app/ceph/cephfs/cephfs-subvolume-snapshots-list/cephfs-subvolume-snapshots-list.component.ts + 325 + The subvolume group already exists. - The subvolume group already exists. + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 29 + - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - - Size - The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite - - + Size The size of the subvolume group is specified by setting a quota on it. If left blank or put 0, then quota will be infinite + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.html + 53,57 + subvolume group - subvolume group + + src/app/ceph/cephfs/cephfs-subvolumegroup-form/cephfs-subvolumegroup-form.component.ts + 55 + Directories - Directories + 目錄 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 19 + Subvolumes - Subvolumes + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 27 + Subvolume groups - Subvolume groups + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 39 + Snapshot schedules - Snapshot schedules + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 59 + Clients - Clients + 用戶端 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 69 + + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 3 + Performance Details - Performance Details + 效能詳細資料 + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 83 + + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 35 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 58 + + + src/app/ceph/pool/pool-details/pool-details.component.html + 20 + + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 27 + CephFS MDS performance - CephFS MDS performance + + src/app/ceph/cephfs/cephfs-tabs/cephfs-tabs.component.html + 87 + Description - Description + 描述 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 11 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 30 + + + src/app/ceph/cluster/telemetry/telemetry.component.html + 178 + + + src/app/ceph/shared/feedback/feedback.component.html + 96 + + + src/app/core/auth/role-form/role-form.component.html + 40 + Long description - Long description + 詳細描述 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 16 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 44 + Current values 目前的值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 21 + Daemon default - Daemon default + 精靈預設值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 35 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 72 + Type - Type + 類型 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 40 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 23 + + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 15 + Min - Min + 最小值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 45 + Max - Max + 最大值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 50 + Flags - Flags + 旗標 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 55 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 157 + Services - Services + 服務 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 66 + + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 86 + + + src/app/core/navigation/navigation/navigation.component.html + 351 + Source 來源 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 75 + Level - Level + 層級 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 80 + Can be updated at runtime (editable) - Can be updated at runtime (editable) + 可在執行時期更新 (可編輯) + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 85 + Tags - Tags + 標記 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 90 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 111 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 160 + Enum values - Enum values + 列舉值 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 95 + See also - See also + 另請參閱 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.html + 100 + The value can be updated at runtime. - The value can be updated at runtime. + 該值可在執行時期更新。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 14 + Daemons/clients do not pull this value from the monitor config database. We disallow setting this option via 'ceph config set ...'. This option should be configured via ceph.conf or via the command line. - Daemons/clients do not pull this value from the - monitor config database. We disallow setting this option via 'ceph config - set ...'. This option should be configured via ceph.conf or via the - command line. + 精靈/用戶端不會從監控程式組態資料庫 + 提取此值。我們不允許透過 "ceph config set ..." + 設定此選項。應透過 ceph.conf 或使用指令行 + 進行設定。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 15,18 + Option takes effect only during daemon startup. - Option takes effect only during daemon startup. + 該選項僅在精靈啟動期間生效。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 19 + Option only affects cluster creation. 該選項僅影響叢集的建立。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 20 + Option only affects daemon creation. - Option only affects daemon creation. + 該選項僅影響精靈的建立。 + + src/app/ceph/cluster/configuration/configuration-details/configuration-details.component.ts + 21 + Values - Values + 值 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 98 + -- Default -- - -- Default -- + -- 預設值 -- + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 111 + true true + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 113 + false false + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 115 + - The entered value is too high! It must not be greater than - . - - 輸入的值過大!值不得大於 - 。 - + The entered value is too high! It must not be greater than . + 輸入的值過大!值不得大於 。 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 142 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 輸入的值過小!值不得小於 。 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.html + 145 + + + + Force Edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 162 + + + + force edit + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 163 + + + + configuration + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 164 + - Updated config option - - - 已更新組態選項 - - + Updated config option + 已更新組態選項 + + src/app/ceph/cluster/configuration/configuration-form/configuration-form.component.ts + 181 + + + + Modified + 已修改 + + src/app/ceph/cluster/configuration/configuration.component.ts + 31 + + + + yes + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + + + src/app/ceph/cluster/configuration/configuration.component.ts + 34 + + + + no + + src/app/ceph/cluster/configuration/configuration.component.ts + 33 + Level - Level + 層級 + + src/app/ceph/cluster/configuration/configuration.component.ts + 48 + Service 服務 - - - Modified - Modified + + src/app/ceph/cluster/configuration/configuration.component.ts + 64 + + + src/app/ceph/cluster/services/services.component.ts + 149 + + + src/app/ceph/cluster/services/services.component.ts + 241 + Current value - Current value + 目前的值 + + src/app/ceph/cluster/configuration/configuration.component.ts + 114 + Editable - Editable + 可編輯 + + src/app/ceph/cluster/configuration/configuration.component.ts + 121 + Cluster Resources - Cluster Resources + 叢集資源 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 5 + Storage Capacity - Storage Capacity + 儲存容量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 16 + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 59 + Number of devices - Number of devices + 裝置數量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 19 + Raw capacity - Raw capacity + 原始容量 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 22 + CPUs CPU + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 31 + Memory 記憶體 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 36 + Host Details - Host Details + 主機詳細資料 + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 45 + - [object Object] - [object Object] + + + src/app/ceph/cluster/create-cluster/create-cluster-review.component.html + 62 + - Welcome to - - - Welcome to - - + Welcome to + 歡迎使用 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 10 + Please expand your cluster first - Please expand your cluster first + 請先擴充您的叢集 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 14 + Expand Cluster - Expand Cluster + 擴充叢集 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 20 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 35 + Skip - Skip + 跳過 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 25 + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 94 + Add Hosts - Add Hosts + 新增主機 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 43 + Create OSDs - Create OSDs + 建立 OSD + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 54 + Create Services - Create Services + 建立服務 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 66 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 84 + - You are about to skip the cluster expansion process. You’ll need to - navigate through the menu to add hosts and services. - - - 您即將跳過叢集擴充過程。您需要 - 在功能表中導覽以新增主機和服務 - 。 - + You are about to skip the cluster expansion process. You’ll need to navigate through the menu to add hosts and services. + 您即將跳過叢集擴充過程。您需要在功能表中導覽以新增主機和服務。 + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 99,100 + Are you sure you want to continue? - Are you sure you want to continue? + 確定要繼續嗎? + + src/app/ceph/cluster/create-cluster/create-cluster.component.html + 103 + + + src/app/ceph/cluster/hosts/hosts.component.html + 91 + + + src/app/core/auth/user-form/user-form.component.html + 254 + Continue - Continue + 繼續 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 111 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 388 + + + src/app/core/auth/user-form/user-form.component.ts + 222 + Cluster expansion skipped by user - Cluster expansion skipped by user + 使用者已跳過叢集擴充 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 121 + Cluster expansion was successful - Cluster expansion was successful + 叢集擴充成功 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 149 + - - deployment - - - deployment - + deployment + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 170 + Expand Cluster - Expand Cluster + 擴充叢集 + + src/app/ceph/cluster/create-cluster/create-cluster.component.ts + 247 + + + src/app/shared/constants/app.constants.ts + 233 + CRUSH map viewer - CRUSH map viewer + CRUSH 地圖檢視器 + + src/app/ceph/cluster/crushmap/crushmap.component.html + 5 + Devices 裝置 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 8 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 9 + Physical Disks 實體磁碟 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 16 + + + src/app/ceph/cluster/inventory/inventory.component.html + 3 + + + src/app/core/navigation/navigation/navigation.component.html + 135 + Host details - Host details + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 38 + Device health - Device health + 裝置狀況 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 48 + + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 40 + No hostname found. - No hostname found. + 找不到主機名稱。 + + src/app/ceph/cluster/hosts/host-details/host-details.component.html + 61 + Hostname - Hostname + 主機名稱 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 20 + To add multiple hosts at once, you can enter: - To add multiple hosts at once, you can enter: + 若要一次新增多個主機,您可以輸入: + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 22 + - a comma-separated list of hostnames - (e.g.: example-01,example-02,example-03) - , - - 主機名稱的逗號分隔清單 - (例如:example-01,example-02,example-03) - , - + a comma-separated list of hostnames (e.g.: example-01,example-02,example-03), + 主機名稱的逗號分隔清單 (例如:example-01,example-02,example-03), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 24 + - a range expression - (e.g.: example-[01-03].ceph) - , - - a range expression - (e.g.: example-[01-03].ceph) - , - + a range expression (e.g.: example-[01-03].ceph), + 範圍運算式 (例如:example-[01-03].ceph), + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 25 + - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - - a comma separated range expression - (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) - - + a comma separated range expression (e.g.: example-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + 範圍運算式的逗號分隔清單 (例如:mple-[01-05].lab.com,example2-[1-4].lab.com,example3-[001-006].lab.com) + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 26 + The chosen hostname is already in use. - The chosen hostname is already in use. + 所選的主機名稱已在使用中 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 44 + Network address - Network address + 網路位址 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 53 + The value is not a valid IP address. - The value is not a valid IP address. + 該值不是有效的 IP 位址。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 63 + Labels - Labels + 標籤 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 71 + Maintenance Mode - Maintenance Mode + 維護模式 + + src/app/ceph/cluster/hosts/host-form/host-form.component.html + 93 + There are no labels. - There are no labels. + 沒有標籤。 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 39 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 341 + Filter or add labels - Filter or add labels + 過濾或新增標籤 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 40 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 342 + Add label 新增標籤 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 41 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 343 + host - host + 主機 + + src/app/ceph/cluster/hosts/host-form/host-form.component.ts + 52 + Hosts List - Hosts List + 主機清單 + + src/app/ceph/cluster/hosts/hosts.component.html + 6 + Host overview - Host overview + + src/app/ceph/cluster/hosts/hosts.component.html + 52 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.html + 87 + Data will be available only if Orchestrator is available. - Data will be available only if Orchestrator is available. + 僅當 Orchestrator 可用時,才能獲取資料。 + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + - - - + + src/app/ceph/cluster/hosts/hosts.component.html + 118 + SSD, NVMEs - SSD, NVMEs + SSD、NVME + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + Flash - Flash + 快閃記憶體 + + src/app/ceph/cluster/hosts/hosts.component.html + 124 + The feature is disabled because the selected host is not managed by Orchestrator. - The feature is disabled because the selected host is not managed by Orchestrator. + 由於所選主機并不是由 Orchestrator 管理,已停用該功能。 + + src/app/ceph/cluster/hosts/hosts.component.ts + 105 + Service Instances - Service Instances + + src/app/ceph/cluster/hosts/hosts.component.ts + 222 + Labels - Labels + 標籤 + + src/app/ceph/cluster/hosts/hosts.component.ts + 228 + + + src/app/ceph/cluster/hosts/hosts.component.ts + 336 + Model - Model + 型號 + + src/app/ceph/cluster/hosts/hosts.component.ts + 249 + + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 142 + CPUs - CPUs + CPU + + src/app/ceph/cluster/hosts/hosts.component.ts + 254 + Cores - Cores + 核心 + + src/app/ceph/cluster/hosts/hosts.component.ts + 260 + Total Memory - Total Memory + 總記憶體 + + src/app/ceph/cluster/hosts/hosts.component.ts + 266 + Raw Capacity 原始容量 + + src/app/ceph/cluster/hosts/hosts.component.ts + 272 + HDDs - HDDs + HDD + + src/app/ceph/cluster/hosts/hosts.component.ts + 278 + Flash - Flash + 快閃記憶體 + + src/app/ceph/cluster/hosts/hosts.component.ts + 284 + NICs - NICs + NIC + + src/app/ceph/cluster/hosts/hosts.component.ts + 291 + - Edit Host: - - - Edit Host: - - + Edit Host: + 編輯主機: + + src/app/ceph/cluster/hosts/hosts.component.ts + 330 + Edit Host - Edit Host + 編輯主機 + + src/app/ceph/cluster/hosts/hosts.component.ts + 348 + - Updated Host " - " - - Updated Host " - " - + Updated Host "" + 已更新主機 &quot;&quot; + + src/app/ceph/cluster/hosts/hosts.component.ts + 353 + - " - " moved to maintenance - - " - " moved to maintenance - + "" moved to maintenance + &quot;&quot; 已進入維護模式 + + src/app/ceph/cluster/hosts/hosts.component.ts + 372 + - " - " cannot be put into maintenance - - " - " cannot be put into maintenance - + "" cannot be put into maintenance + 無法將 &quot;&quot; 置於維護模式 + + src/app/ceph/cluster/hosts/hosts.component.ts + 405 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/hosts/hosts.component.ts + 406 + + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 28 + + + src/app/shared/datatable/crud-table/crud-table.component.ts + 123 + + + src/app/shared/services/task-message.service.ts + 324,328 + + + src/app/shared/services/task-message.service.ts + 334,336 + + + src/app/shared/services/task-message.service.ts + 342,344 + + + src/app/shared/services/task-message.service.ts + 548 + + + src/app/shared/services/task-message.service.ts + 575 + - " - " has exited maintenance - - &quot; - &quot; 已結束維護模式 - + "" has exited maintenance + &quot;&quot; 已結束維護模式 + + src/app/ceph/cluster/hosts/hosts.component.ts + 416 + - " - " stopped draining - - " - " stopped draining - + "" stopped draining + &quot;&quot; 已停止清空 + + src/app/ceph/cluster/hosts/hosts.component.ts + 431 + - " - " started draining - - &quot; - &quot; 已開始清空 - + "" started draining + &quot;&quot; 已開始清空 + + src/app/ceph/cluster/hosts/hosts.component.ts + 439 + Identify - Identify + 身分 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 100 + Device path - Device path + 裝置路徑 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 113 + Available - Available + 可用 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 130 + Vendor - Vendor + 廠商 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 137 + OSDs - OSDs + OSD + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 153 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 108 + - Identify device - - - Identify device - - + Identify device + 識別裝置 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 236 + Please enter the duration how long to blink the LED. - Please enter the duration how long to blink the LED. + 請輸入 LED 閃爍的持續時間。 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 237 + 1 minute - 1 minute + 1 分鐘 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 246 + 2 minutes - 2 minutes + 2 分鐘 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 247 + 5 minutes - 5 minutes + 5 分鐘 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 248 + 10 minutes - 10 minutes + 10 分鐘 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 249 + 15 minutes - 15 minutes + 15 分鐘 + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 250 + - Identifying ' - ' started on host ' - ' - - Identifying ' - ' started on host ' - ' - + Identifying '' started on host '' + 正在識別主機 "" 上啟動的 "" + + src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.ts + 260 + Cluster Logs - Cluster Logs + 叢集記錄 + + src/app/ceph/cluster/logs/logs.component.html + 12 + Audit Logs - Audit Logs + 稽核記錄 + + src/app/ceph/cluster/logs/logs.component.html + 46 + Daemon Logs - Daemon Logs + + src/app/ceph/cluster/logs/logs.component.html + 79 + Daemon logs - Daemon logs + + src/app/ceph/cluster/logs/logs.component.html + 84 + Priority: - Priority: + 優先程度: + + src/app/ceph/cluster/logs/logs.component.html + 106 + Keyword: - Keyword: + 關鍵字: + + src/app/ceph/cluster/logs/logs.component.html + 119 + Date: - Date: + 日期: + + src/app/ceph/cluster/logs/logs.component.html + 143 + Time range: - Time range: + 時間範圍: + + src/app/ceph/cluster/logs/logs.component.html + 165 + No log entries found. Please try to select different filter options. - No log entries found. Please try to select different filter options. + 找不到記錄項目。請嘗試選取其他過濾選項。 + + src/app/ceph/cluster/logs/logs.component.html + 181 + Reset filter. - Reset filter. + 重設過濾器。 + + src/app/ceph/cluster/logs/logs.component.html + 185 + Loki/Promtail service not running - Loki/Promtail service not running + + src/app/ceph/cluster/logs/logs.component.html + 190 + Please start the loki and promtail service to see these logs. - Please start the loki and promtail service to see these logs. + + src/app/ceph/cluster/logs/logs.component.html + 192 + Edit Manager module 編輯管理員模組 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 9 + The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 - The entered value is not a valid UUID, e.g.: 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + 輸入的值不是有效的 UUID,例如 67dcac9f-2c03-4d6c-b7bd-1210b3a259a8 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 56 + The entered value needs to be a valid IP address. - The entered value needs to be a valid IP address. + 輸入的值必須是有效的 IP 位址。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 59 + - The entered value is too high! It must be lower or equal to - . - - 輸入的值過大!值必須小於或等於 - 。 - + The entered value is too high! It must be lower or equal to . + 輸入的值過大!值必須小於或等於 。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 76 + - The entered value is too low! It must be greater or equal to - . - - The entered value is too low! It must be greater or equal to - . - + The entered value is too low! It must be greater or equal to . + 輸入的值過小!值必須大於或等於 。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 79 + The entered value needs to be a number. 輸入的值必須為數字。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 82 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 313 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 333 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 409 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 663 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 695 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 996 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 144 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 164 + The entered value needs to be a number or decimal. - The entered value needs to be a number or decimal. + 輸入的值必須為數字或小數。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.html + 97 + - Updated options for module ' - '. - - Updated options for module ' - '. - + Updated options for module ''. + 已更新模組 "" 的選項。 + + src/app/ceph/cluster/mgr-modules/mgr-module-form/mgr-module-form.component.ts + 125 + Always-On - Always-On + 永遠啟用 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 57 + Edit - Edit + 編輯 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 68 + + + src/app/shared/constants/app.constants.ts + 174 + Enable - Enable + 啟用 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 81 + Disable - Disable + 停用 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 88 + This Manager module is always on. - This Manager module is always on. + 此管理員模組永遠處於啟用狀態。 + + src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.ts + 143 + Status 狀態 + + src/app/ceph/cluster/monitor/monitor.component.html + 5 + + + src/app/ceph/dashboard/health/health.component.html + 3 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 38 + Cluster ID - Cluster ID + 叢集 ID + + src/app/ceph/cluster/monitor/monitor.component.html + 11 + monmap modified - monmap modified + monmap 修改時間 + + src/app/ceph/cluster/monitor/monitor.component.html + 16 + monmap epoch - monmap epoch + monmap 版本編號 + + src/app/ceph/cluster/monitor/monitor.component.html + 21 + quorum con - quorum con + 仲裁 con + + src/app/ceph/cluster/monitor/monitor.component.html + 26 + quorum mon - quorum mon + 仲裁 mon + + src/app/ceph/cluster/monitor/monitor.component.html + 31 + required con 所需 con + + src/app/ceph/cluster/monitor/monitor.component.html + 36 + required mon - required mon + 所需 mon + + src/app/ceph/cluster/monitor/monitor.component.html + 41 + In Quorum - In Quorum + 仲裁成員 + + src/app/ceph/cluster/monitor/monitor.component.html + 51 + Not In Quorum - Not In Quorum + 非仲裁成員 + + src/app/ceph/cluster/monitor/monitor.component.html + 58 + Public Address - Public Address + 公用位址 + + src/app/ceph/cluster/monitor/monitor.component.ts + 25 + + + src/app/ceph/cluster/monitor/monitor.component.ts + 49 + Open Sessions - Open Sessions + 開啟的工作階段 + + src/app/ceph/cluster/monitor/monitor.component.ts + 28 + OSD creation preview - OSD creation preview + OSD 建立預覽 + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 3 + DriveGroups - DriveGroups + DriveGroup + + src/app/ceph/cluster/osd/osd-creation-preview-modal/osd-creation-preview-modal.component.html + 10 + Attributes (OSD map) - Attributes (OSD map) + 屬性 (OSD 地圖) + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 18 + Metadata - Metadata + 中繼資料 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 26 + Metadata not available - Metadata not available + 中繼資料不可用 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 34 + Performance counter - Performance counter + 效能計數器 + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 47 + OSD details - OSD details + + src/app/ceph/cluster/osd/osd-details/osd-details.component.html + 61 + - - devices - - - devices - + devices + 裝置 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 5 + The primary storage devices. These devices contain all OSD data. - The primary storage devices. These devices contain all OSD data. + 主要儲存裝置。這些裝置包含所有 OSD 資料。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 8 + Write-Ahead-Log devices. These devices are used for BlueStore’s internal journal. It is only useful to use a WAL device if the device is faster than the primary device (e.g. NVME devices or SSDs). If there is only a small amount of fast storage available (e.g., less than a gigabyte), we recommend using it as a WAL device. 預寫式記錄裝置。這些裝置用於儲存 BlueStore 的內部記錄。僅當 WAL 裝置速度快於主要裝置 (例如 NVME 裝置或 SSD) 時,才適合使用 WAL 裝置。如果可用的快速儲存空間很少 (例如不到 1 GB),我們建議將其做為 WAL 裝置使用。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 10 + DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). - DB devices can be used for storing BlueStore’s internal metadata. It is only helpful to provision a DB device if it is faster than the primary device (e.g. NVME devices or SSD). + DB 裝置可用於儲存 BlueStore 的內部中繼資料。僅當 DB 裝置速度快於主要裝置 (例如 NVME 裝置或 SSD) 時,才適合佈建 DB 裝置。 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 12 + Add - Add + 新增 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 24 + Clear - Clear + 清除 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 36 + - Raw capacity: - - - Raw capacity: - - + Raw capacity: + 原始容量: + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.html + 47 + No available devices - No available devices + 沒有可用裝置 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 48 + Please add primary devices first - Please add primary devices first + 請先新增主要裝置 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 49 + Add devices by using filters 使用過濾器新增裝置 + + src/app/ceph/cluster/osd/osd-devices-selection-groups/osd-devices-selection-groups.component.ts + 50 + - - devices - - - devices - + devices + 裝置 + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 3 + At least one of these filters must be applied in order to proceed: - At least one of these filters must be applied in order to proceed: + 至少套用以下過濾器之一才能繼續操作: + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 14 + - Number of devices: - . Raw capacity: - . - - Number of devices: - . Raw capacity: - . - + Number of devices: . Raw capacity: . + 裝置數量:。原始容量:。 + + src/app/ceph/cluster/osd/osd-devices-selection-modal/osd-devices-selection-modal.component.html + 30,31 + Individual OSD Flags - Individual OSD Flags + 各 OSD 旗標 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 3 + Cluster-wide - Cluster-wide + 叢集範圍 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 27 + Restore previous selection - Restore previous selection + 還原之前的選擇 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.html + 40 + No Up - No Up + 禁止標示為啟動 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 28 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 39 + OSDs are not allowed to start - OSDs are not allowed to start + 不允許 OSD 啟動 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 29 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 41 + No Down 禁止標示為停機 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 36 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 45 + OSD failure reports are being ignored, such that the monitors will not mark OSDs down - OSD failure reports are being ignored, such that the monitors will not mark OSDs down + 將會忽略 OSD 故障報告,如此監控程式便不會將 OSD 標示為停機 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 37 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 47 + No In - No In + 禁止標示為加入 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 44 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 27 + OSDs that were previously marked out will not be marked back in when they start - OSDs that were previously marked out will not be marked back in when they start + 之前標示為除名的 OSD 在啟動時將不會重新標示為加入叢集 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 45 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 29 + No Out - No Out + 禁止標示為除名 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 52 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 33 + OSDs will not automatically be marked out after the configured interval - OSDs will not automatically be marked out after the configured interval + OSD 在設定的間隔過後將不會自動標示為除名 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 53 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 35 + The flag has been enabled for the entire cluster. - The flag has been enabled for the entire cluster. + 已為整個叢集啟用該旗標。 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 59 + Updated OSD Flags - Updated OSD Flags + 已更新 OSD 旗標 + + src/app/ceph/cluster/osd/osd-flags-indiv-modal/osd-flags-indiv-modal.component.ts + 126 + + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 148 + Cluster-wide OSD Flags - Cluster-wide OSD Flags + 叢集範圍的 OSD 旗標 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.html + 3 + Pause - Pause + 暫停 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 51 + Pauses reads and writes 暫停讀取和寫入 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 53 + No Scrub - No Scrub + 禁止整理 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 57 + Scrubbing is disabled - Scrubbing is disabled + 整理已停用 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 59 + No Deep Scrub - No Deep Scrub + 禁止深層整理 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 63 + Deep Scrubbing is disabled - Deep Scrubbing is disabled + 深層整理已停用 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 65 + No Backfill - No Backfill + 禁止回填 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 69 + Backfilling of PGs is suspended PG 回填已暫停 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 71 + No Rebalance - No Rebalance + 不重新平衡 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 75 + OSD will choose not to backfill unless PG is also degraded OSD 將不選擇回填,除非 PG 也已降級 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 77 + No Recover - No Recover + 禁止復原 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 81 + Recovery of PGs is suspended - Recovery of PGs is suspended + PG 復原已暫停 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 83 + Bitwise Sort - Bitwise Sort + 按位元排序 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 87 + Use bitwise sort 使用按位元排序 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 89 + Purged Snapdirs - Purged Snapdirs + 已清除 Snapdir + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 94 + OSDs have converted snapsets - OSDs have converted snapsets + OSD 已轉換 snapset + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 96 + Recovery Deletes - Recovery Deletes + 復原刪除 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 101 + Deletes performed during recovery instead of peering - Deletes performed during recovery instead of peering + 在復原期間,而非在建立互聯時執行刪除 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 103 + PG Log Hard Limit - PG Log Hard Limit + PG 記錄硬限制 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 108 + Puts a hard limit on pg log length - Puts a hard limit on pg log length + 為 pg 記錄長度設定硬限制 + + src/app/ceph/cluster/osd/osd-flags-modal/osd-flags-modal.component.ts + 110 + No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. - No devices(HDD, SSD or NVME) were found. Creation of OSDs will remain disabled until devices are added. + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 16,19 + Deployment Options - Deployment Options + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 29 + - - - - - - - - - - - - - - - - - - + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 49,53 + Advanced Mode - Advanced Mode + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 78 + Shared devices 共用裝置 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 98 + WAL slots - WAL slots + WAL 槽 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 116 + How many OSDs per WAL device. - How many OSDs per WAL device. + 一部 WAL 裝置對應的 OSD 數量。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 118 + Specify 0 to let Orchestrator backend decide it. - Specify 0 to let Orchestrator backend decide it. + 指定 0 可讓 Orchestrator 後端決定數量。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 120 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 156 + Value should be greater than or equal to 0 - Value should be greater than or equal to 0 + 值應大於或等於 0 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 132 + + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 168 + DB slots - DB slots + DB 槽 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 152 + How many OSDs per DB device. - How many OSDs per DB device. + 一部 DB 裝置對應的 OSD 數量。 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.html + 154 + Encryption 加密 + + src/app/ceph/cluster/osd/osd-form/osd-form.component.ts + 113 + OSDs List - OSDs List + OSD 清單 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 6 + OSD list - OSD list + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 49 + - - OSD(s) - - will be marked - - - if you proceed. - - - OSD(s) - - will be marked - - - if you proceed. - + OSD(s) will be marked if you proceed. + 如果繼續,OSD 將標示為。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 64,65 + - The - not safe to be - ! - - The - not safe to be - ! - + The not safe to be ! + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 79,82 + {VAR_SELECT, select, true {OSD is} other {OSDs are}} - {VAR_SELECT, select, true {OSD is} other {OSDs are}} + {VAR_SELECT, select, true {OSD} other {OSD}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 80 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 111 + - - Some PGs are currently mapped to - . - - - Some PGs are currently mapped to - . - + Some PGs are currently mapped to . + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 86,90 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 87 + {VAR_SELECT, select, true {it} other {them}} - {VAR_SELECT, select, true {it} other {them}} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 89 + - - There are no reported stats and not all PGs are active and clean. - - - There are no reported stats and not all PGs are active and clean. - + There are no reported stats and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 92,95 + - {VAR_SELECT, select, true {} other { - : }} - - {VAR_SELECT, select, true {} other { - : }} - + {VAR_SELECT, select, true {} other { : }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 93 + - - still store some PG data and not all PGs are active and clean. - - - still store some PG data and not all PGs are active and clean. - + still store some PG data and not all PGs are active and clean. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 97,100 + - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - - {VAR_SELECT, select, true {OSD} other { - : OSDs }} - + {VAR_SELECT, select, true {OSD} other { : OSDs }} + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 98 + - The - safe to destroy without reducing data durability. - - The - safe to destroy without reducing data durability. - + The safe to destroy without reducing data durability. + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 110,113 + - - OSD - - will be - - - if you proceed. - - - OSD - - will be - - - if you proceed. - + OSD will be if you proceed. + 如果繼續,OSD 將會。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 116,117 + Preserve OSD ID(s) for replacement. - Preserve OSD ID(s) for replacement. + 保留 OSD ID 以便取代。 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.html + 151 + out - out + 除名 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 167 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 58 + in - in + 加入 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 174 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + down - down + 停機 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 181 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 56 + Mark - Mark + 標示 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 190 + OSD lost - OSD lost + OSD 遺失 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 191 + marked lost - marked lost + 已標示為遺失 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 192 + Purge - Purge + 清除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 207 + + + src/app/shared/constants/app.constants.ts + 196 + OSD OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 208 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 228 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 538 + purged - purged + 已清除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 209 + destroy - destroy + 損毀 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 227 + destroyed - destroyed + 已損毀 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 229 + Flags - Flags + 旗標 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 255 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 327 + + + src/app/shared/constants/app.constants.ts + 206 + Recovery Priority - Recovery Priority + 復原優先程度 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 262 + PG scrub - PG scrub + PG 整理 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 269 + Device class - Device class + 裝置類別 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 304 + + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 464 + PGs - PGs + PG + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 316 + + + src/app/ceph/dashboard/health/health.component.ts + 226 + Read bytes 讀取位元組數 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 333 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 168 + Write bytes - Write bytes + 寫入位元組數 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 338 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 176 + Read ops 讀取操作數 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 343 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 184 + Write ops - Write ops + 寫入操作數 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 348 + + + src/app/ceph/pool/pool-list/pool-list.component.ts + 191 + - Edit OSD: - - - Edit OSD: - - + Edit OSD: + 編輯 OSD: + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 458 + Edit OSD - Edit OSD + 編輯 OSD + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 468 + - Updated OSD ' - ' - - Updated OSD ' - ' - + Updated OSD '' + 已更新 OSD "" + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 473 + - Mark OSD - - - Mark OSD - - + Mark OSD + 將 OSD 標示為 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 508 + - Mark - - - Mark - - + Mark + 標示為 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 509 + delete - delete + 刪除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 537 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + deleted - deleted + 已刪除 + + src/app/ceph/cluster/osd/osd-list/osd-list.component.ts + 539 + Advanced... - Advanced... + 進階... + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 23 + Advanced configuration options - Advanced configuration options + 進階組態選項 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.html + 28 + PG scrub options - PG scrub options + PG 整理選項 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 43 + Updated PG scrub options - Updated PG scrub options + 已更新 PG 整理選項 + + src/app/ceph/cluster/osd/osd-pg-scrub-modal/osd-pg-scrub-modal.component.ts + 59 + OSD Recovery Priority - OSD Recovery Priority + OSD 復原優先程度 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 3 + Priority - Priority + 優先程度 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 15 + Customize priority values - Customize priority values + 自訂優先程度值 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 44 + - [object Object] - [object Object] + + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 72 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + 輸入的值過大!值不得大於 。 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 76 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 輸入的值過小!值不得小於 。 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.html + 80 + Max Backfills - Max Backfills + 最大回填數 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 45 + Recovery Max Active 處於使用中狀態的最大復原操作數 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 52 + Recovery Max Single Start - Recovery Max Single Start + 單次啟動的最大復原操作數 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 59 + Recovery Sleep - Recovery Sleep + 復原操作間隔睡眠時間 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 66 + Custom - Custom + 自訂 + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 107 + + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 192 + - Updated OSD recovery speed priority ' - ' - - Updated OSD recovery speed priority ' - ' - + Updated OSD recovery speed priority '' + 已更新 OSD 復原速度優先程度 "" + + src/app/ceph/cluster/osd/osd-recv-speed-modal/osd-recv-speed-modal.component.ts + 227,229 + - Reweight OSD: - - - Reweight OSD: - - + Reweight OSD: + 重新設定 OSD 的權數: + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 3 + The value needs to be between 0 and 1. - The value needs to be between 0 and 1. + 該值必須介於 0 至 1 之間。 + + src/app/ceph/cluster/osd/osd-reweight-modal/osd-reweight-modal.component.html + 25 + - OSDs - Scrub - - OSD - 整理 - + OSDs Scrub + OSD 整理 + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + {VAR_SELECT, select, true {Deep } other {}} {VAR_SELECT, select, true {深層} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 3 + - You are about to apply a - scrub to the OSD(s): - - - . - - You are about to apply a - scrub to the OSD(s): - - - . - + You are about to apply a scrub to the OSD(s): . + 您即將對以下 OSD 套用整理:。 + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11,12 + {VAR_SELECT, select, true {deep } other {}} - {VAR_SELECT, select, true {deep } other {}} + {VAR_SELECT, select, true {深層} other {}} + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.html + 11 + - - was initialized in the following OSD(s): - - - - was initialized in the following OSD(s): - - + was initialized in the following OSD(s): + 已在下列 OSD 中啟始化 : + + src/app/ceph/cluster/osd/osd-scrub-modal/osd-scrub-modal.component.ts + 42,44 + - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - - To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the - - . - + To see all active Prometheus alerts, please provide the URL to the API of Prometheus' Alertmanager as described in the . + 若要查看所有使用中 Prometheus 警示,請依 中所述向 Prometheus 警示管理員 API 提供 URL。 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.html + 5,7 + Create Silence - Create Silence + 建立靜默 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 50 + Summary - Summary + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 65 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 62 + Severity - Severity + 嚴重性 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 70 + + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 44 + Started 已啟動 + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 95 + + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 136 + URL URL + + src/app/ceph/cluster/prometheus/active-alert-list/active-alert-list.component.ts + 101 + - Active Alerts - - - - - - - - Active Alerts - - - - - - - + Active Alerts + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 8,12 + Alerts - Alerts + 警示 + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 20 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 163 + + + src/app/core/navigation/navigation/navigation.component.html + 321 + Silences - Silences + 靜默 + + src/app/ceph/cluster/prometheus/prometheus-tabs/prometheus-tabs.component.html + 28 + - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - - To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the - - . - + To see all configured Prometheus alerts, please provide the URL to the API of Prometheus as described in the . + 若要查看所有已設定 Prometheus 警示,請依 中所述向 Prometheus 的 API 提供 URL。 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.html + 5,7 + Group - Group + 群組 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 56 + Duration - Duration + 持續時間 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 60 + Query - Query + 查詢 + + src/app/ceph/cluster/prometheus/rules-list/rules-list.component.ts + 61 + Edit - Edit + 編輯 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 29 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 670 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 283 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 433 + Delete - Delete + 刪除 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 37 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 678 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 290 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 348 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 440 + Editing a silence will expire the old silence and recreate it as a new silence - Editing a silence will expire the old silence and recreate it as a new silence + 編輯靜默將會使舊靜默過期,並將其重新建立為新靜默 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 55 + Creator - Creator + 建立者 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 63 + Comment - Comment + 備註 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 80 + Start time - Start time + 開始時間 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 99 + If the start time lies in the past the creation time will be used - If the start time lies in the past the creation time will be used + 如果開始時間為過去的時間,將使用建立時間 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 100 + Duration - Duration + 持續時間 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 120 + End time - End time + 結束時間 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 137 + Matchers 比對器 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 155 + A silence requires at least one matcher 一個靜默至少需要一個比對器 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 160 + Add matcher - Add matcher + 新增比對器 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.html + 175 + silence - silence + 靜默 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 48 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.ts + 179 + Attribute name - Attribute name + 屬性名稱 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 54 + Regular expression - Regular expression + 規則運算式 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 58 + Please add your Prometheus host to the dashboard configuration and refresh the page - Please add your Prometheus host to the dashboard configuration and refresh the page + 請將您的 Prometheus 主機新增至儀表板組態中,然後重新整理頁面 + + src/app/ceph/cluster/prometheus/silence-form/silence-form.component.ts + 205 + - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - - To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the - - . - + To enable Silences, please provide the URL to the API of the Prometheus' Alertmanager as described in the . + 若要啟用靜默,請依 中所述向 Prometheus 警示管理員 API 提供 URL。 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.html + 5,7 + Alerts Silenced - Alerts Silenced + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 125 + Created by - Created by + 建立者 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 131 + Ends - Ends + 結束 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 146 + Silence - Silence + 靜默 + + src/app/ceph/cluster/prometheus/silence-list/silence-list.component.ts + 195 + {VAR_SELECT, select, true {Edit} other {Add}} - {VAR_SELECT, select, true {Edit} other {Add}} + {VAR_SELECT, select, true {編輯} other {新增}} + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + - - Matcher - - - Matcher - + Matcher + 比對器 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 3 + -- Select an attribute to match against -- - -- Select an attribute to match against -- + -- 選取要比對的屬性 -- + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 22 + Value - Value + 值 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 38 + + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 36 + Use regular expression - Use regular expression + 使用規則運算式 + + src/app/ceph/cluster/prometheus/silence-matcher-modal/silence-matcher-modal.component.html + 72 + no spec - no spec + 無規格 + + src/app/ceph/cluster/services/placement.pipe.ts + 17 + unmanaged - unmanaged + 未受管理 + + src/app/ceph/cluster/services/placement.pipe.ts + 20 + - count: - - - count: - - + count: + 計數: + + src/app/ceph/cluster/services/placement.pipe.ts + 31 + - label: - - - label: - - + label: + 標籤: + + src/app/ceph/cluster/services/placement.pipe.ts + 34 + Service Events - Service Events + 服務事件 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html + 22 + Daemon name - Daemon name + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 146 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 64 + Last Refreshed - Last Refreshed + 上次重新整理 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 165 + + + src/app/ceph/cluster/services/services.component.ts + 166 + CPU Usage - CPU Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 171 + Memory Usage - Memory Usage + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 177 + Daemon Events - Daemon Events + 精靈事件 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 184 + Service Name - Service Name + 服務名稱 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 193 + Service Type - Service Type + 服務類型 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 199 + Service Events - Service Events + 服務事件 + + src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.ts + 205 + - - Click here - to create a new Realm/Zone Group/Zone - - - Click here - to create a new Realm/Zone Group/Zone - + Click here to create a new Realm/Zone Group/Zone + + src/app/ceph/cluster/services/service-form/service-form.component.html + 14,17 + -- Select a service type -- - -- Select a service type -- + -- 選取服務類型 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 31 + Backend Service - Backend Service + 後端服務 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 49 + -- No service available -- -- 沒有可用的服務 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 61 + -- Select an existing service -- - -- Select an existing service -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 64 + Block Pool - Block Pool + + src/app/ceph/cluster/services/service-form/service-form.component.html + 80 + An RBD application-enabled pool in which the gateway configuration can be managed. - An RBD application-enabled pool in which the gateway configuration can be managed. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 99,101 + Group Name - Group Name + + src/app/ceph/cluster/services/service-form/service-form.component.html + 113 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 16 + The name of the gateway group. - The name of the gateway group. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 123,125 + Service Name - Service Name + 服務名稱 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 138 + - - . - - - . - + . + + src/app/ceph/cluster/services/service-form/service-form.component.html + 145,146 + This service id is already in use. - This service id is already in use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 157 + MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' - MDS service id must start with a letter and contain alphanumeric characters or '.', '-', and '_' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 160 + Realm - Realm + 領域 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 168 + -- No realm available -- - -- No realm available -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 177 + Zone Group - Zone Group + 區域群組 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 190 + Zone - Zone + 區域 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 209 + Unmanaged - Unmanaged + 未受管理 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 234 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 65 + If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. - If Unmanaged is selected, the orchestrator will not stop or stop any daemons associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 235 + Count - Count + 計數 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 299 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 130 + Number of deamons that will be deployed - Number of deamons that will be deployed + + src/app/ceph/cluster/services/service-form/service-form.component.html + 307 + Port - Port + 連接埠 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 323 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 399 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 154 + The value cannot exceed 65535. - The value cannot exceed 65535. + 值不得超過 65535。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 339 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 415 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 669 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 701 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1002 + + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 170 + -- No pools available -- - -- No pools available -- + -- 沒有可用的池 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 361 + Trusted IPs - Trusted IPs + 可信的 IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 380 + Comma separated list of IP addresses. - Comma separated list of IP addresses. + IP 位址的逗號分隔清單。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 382 + - Please add the - Ceph Manager - IP addresses here, otherwise the iSCSI gateways can't be reached. - - 請在此處新增 - Ceph Manager - IP 位址,否則將無法連接至 iSCSI 閘道。 - + Please add the Ceph Manager IP addresses here, otherwise the iSCSI gateways can't be reached. + 請在此處新增 Ceph Manager IP 位址,否則將無法連接至 iSCSI 閘道。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 384 + - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - - Cluster id - - A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. - - - + Cluster id A short name identifying the SMB “cluster”. In this case a cluster is simply a management unit of one or more Samba services sharing a common configuration, and may not provide actual clustering or availability mechanisms. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 468,473 + foo - foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 480 + Config URI - Config URI + + src/app/ceph/cluster/services/service-form/service-form.component.html + 491 + Configuration source that should be loaded by the samba-container as the primary configuration file. - Configuration source that should be loaded by the samba-container as the primary configuration file. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 492,494 + rados://.smb/foo/scc.toml - rados://.smb/foo/scc.toml + + src/app/ceph/cluster/services/service-form/service-form.component.html + 501 + The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' - The value must start with either 'http:', 'https:', 'rados:' or 'rados:mon-config-key:' + + src/app/ceph/cluster/services/service-form/service-form.component.html + 508 + - Features - - Pre-defined terms enabling specific deployment characteristics. - - - - Features - - Pre-defined terms enabling specific deployment characteristics. - - - + Features Pre-defined terms enabling specific deployment characteristics. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 516,519 + - [object Object] - [object Object] + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 531,532 + Custom DNS - Custom DNS + + src/app/ceph/cluster/services/service-form/service-form.component.html + 540 + - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - - - Comma separated list of DNSs. - - - A list of IP addresses that will be used as the DNS servers for a Samba container. - - + Comma separated list of DNSs.A list of IP addresses that will be used as the DNS servers for a Samba container. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 542,544 + 192.168.76.204 - 192.168.76.204 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 552 + Join sources - Join sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 560 + - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - - - Comma separated list of URIs. - - - A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. - - + Comma separated list of URIs.A list of values that will be used to identify where authentication data that will be used to perform domain joins are located. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 562,564 + rados:mon-config-key:smb/config/foo/join1.json - rados:mon-config-key:smb/config/foo/join1.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 572 + User sources - User sources + + src/app/ceph/cluster/services/service-form/service-form.component.html + 580 + - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - - - Comma separated list of URIs. - - - A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri - - + Comma separated list of URIs.A list of pseudo-uris containing data the samba-container can use to create users (and/or groups). A ceph based samba container may typically use a rados uri or a mon config-key store uri + + src/app/ceph/cluster/services/service-form/service-form.component.html + 582,586 + rados:mon-config-key:smb/config/foo/join2.json - rados:mon-config-key:smb/config/foo/join2.json + + src/app/ceph/cluster/services/service-form/service-form.component.html + 594 + Ceph users - Ceph users + + src/app/ceph/cluster/services/service-form/service-form.component.html + 602 + - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - - - Comma separated list of Ceph users. - - - A list of cephx user names that the Samba Containers may use. - - + Comma separated list of Ceph users.A list of cephx user names that the Samba Containers may use. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 604,606 + client.smb.fs.cluster.foo - client.smb.fs.cluster.foo + + src/app/ceph/cluster/services/service-form/service-form.component.html + 614 + Virtual IP - Virtual IP + 虛擬 IP + + src/app/ceph/cluster/services/service-form/service-form.component.html + 628 + The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. - The virtual IP address and subnet (in CIDR notation) where the ingress service will be available. + 可以使用輸入服務的虛擬 IP 位址和子網路 (以 CIDR 表示法表示)。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 630 + Frontend Port - Frontend Port + 前端連接埠 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 649 + The port used to access the ingress service. - The port used to access the ingress service. + 用於存取輸入服務的連接埠。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 651 + Monitor Port - Monitor Port + 監控程式連接埠 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 681 + The port used by haproxy for load balancer status. - The port used by haproxy for load balancer status. + HAProxy 用於實現負載平衡狀態的連接埠。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 683 + CIDR Networks - CIDR Networks + CIDR 網路 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 712 + A list of networks to identify which network interface to use for the virtual IP address. - A list of networks to identify which network interface to use for the virtual IP address. + 用於識別虛擬 IP 位址所用的網路介面的網路清單。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 714 + Version - Version + 版本 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 732 + -- Select SNMP version -- - -- Select SNMP version -- + -- 選取 SNMP 版本 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 740 + Destination - Destination + 目標 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 753 + Must be of the format hostname:port. - 必須採用 "主機名稱:連接埠" 格式。 + 必須採用 "主機名稱:連接埠" 格式。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 755 + - The value does not match the pattern: - hostname:port - - - The value does not match the pattern: - hostname:port - - + The value does not match the pattern: hostname:port + 該值與模式主機名稱:連接埠不相符 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 768 + Engine Id - Engine Id + 引擎 ID + + src/app/ceph/cluster/services/service-form/service-form.component.html + 776 + Unique identifier for the device (in hex). - Unique identifier for the device (in hex). + 裝置的唯一識別碼 (以十六進位表示)。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 778 + - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - - The value does not match the pattern: - Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. - - + The value does not match the pattern: Must be in hexadecimal and length must be multiple of 2 with min value = 10 amd max value = 64. + 該值與以下模式不相符:必須以十六進位表示且長度必須為 2 的倍數,最小值為 10,最大值為 64。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 791 + Auth Protocol - Auth Protocol + 驗證通訊協定 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 799 + -- Select auth protocol -- -- 選取驗證通信協定 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 806 + Privacy Protocol - Privacy Protocol + 隱私通訊協定 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 822 + -- Select privacy protocol -- - -- Select privacy protocol -- + -- 選取隱私通訊協定 -- + + src/app/ceph/cluster/services/service-form/service-form.component.html + 829 + Credentials - Credentials + 身分證明 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 839 + SNMP Community - SNMP Community + SNMP 社群 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 845 + Username - Username + 使用者名稱 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 862 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 43 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 16 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 14 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 12 + + + src/app/core/auth/login/login.component.html + 13 + + + src/app/core/auth/user-form/user-form.component.html + 17 + Encryption - Encryption + 加密 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 896 + + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1049 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 20 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 294 + SSL SSL + + src/app/ceph/cluster/services/service-form/service-form.component.html + 922 + Certificate - Certificate + 證書 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 932 + The SSL certificate in PEM format. - The SSL certificate in PEM format. + PEM 格式的 SSL 證書。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 933 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 180 + Invalid SSL certificate. SSL 證書無效。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 948 + Private key - Private key + 私密金鑰 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 957 + The SSL private key in PEM format. - The SSL private key in PEM format. + PEM 格式的 SSL 私密金鑰。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 958 + Invalid SSL private key. - Invalid SSL private key. + SSL 私密金鑰無效。 + + src/app/ceph/cluster/services/service-form/service-form.component.html + 973 + Grafana Port - Grafana Port + + src/app/ceph/cluster/services/service-form/service-form.component.html + 982 + The default port used by grafana. - The default port used by grafana. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 984 + - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - - - Grafana Password - - The password of the default Grafana Admin. Set once on first-run. - - + Grafana PasswordThe password of the default Grafana Admin. Set once on first-run. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1013,1014 + Enables mutual TLS (mTLS) between the client and the gateway server. - Enables mutual TLS (mTLS) between the client and the gateway server. + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1050 + Root CA certificate - Root CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1060 + Client CA certificate - Client CA certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1080 + Client key - Client key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1100 + Gateway server certificate - Gateway server certificate + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1120 + Gateway server key - Gateway server key + + src/app/ceph/cluster/services/service-form/service-form.component.html + 1140 + service - service + 服務 + + src/app/ceph/cluster/services/service-form/service-form.component.ts + 113 + Placement - Placement + 放置 + + src/app/ceph/cluster/services/services.component.ts + 154 + Running - Running + 執行中 + + src/app/ceph/cluster/services/services.component.ts + 160 + - Step - of 2: Telemetry report configuration - - Step - of 2: Telemetry report configuration - + Step of 2: Telemetry report configuration + 第 步 (共 2 步):遙測報告組態 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 12 + - The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. - This data is visualized on - public dashboards - that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. - - The data being reported does - not - contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to - and - (device report). - - 遙測模組會將關於此 Ceph 叢集的匿名資料傳回給 Ceph 開發人員,以協助其瞭解 Ceph 的使用情況,以及使用者可能遇到了什麼問題。 - 這些資料直觀呈現在 - 公用儀表板 - 上,社群可透過該儀表板迅速瞭解以下匯總統計資訊:所報告的叢集數量,叢集的總容量和 OSD 計數,以及版本配送趨勢。 - - 報告的資料 - 不會 - 包含池名稱、物件名稱、物件內容、主機名稱或裝置序號等任何敏感性資料。它包含關於以下資訊的計數器和統計資料:叢集的部署方式、Ceph 版本、主機分佈,以及有助於專案更好地瞭解 Ceph 使用情況的其他參數。這些資料會以安全方式傳送至 - 和 - (裝置報告)。 - + The telemetry module sends anonymous data about this Ceph cluster back to the Ceph developers to help understand how Ceph is used and what problems users may be experiencing. This data is visualized on public dashboards that allow the community to quickly see summary statistics on how many clusters are reporting, their total capacity and OSD count, and version distribution trends. The data being reported does not contain any sensitive data like pool names, object names, object contents, hostnames, or device serial numbers. It contains counters and statistics on how the cluster has been deployed, the version of Ceph, the distribution of the hosts and other parameters which help the project to gain a better understanding of the way Ceph is used. The data is sent secured to and (device report). + 遙測模組會將關於此 Ceph 叢集的匿名資料傳回給 Ceph 開發人員,以協助其瞭解 Ceph 的使用情況,以及使用者可能遇到了什麼問題。這些資料直觀呈現在公用儀表板上,社群可透過該儀表板迅速瞭解以下匯總統計資訊:所報告的叢集數量,叢集的總容量和 OSD 計數,以及版本配送趨勢。報告的資料不會包含池名稱、物件名稱、物件內容、主機名稱或裝置序號等任何敏感性資料。它包含關於以下資訊的計數器和統計資料:叢集的部署方式、Ceph 版本、主機分佈,以及有助於專案更好地瞭解 Ceph 使用情況的其他參數。這些資料會以安全方式傳送至 和 (裝置報告)。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 14,23 + Deactivate - Deactivate + 停用 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 29 + Channels - Channels + 通道 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 31 + - The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. - 遙測報告細分為數個 "通道",每個通道包含不同類型的資訊,您可以在下方進行設定。 + The telemetry report is broken down into several "channels", each with a different type of information that can be configured below. + 遙測報告細分為數個 "通道",每個通道包含不同類型的資訊,您可以在下方進行設定。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 32,33 + Basic - Basic + 基本 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 39 + Includes basic information about the cluster: 包含關於叢集的基本資訊: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 41 + Capacity of the cluster - Capacity of the cluster + 叢集容量 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 43 + Number of monitors, managers, OSDs, MDSs, object gateways, or other daemons 監控程式、管理員、OSD、MDS、物件閘道或其他精靈的數量 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 44 + Software version currently being used - Software version currently being used + 目前所使用的軟體版本 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 45 + Number and types of RADOS pools and CephFS file systems - Number and types of RADOS pools and CephFS file systems + RADOS 池和 CephFS 檔案系統的數量及類型 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 46 + Names of configuration options that have been changed from their default (but not their values) - Names of configuration options that have been changed from their default (but not their values) + 預設值已變更的組態選項名稱 (而不是其值) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 47 + Crash - Crash + 當機 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 67 + Includes information about daemon crashes: 包含關於精靈當機的資訊: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 69 + Type of daemon 精靈類型 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 71 + Version of the daemon - Version of the daemon + 精靈版本 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 72 + Operating system (OS distribution, kernel version) - Operating system (OS distribution, kernel version) + 作業系統 (作業系統發行套件、內核版本) + + src/app/ceph/cluster/telemetry/telemetry.component.html + 73 + Stack trace identifying where in the Ceph code the crash occurred - Stack trace identifying where in the Ceph code the crash occurred + 識別 Ceph 代碼中發生當機的位置的堆疊追蹤 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 74 + Device - Device + 裝置 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 94 + Includes information about device metrics like anonymized SMART metrics. - Includes information about device metrics like anonymized SMART metrics. + 包含關於裝置度量標準 (例如匿名 SMART 度量標準) 的資訊。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 96 + Ident - Ident + 身分 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 115 + Includes user-provided identifying information about the cluster: - Includes user-provided identifying information about the cluster: + 包含使用者提供的關於叢集的識別資訊: + + src/app/ceph/cluster/telemetry/telemetry.component.html + 117 + Perf - Perf + + src/app/ceph/cluster/telemetry/telemetry.component.html + 141 + Includes various performance metrics of a cluster. - Includes various performance metrics of a cluster. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 143 + Contact Information - Contact Information + 聯絡資訊 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 160 + Submitting any contact information is completely optional and disabled by default. - Submitting any contact information is completely optional and disabled by default. + 提交任何聯絡資訊完全是選擇性操作,預設已停用。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 161 + Contact - Contact + 聯絡 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 166 + My first Ceph cluster - My first Ceph cluster + 我的首個 Ceph 叢集 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 184 + Organization - Organization + 組織 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 191 + Organization name 組織名稱 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 197 + Interval - Interval + 間隔 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 206 + The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. - The module compiles and sends a new report every 24 hours by default. You can adjust this interval by setting a different number of hours. + 模組預設每 24 小時編譯並傳送一次新報告。您可以設定不同的小時數以調整此間隔。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 207,208 + The entered value is too low! It must be greater or equal to 8. 輸入的值過小!值必須大於或等於 8。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 218 + Proxy 代理 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 224 + If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 - If the cluster cannot directly connect to the configured telemetry endpoint (default telemetry.ceph.com), you can configure a HTTP/HTTPS proxy server by e.g. adding https://10.0.0.1:8080 + 如果叢集無法直接連接至設定的遙測端點 (預設為 telemetry.ceph.com),您可以設定 HTTP/HTTPS 代理伺服器,例如,透過新增 https://10.0.0.1:8080 來設定 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 226,228 + You can also include a user:pass if needed e.g. https://ceph:telemetry@10.0.0.1:8080 如果需要,您還可以包含 user:pass,例如 https://ceph:telemetry@10.0.0.1:8080 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 229 + - - Note: - By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. - - - 注意: - 按一下 "下一步" 後,您首先會看到報告內容預覽,然後才能啟用資料的自動提交功能。 - + Note: By clicking 'Next' you will first see a preview of the report content before you can activate the automatic submission of your data. + 注意:按一下 "下一步" 後,您首先會看到報告內容預覽,然後才能啟用資料的自動提交功能。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 241,242 + - Step - of 2: Telemetry report preview - - Step - of 2: Telemetry report preview - + Step of 2: Telemetry report preview + 第 步 (共 2 步):遙測報告預覽 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 265 + - Report ID - - - - Report ID - - - + Report ID + 報告 ID + + src/app/ceph/cluster/telemetry/telemetry.component.html + 271,274 + A randomized UUID to identify a particular cluster over the course of several telemetry reports. - A randomized UUID to identify a particular cluster over the course of several telemetry reports. + 隨機指定的 UUID,用於在數個遙測報告中識別特定的叢集。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 273 + - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - - Report preview - - Note: Please select 'Download' to view the full report, including metrics from the perf channel. - - - + Report preview Note: Please select 'Download' to view the full report, including metrics from the perf channel. + + src/app/ceph/cluster/telemetry/telemetry.component.html + 289,293 + The actual telemetry data that will be submitted. - The actual telemetry data that will be submitted. + 將要提交的實際遙測資料。 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 291 + - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - - I agree to my telemetry data being submitted under the - Community Data License Agreement - Sharing - Version 1.0 - - + I agree to my telemetry data being submitted under the Community Data License Agreement - Sharing - Version 1.0 + 我同意依據社群資料授權合約 - 共用 - 1.0 版本提交我的遙測資料 + + src/app/ceph/cluster/telemetry/telemetry.component.html + 327 + The Telemetry module has been configured and activated successfully. - The Telemetry module has been configured and activated successfully. + 已成功設定並啟用遙測模組。 + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 288 + An Error occurred while updating the Telemetry module configuration. Please Try again - An Error occurred while updating the Telemetry module configuration. Please Try again + 更新遙測模組組態時發生錯誤。請重試 + + src/app/ceph/cluster/telemetry/telemetry.component.ts + 295,296 + Upgrade Cluster - Upgrade Cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 3 + Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. - Make sure to put the correct image. Passing an incorrect image can lead the cluster into an undesired state. + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 16 + New Version - New Version + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 22 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 5 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 7 + -- No version available -- - -- No version available -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 33 + -- Select a version -- - -- Select a version -- + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 36 + Use image - Use image + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.html + 58 + Started upgrading the cluster - Started upgrading the cluster + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 63 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 129 + Failed to start the upgrade - Failed to start the upgrade + + src/app/ceph/cluster/upgrade/upgrade-form/upgrade-start-modal.component.ts + 70 + + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 122 + - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 6,9 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 14,15 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 39,41 + - [object Object] - [object Object] + + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 43,45 + Back - Back + 返回 + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 51 + Pause - Pause + 暫停 + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 56 + Resume - Resume + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 61 + Stop - Stop + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 66 + Cluster logs - Cluster logs + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.html + 72 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 121 + Failed to pause the upgrade - Failed to pause the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 75 + The upgrade is paused - The upgrade is paused + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 80 + Failed to resume the upgrade - Failed to resume the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 95 + Upgrade is resumed - Upgrade is resumed + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 101 + Failed to stop the upgrade - Failed to stop the upgrade + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 126 + The upgrade is stopped - The upgrade is stopped + + src/app/ceph/cluster/upgrade/upgrade-progress/upgrade-progress.component.ts + 131 + - - - Upgrade is paused - % - - - - Upgrade is paused - % - + Upgrade is paused % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 15,16 + View Details... - View Details... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 19 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 225 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 24,26 + Current Version - Current Version + + src/app/ceph/cluster/upgrade/upgrade.component.html + 32 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 34 + Cluster Status - Cluster Status + 叢集狀態 + + src/app/ceph/cluster/upgrade/upgrade.component.html + 43 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 45 + + + src/app/ceph/dashboard/health/health.component.html + 14 + MGR Count - MGR Count + + src/app/ceph/cluster/upgrade/upgrade.component.html + 71 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 73 + Cluster FSID - Cluster FSID + + src/app/ceph/cluster/upgrade/upgrade.component.html + 91 + Release Image - Release Image + + src/app/ceph/cluster/upgrade/upgrade.component.html + 96 + Registry - Registry + + src/app/ceph/cluster/upgrade/upgrade.component.html + 99 + Daemon versions - Daemon versions + + src/app/ceph/cluster/upgrade/upgrade.component.html + 106 + - Upgrade to - - - Upgrade to - - + Upgrade to + + src/app/ceph/cluster/upgrade/upgrade.component.html + 142,143 + Select another version... - Select another version... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 146 + - - - Cluster is up-to-date - - - - Cluster is up-to-date - + Cluster is up-to-date + + src/app/ceph/cluster/upgrade/upgrade.component.html + 157,160 + Upgrade using custom image... - Upgrade using custom image... + + src/app/ceph/cluster/upgrade/upgrade.component.html + 163 + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 206 + - Checking for upgrades - - - - Checking for upgrades - - - + Checking for upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.html + 180,183 + - Fetching registry informations - - - - Fetching registry informations - - - + Fetching registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 190,193 + - - - - - - - - - - + + + src/app/ceph/cluster/upgrade/upgrade.component.html + 201,203 + - - - Failed to fetch registry informations - - - - Failed to fetch registry informations - + Failed to fetch registry informations + + src/app/ceph/cluster/upgrade/upgrade.component.html + 213,215 + - - - Upgrade in progress - % - - - - Upgrade in progress - % - + Upgrade in progress % + + src/app/ceph/cluster/upgrade/upgrade.component.html + 221,222 + Not retrieving upgrades - Not retrieving upgrades + + src/app/ceph/cluster/upgrade/upgrade.component.ts + 94 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 5 + - - - - - - : - - - - used of - - - - - - - - - - - : - - - - used of - - - - - + : used of + + src/app/ceph/dashboard-v3/dashboard-area-chart/dashboard-area-chart.component.html + 8,18 + - Used: - - - Used: - - + Used: + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 96 + - Warning: - % - - Warning: - % - + Warning: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 102 + - Danger: - % - - Danger: - % - + Danger: % + + src/app/ceph/dashboard-v3/dashboard-pie/dashboard-pie.component.ts + 107,109 + Last 5 minutes 過去 5 分鐘 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 20 + + + src/app/shared/components/grafana/grafana.component.ts + 46 + Last 15 minutes - Last 15 minutes + 過去 15 分鐘 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 24 + + + src/app/shared/components/grafana/grafana.component.ts + 50 + Last 30 minutes - Last 30 minutes + 過去 30 分鐘 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 28 + + + src/app/shared/components/grafana/grafana.component.ts + 54 + Last 1 hour - Last 1 hour + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 32 + Last 3 hours 過去 3 小時 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 36 + + + src/app/shared/components/grafana/grafana.component.ts + 62 + Last 6 hours - Last 6 hours + 過去 6 小時 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 40 + + + src/app/shared/components/grafana/grafana.component.ts + 66 + Last 12 hours - Last 12 hours + 過去 12 小時 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 44 + + + src/app/shared/components/grafana/grafana.component.ts + 70 + Last 24 hours - Last 24 hours + 過去 24 小時 + + src/app/ceph/dashboard-v3/dashboard-time-selector/dashboard-time-selector.component.ts + 48 + + + src/app/shared/components/grafana/grafana.component.ts + 74 + - [object Object] - [object Object] + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 18,19 + View alerts - View alerts + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 131,133 + Cluster 叢集 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 153 + + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 156 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 17 + Danger - Danger + 危險 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 168 + Warning 警告 + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 179 + - Active since: - - - Active since: - - + Active since: + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 286,287 + - - - See - Logs - for more details. - - - - See - Logs - for more details. - + See Logs for more details. + + src/app/ceph/dashboard-v3/dashboard/dashboard-v3.component.html + 300 + + + src/app/ceph/dashboard/health/health.component.html + 230 + + + src/app/ceph/shared/health-checks/health-checks.component.html + 26 + Monitors - Monitors + 監控程式 + + src/app/ceph/dashboard/health/health.component.html + 48 + + + src/app/core/navigation/navigation/navigation.component.html + 147 + OSDs - OSDs + OSD + + src/app/ceph/dashboard/health/health.component.html + 57 + + + src/app/core/navigation/navigation/navigation.component.html + 129 + Managers - Managers + 管理員 + + src/app/ceph/dashboard/health/health.component.html + 69 + Object Gateways - Object Gateways + 物件閘道 + + src/app/ceph/dashboard/health/health.component.html + 81 + Metadata Servers - Metadata Servers + 中繼資料伺服器 + + src/app/ceph/dashboard/health/health.component.html + 90 + iSCSI Gateways - iSCSI Gateways + iSCSI 閘道 + + src/app/ceph/dashboard/health/health.component.html + 103 + Capacity - Capacity + 容量 + + src/app/ceph/dashboard/health/health.component.html + 117 + Raw Capacity 原始容量 + + src/app/ceph/dashboard/health/health.component.html + 122 + PG Status PG 狀態 + + src/app/ceph/dashboard/health/health.component.html + 144 + PGs per OSD - PGs per OSD + 每個 OSD 的 PG 數 + + src/app/ceph/dashboard/health/health.component.html + 176 + Client Read/Write - Client Read/Write + 用戶端讀取/寫入 + + src/app/ceph/dashboard/health/health.component.html + 188 + Client Throughput 用戶端輸送量 + + src/app/ceph/dashboard/health/health.component.html + 199 + Recovery Throughput - Recovery Throughput + 復原輸送量 + + src/app/ceph/dashboard/health/health.component.html + 210 + Scrubbing - Scrubbing + 正在整理 + + src/app/ceph/dashboard/health/health.component.html + 218 + Reads - Reads + 讀取 + + src/app/ceph/dashboard/health/health.component.ts + 113 + + + src/app/ceph/dashboard/health/health.component.ts + 138 + /s /s + + src/app/ceph/dashboard/health/health.component.ts + 115 + + + src/app/ceph/dashboard/health/health.component.ts + 121 + + + src/app/ceph/dashboard/health/health.component.ts + 140 + + + src/app/ceph/dashboard/health/health.component.ts + 146 + + + src/app/ceph/dashboard/health/health.component.ts + 154 + Writes - Writes + 寫入 + + src/app/ceph/dashboard/health/health.component.ts + 119 + + + src/app/ceph/dashboard/health/health.component.ts + 144 + Avail. - Avail. + 可用 + + src/app/ceph/dashboard/health/health.component.ts + 185 + Clean 乾淨 + + src/app/ceph/dashboard/health/health.component.ts + 220 + Working - Working + 工作中 + + src/app/ceph/dashboard/health/health.component.ts + 221 + Unknown - Unknown + 未知 + + src/app/ceph/dashboard/health/health.component.ts + 223 + + + src/app/ceph/shared/device-list/device-list.component.ts + 60 + Healthy - Healthy + 狀態良好 + + src/app/ceph/dashboard/health/health.component.ts + 251 + Misplaced - Misplaced + 位置不正確 + + src/app/ceph/dashboard/health/health.component.ts + 252 + Degraded - Degraded + 已降級 + + src/app/ceph/dashboard/health/health.component.ts + 253 + Unfound - Unfound + 未找到 + + src/app/ceph/dashboard/health/health.component.ts + 254 + objects - objects + 物件 + + src/app/ceph/dashboard/health/health.component.ts + 266 + - For an overview of - widgets click - - - - For an overview of - widgets click - - - + For an overview of widgets click + + src/app/ceph/dashboard/info-group/info-group.component.html + 6,9 + here - here + 此處 + + src/app/ceph/dashboard/info-group/info-group.component.html + 8 + up up + + src/app/ceph/dashboard/mds-summary.pipe.ts + 24 + + + src/app/ceph/dashboard/osd-summary.pipe.ts + 44 + no filesystems - no filesystems + 無檔案系統 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 25 + + + src/app/ceph/dashboard/mds-summary.pipe.ts + 27 + active - active + 使用中 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 39 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 29 + standby - standby + 待命 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 40 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 41 + standby daemons - standby daemons + 待命精靈 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 45 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 25 + active daemon - active daemon + 使用中的精靈 + + src/app/ceph/dashboard/mds-summary.pipe.ts + 51 + + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 17 + + + src/app/shared/pipes/mgr-summary.pipe.ts + 21 + standbyReplay standbyReplay + + src/app/ceph/dashboard/mds-summary.pipe.ts + 54 + n/a - n/a + 無 + + src/app/ceph/dashboard/mgr-summary.pipe.ts + 14 + + + src/app/shared/pipes/not-available.pipe.ts + 11 + - - (quorum - ) - - - (仲裁 - ) - + (quorum ) + (仲裁 ) + + src/app/ceph/dashboard/mon-summary.pipe.ts + 12,13 + total - total + 總計 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 35 + near full 將滿 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 72 + full - full + 已滿 + + src/app/ceph/dashboard/osd-summary.pipe.ts + 84 + - Clients ( - ) - - Clients ( - ) - + Clients () + 用戶端 () + + src/app/ceph/nfs/nfs-details/nfs-details.component.html + 16 + Addresses - Addresses + 位址 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 23 + Access Type - Access Type + 存取類型 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 28 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 52 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 141 + Squash Squash + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 33 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 53 + Cluster 叢集 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 47 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 130 + NFS Protocol - NFS Protocol + NFS 通訊協定 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 48 + Pseudo - Pseudo + 虛擬 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 51 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 125 + Storage Backend - Storage Backend + 儲存後端 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 135 + CephFS CephFS + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 58 + + + src/app/shared/api/nfs.service.ts + 38 + CephFS User CephFS 使用者 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 59 + CephFS Filesystem - CephFS Filesystem + CephFS 檔案系統 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 60 + Security Label - Security Label + 安全標籤 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 61 + Object Gateway - Object Gateway + 物件閘道 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 63 + + + src/app/shared/api/nfs.service.ts + 43 + Object Gateway User - Object Gateway User + 物件閘道使用者 + + src/app/ceph/nfs/nfs-details/nfs-details.component.ts + 64 + Any client can access - Any client can access + 任何用戶端均可存取 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 11 + Addresses - Addresses + 位址 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 31 + Must contain one or more comma-separated values - Must contain one or more comma-separated values + 必須包含一或多個逗號分隔值 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 44 + For example: - For example: + 例如︰ + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 46 + Access Type - Access Type + 存取類型 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 56 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 306 + Squash Squash + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 77 + + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 342 + Add clients 新增用戶端 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.html + 103 + (inherited from global config) - (inherited from global config) + (自全域組態繼承) + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 43 + -- Select the access type -- -- 選取存取類型 -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 45 + inherited from global config - inherited from global config + 自全域組態繼承 + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 57 + -- Select what kind of user id squashing is performed -- - -- Select what kind of user id squashing is performed -- + -- 選取執行哪種類型的使用者 ID 匿名存取 -- + + src/app/ceph/nfs/nfs-form-client/nfs-form-client.component.ts + 59 + -- No cluster available -- - -- No cluster available -- + -- 沒有可用的叢集 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 29 + -- Select the cluster -- - -- Select the cluster -- + -- 選取叢集 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 32 + This is the ID of an NFS Service. - This is the ID of an NFS Service. + 這是 NFS 服務的 ID。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 37 + - This field is required. To create a new NFS cluster, - add a new NFS Service - . - - This field is required. To create a new NFS cluster, - add a new NFS Service - . - + This field is required. To create a new NFS cluster, add a new NFS Service. + 此欄位為必填欄位。若要建立新的 NFS 叢集,請新增新的 NFS 服務。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 41,43 + Volume 磁碟區 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 54 + -- No CephFS filesystem available -- - -- No CephFS filesystem available -- + -- 沒有可用的 CephFS 檔案系統 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 66 + -- Select the CephFS filesystem -- - -- Select the CephFS filesystem -- + -- 選取 CephFS 檔案系統 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 69 + Security Label - Security Label + 安全標籤 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 86 + Enable security label - Enable security label + 啟用安全標籤 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 97 + Subvolume Group - Subvolume Group + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 119 + -- Select the CephFS subvolume group -- - -- Select the CephFS subvolume group -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 131 + Subvolume - Subvolume + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 144 + -- No CephFS subvolume available -- - -- No CephFS subvolume available -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 158 + -- Select the CephFS subvolume -- - -- Select the CephFS subvolume -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 161 + CephFS Path - CephFS Path + CephFS 路徑 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 178 + A path in a CephFS file system. - A path in a CephFS file system. + CephFS 檔案系統中的路徑。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 189 + - Export on CephFS volume " - / - " not allowed. - - Export on CephFS volume " - / - " not allowed. - + Export on CephFS volume "/" not allowed. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 196 + Path need to start with a '/' and can be followed by a word - Path need to start with a '/' and can be followed by a word + 路徑必須以 "/" 開頭,後面可接單字 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 199 + The path does not exist in the selected volume. - The path does not exist in the selected volume. + 所選磁碟區中不存在該路徑。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 202 + Bucket - Bucket + 桶 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 212 + - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - - The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, - create a new bucket - . - + The bucket does not exist or is not in the default realm (if multiple realms are configured). To continue, create a new bucket. + 桶不存在或不在預設領域中 (如果設定了多個領域)。若要繼續,請建立新桶。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 228,230 + NFS Protocol - NFS Protocol + NFS 通訊協定 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 238 + NFSv3 NFSv3 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 248 + NFSv4 NFSv4 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 258 + Pseudo - Pseudo + 虛擬 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 274 + The position this export occupies in the Pseudo FS. It must be unique. - The position this export occupies in the Pseudo FS. It must be unique. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 284 + By using different Pseudo options, the same Path may be exported multiple times. 透過使用不同虛擬選項,可將同一路徑輸出多次。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 285 + The pseudo is already in use by another export. - The pseudo is already in use by another export. + 另一個輸出中已使用該虛擬。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 292 + Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). - Pseudo needs to start with a '/' and can't contain any of the following: >, <, |, &, ( or ). + 虛擬必須以 "/" 開頭,並且不能包含以下任何字元:>、<、|、&、( 或 )。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 295 + Pseudo path should be an absolute path and it cannot be just '/' - Pseudo path should be an absolute path and it cannot be just '/' + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 298 + -- No access type available -- - -- No access type available -- + -- 沒有可用的存取類型 -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 318 + - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - - The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the - - for details before enabling write access. - + The Object Gateway NFS backend has a number of limitations which will seriously affect applications writing to the share. Please consult the for details before enabling write access. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 328,331 + -- No squash available -- - -- No squash available -- + -- 沒有可用的 squash -- + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 354 + Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. - Maps the root user on the NFS client to an anonymous user/group with limited privileges. This prevents a root client user from having total control over the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 361 + Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. - Maps the root user on the NFS client to an anonymous user/group with limited privileges, preventing root access but retaining non-root group privileges. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 364 + Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. - Maps all users on the NFS client to an anonymous user/group with limited privileges, ensuring that no user has special privileges on the NFS export. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 367 + Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. - Allows the root user on the NFS client to retain full root privileges on the NFS server, which may pose security risks. + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 370 + Transport Protocol - Transport Protocol + 傳輸通訊協定 + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 383 + UDP UDP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 393 + TCP TCP + + src/app/ceph/nfs/nfs-form/nfs-form.component.html + 403 + NFS export - NFS export + NFS 輸出 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 109 + + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 201 + - - backend is not available. - - - - backend is not available. - - + backend is not available. + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 434 + Error while retrieving paths. - Error while retrieving paths. + 擷取路徑時出錯。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 492 + Error while retrieving bucket names. - Error while retrieving bucket names. + 擷取桶名稱時出錯。 + + src/app/ceph/nfs/nfs-form/nfs-form.component.ts + 504 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 168 + CephFS CephFS + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 27 + Object Gateway - Object Gateway + 物件閘道 + + src/app/ceph/nfs/nfs-list/nfs-list.component.html + 29 + Bucket - Bucket + 桶 + + src/app/ceph/nfs/nfs-list/nfs-list.component.ts + 119 + + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 99 + Performance counters not available - Performance counters not available + 沒有可用的效能計數器 + + src/app/ceph/performance-counter/table-performance-counter/table-performance-counter.component.html + 14 + The name can only consist of alphanumeric characters, dashes and underscores. - The name can only consist of alphanumeric characters, dashes and underscores. + 名稱只能由英數字元、破折號和底線組成。 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 29 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 27 + The chosen erasure code profile name is already in use. - The chosen erasure code profile name is already in use. + 所選的糾刪碼設定檔名稱已在使用中。 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 32 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 30 + Root - Root + 根 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 40 + Failure domain type - Failure domain type + 故障網域類型 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 68 + Device class - Device class + 裝置類別 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 96 + All devices - All devices + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 104 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 420 + - [object Object] - [object Object] + + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.html + 111 + Crush Rule Crush 規則 + + src/app/ceph/pool/crush-rule-form-modal/crush-rule-form-modal.component.ts + 42 + Plugin - Plugin + 外掛程式 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 38 + Data chunks (k) - Data chunks (k) + 資料區塊 (k) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 65 + Must be equal to or greater than 2. - Must be equal to or greater than 2. + 必須大於或等於 2。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 83 + - Chunks (k+m) have exceeded the available OSDs of - . - - Chunks (k+m) have exceeded the available OSDs of - . - + Chunks (k+m) have exceeded the available OSDs of . + 區塊 (k+m) 已超過 的可用 OSD 數量。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 86 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 123 + For an equal distribution k has to be a multiple of (k+m)/l. - For an equal distribution k has to be a multiple of (k+m)/l. + 若要實現均衡分佈,k 必須為 (k+m)/l 的倍數。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 89 + K has to be equal to or greater than m in order to recover data correctly through c. - K has to be equal to or greater than m in order to recover data correctly through c. + K 必須大於或等於 m 才能透過 c 正確復原資料。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 92 + - Distribution factor: - - - Distribution factor: - - + Distribution factor: + 分佈係數: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 95 + Coding chunks (m) - Coding chunks (m) + 編碼區塊 (m) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 103 + Must be equal to or greater than 1. - Must be equal to or greater than 1. + 必須大於或等於 1。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 120 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 146 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 223 + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 382 + Durability estimator (c) - Durability estimator (c) + 持久性估值 (c) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 132 + C has to be equal to or lower than m as m defines the amount of chunks that can be used. - C has to be equal to or lower than m as m defines the amount of chunks that can be used. + C 必須小於或等於 m,因為 m 定義可以使用的區塊數量。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 149 + Helper chunks (d) 輔助程式區塊 (d) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 158 + Set d manually or use the plugin's default calculation that maximizes d. - Set d manually or use the plugin's default calculation that maximizes d. + 以手動訪視設定 d,或使用外掛程式的預設計算值 (最大值為 d)。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 172 + D is automatically updated on k and m changes - D is automatically updated on k and m changes + D 會在 k 和 m 變更時自動更新 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 182 + - D can be set from - to - - - D 可設定為 - 至 - - + D can be set from to + D 可設定為 至 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 187 + - D can only be set to - - - D can only be set to - - + D can only be set to + D 僅可設定為 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 190 + - D has to be greater than k ( - ). - - D 必須大於 k ( - )。 - + D has to be greater than k (). + D 必須大於 k ()。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 194 + - D has to be lower than k + m ( - ). - - D has to be lower than k + m ( - ). - + D has to be lower than k + m (). + D 必須小於 k + m ()。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 197 + Locality (l) - Locality (l) + 本地性 (l) + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 206 + Can't split up chunks (k+m) correctly with the current locality. - Can't split up chunks (k+m) correctly with the current locality. + 無法使用目前的本地性正確分割 (k+m) 個區塊。 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 226 + - Locality groups: - - - Locality groups: - - + Locality groups: + 本地性群組: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 228 + Crush failure domain - Crush failure domain + CRUSH 故障網域 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 235 + Crush num failure domain - Crush num failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 258 + This field is required when crush osds per failure domain is set! - This field is required when crush osds per failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 271 + Crush osds per failure domain - Crush osds per failure domain + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 278 + This field is required when crush num failure domain is set! - This field is required when crush num failure domain is set! + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 291 + Crush Locality - Crush Locality + CRUSH 本地性 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 299 + None - None + 無 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 313 + Scalar mds Scalar mds + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 326 + Technique - Technique + 方法 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 347 + Packetsize - Packetsize + 封包大小 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 368 + Crush root - Crush root + CRUSH 根 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 389 + Crush device class - Crush device class + CRUSH 裝置類別 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 412 + - [object Object] - [object Object] + + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 427 + - Available OSDs: - - - Available OSDs: - - + Available OSDs: + 可用 OSD: + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 430 + Directory - Directory + 目錄 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.html + 437 + EC Profile - EC Profile + EC 設定檔 + + src/app/ceph/pool/erasure-code-profile-form/erasure-code-profile-form-modal.component.ts + 59 + Pool details - Pool details + + src/app/ceph/pool/pool-details/pool-details.component.html + 23 + Cache Tiers Details - Cache Tiers Details + 快取層詳細資料 + + src/app/ceph/pool/pool-details/pool-details.component.html + 42 + Cache Mode 快取模式 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 42 + Min Evict Age - Min Evict Age + 逐出前至少可留存的時間 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 47 + Min Flush Age - Min Flush Age + 衝洗前至少可留存的時間 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 52 + Target Max Bytes - Target Max Bytes + 目標最大位元組數 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 57 + Target Max Objects - Target Max Objects + 目標最大物件數 + + src/app/ceph/pool/pool-details/pool-details.component.ts + 62 + No applications added - No applications added + 未新增應用程式 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 20 + Applications limit reached - Applications limit reached + 已達到應用程式上限 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 22 + A pool can only have up to four applications definitions. - A pool can only have up to four applications definitions. + 一個池最多只能有四個應用程式定義。 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 23 + Allowed characters '_a-zA-Z0-9' - Allowed characters '_a-zA-Z0-9' + 允許的字元為 "_a-zA-Z0-9" + + src/app/ceph/pool/pool-form/pool-form-data.ts + 26 + Maximum length is 128 characters 最大長度為 128 個字元 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 27 + Filter or add applications' - Filter or add applications' + 過濾或新增應用程式 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 29 + Add application - Add application + 新增應用程式 + + src/app/ceph/pool/pool-form/pool-form-data.ts + 30 + The chosen Ceph pool name is already in use. - The chosen Ceph pool name is already in use. + 所選的 Ceph 池名稱已在使用中。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 31 + It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. - It's not possible to create an RBD pool with '/' in the name. Please change the name or remove 'rbd' from the applications list. + 無法建立名稱中包含 "/" 的 RBD 池。請變更名稱,或從應用程式清單中移除 "rbd"。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 34,35 + Pool name can only contain letters, numbers, '.', '-', '_' or '/'. - Pool name can only contain letters, numbers, '.', '-', '_' or '/'. + 池名稱只能包含字母、數字、"."、"-"、"_" 或 "/"。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 38 + Pool type - Pool type + 池類型 + + src/app/ceph/pool/pool-form/pool-form.component.html + 46 + -- Select a pool type -- - -- Select a pool type -- + -- 選取池類型 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 53 + PG Autoscale - PG Autoscale + PG 自動調整 + + src/app/ceph/pool/pool-form/pool-form.component.html + 70 + Placement groups - Placement groups + 放置群組 + + src/app/ceph/pool/pool-form/pool-form.component.html + 89 + At least one placement group is needed! - At least one placement group is needed! + 至少需要一個放置群組! + + src/app/ceph/pool/pool-form/pool-form.component.html + 105 + Your cluster can't handle this many PGs. Please recalculate the PG amount needed. 您的叢集無法處理這麼多的 PG。請重新計算所需的 PG 數量。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 108 + Calculation help 計算說明 + + src/app/ceph/pool/pool-form/pool-form.component.html + 111 + The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. - The current PGs settings were calculated for you, you should make sure the values suit your needs before submit. + 目前的 PG 設定是為您計算的,您應在提交前確定這些值符合您的需求。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 116,117 + Replicated size - Replicated size + 複製大小 + + src/app/ceph/pool/pool-form/pool-form.component.html + 126 + - Minimum: - - - Minimum: - - + Minimum: + 最小: + + src/app/ceph/pool/pool-form/pool-form.component.html + 138 + - Maximum: - - - Maximum: - - + Maximum: + 最大: + + src/app/ceph/pool/pool-form/pool-form.component.html + 139 + - The size specified is out of range. A value from - to - is usable. - - The size specified is out of range. A value from - to - is usable. - + The size specified is out of range. A value from to is usable. + 指定的大小超出範圍。請使用介於 至 的值。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 144,145 + A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. - A size of 1 will not create a replication of the object. The 'Replicated size' includes the object itself. + 指定 1 將不會建立物件的複本。"複製大小" 包括物件自身。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 148,149 + EC Overwrites - EC Overwrites + EC 覆寫 + + src/app/ceph/pool/pool-form/pool-form.component.html + 166 + Applications - Applications + 應用程式 + + src/app/ceph/pool/pool-form/pool-form.component.html + 176 + Pools should be associated with an application tag - Pools should be associated with an application tag + + src/app/ceph/pool/pool-form/pool-form.component.html + 189 + Mirroring - Mirroring + 鏡像 + + src/app/ceph/pool/pool-form/pool-form.component.html + 206 + + + src/app/core/navigation/navigation/navigation.component.html + 183 + Check this option to enable Pool based mirroring on a Block(RBD) pool. - Check this option to enable Pool based mirroring on a Block(RBD) pool. + + src/app/ceph/pool/pool-form/pool-form.component.html + 208 + CRUSH CRUSH + + src/app/ceph/pool/pool-form/pool-form.component.html + 216 + Erasure code profile - Erasure code profile + 糾刪碼設定檔 + + src/app/ceph/pool/pool-form/pool-form.component.html + 223 + -- No erasure code profile available -- - -- No erasure code profile available -- + -- 沒有可用的糾刪碼設定檔 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 236 + -- Select an erasure code profile -- - -- Select an erasure code profile -- + -- 選取糾刪碼設定檔 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 239 + This profile can't be deleted as it is in use. - This profile can't be deleted as it is in use. + 此設定檔正在使用中,不能刪除。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 263 + Profile - Profile + 設定檔 + + src/app/ceph/pool/pool-form/pool-form.component.html + 280 + Used by pools - Used by pools + 由池使用 + + src/app/ceph/pool/pool-form/pool-form.component.html + 291 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 413 + Profile is not in use. - Profile is not in use. + 設定檔未在使用中。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 294 + Crush ruleset CRUSH 規則集 + + src/app/ceph/pool/pool-form/pool-form.component.html + 315 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 331 + A new crush ruleset will be implicitly created. - A new crush ruleset will be implicitly created. + 將以隱含方式建立一個新的 CRUSH 規則集。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 319 + A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified - A new crush MSR ruleset will be implicitly created. When crush-osds-per-failure-domain or crush-num-failure-domains is specified + + src/app/ceph/pool/pool-form/pool-form.component.html + 322,323 + There are no rules. - There are no rules. + 沒有規則。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 335 + -- Select a crush rule -- - -- Select a crush rule -- + -- 選取 CRUSH 規則 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 345 + Placement and replication strategies or distribution policies that allow to specify how CRUSH places data replicas. - Placement and - replication strategies or distribution policies that allow to - specify how CRUSH places data replicas. + + src/app/ceph/pool/pool-form/pool-form.component.html + 355,357 + This rule can't be deleted as it is in use. - This rule can't be deleted as it is in use. + 此規則正在使用中,不能刪除。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 373 + Crush rule - Crush rule + CRUSH 規則 + + src/app/ceph/pool/pool-form/pool-form.component.html + 391 + Crush steps CRUSH 步驟 + + src/app/ceph/pool/pool-form/pool-form.component.html + 402 + Rule is not in use. - Rule is not in use. + 規則未在使用中。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 417 + The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. - The rule can't be used in the current cluster as it has too few OSDs to meet the minimum required OSD by this rule. + 目前的叢集中無法使用該規則,因為叢集的 OSD 數量太少,不符合此規則要求的最低 OSD 數量。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 435,436 + Compression - Compression + 壓縮 + + src/app/ceph/pool/pool-form/pool-form.component.html + 446 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 271 + Algorithm - Algorithm + 演算法 + + src/app/ceph/pool/pool-form/pool-form.component.html + 470 + -- No erasure compression algorithm available -- - -- No erasure compression algorithm available -- + -- 沒有可用的糾刪壓縮演算法 -- + + src/app/ceph/pool/pool-form/pool-form.component.html + 481 + Minimum blob size - Minimum blob size + Blob 大小下限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 494 + e.g., 128KiB - e.g., 128KiB + 例如 128 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 503 + Value should be greater than 0 - Value should be greater than 0 + 值應大於 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 508 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 535 + Value should be less than the maximum blob size - Value should be less than the maximum blob size + 值應小於 blob 大小上限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 511 + Maximum blob size - Maximum blob size + Blob 大小上限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 522 + e.g., 512KiB - e.g., 512KiB + 例如 512 KiB + + src/app/ceph/pool/pool-form/pool-form.component.html + 530 + Value should be greater than the minimum blob size - Value should be greater than the minimum blob size + 值應大於 blob 大小下限 + + src/app/ceph/pool/pool-form/pool-form.component.html + 538 + Ratio - Ratio + 比率 + + src/app/ceph/pool/pool-form/pool-form.component.html + 549 + Compression ratio - Compression ratio + 壓縮率 + + src/app/ceph/pool/pool-form/pool-form.component.html + 560 + Value should be between 0.0 and 1.0 - Value should be between 0.0 and 1.0 + 值應介於 0.0 至 1.0 之間 + + src/app/ceph/pool/pool-form/pool-form.component.html + 563 + Max bytes - Max bytes + 最大位元組數 + + src/app/ceph/pool/pool-form/pool-form.component.html + 578 + Leave it blank or specify 0 to disable this quota. - Leave it blank or specify 0 to disable this quota. + 保留空白或指定 0 可停用此定額。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 580 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 607 + A valid quota should be greater than 0. - A valid quota should be greater than 0. + 有效定額應大於 0。 + + src/app/ceph/pool/pool-form/pool-form.component.html + 582 + + + src/app/ceph/pool/pool-form/pool-form.component.html + 609 + Max objects - Max objects + 最大物件數 + + src/app/ceph/pool/pool-form/pool-form.component.html + 605 + The value should be greater or equal to 0 - The value should be greater or equal to 0 + 該值應大於或等於 0 + + src/app/ceph/pool/pool-form/pool-form.component.html + 621 + pool - pool + 池 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 109 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 225 + erasure code profile - erasure code profile + 糾刪碼設定檔 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 640 + crush rule - crush rule + Crush 規則 + + src/app/ceph/pool/pool-form/pool-form.component.ts + 729 + Pools List - Pools List + 池清單 + + src/app/ceph/pool/pool-list/pool-list.component.html + 6 + Ceph pools overview - Ceph pools overview + + src/app/ceph/pool/pool-list/pool-list.component.html + 41 + Data Protection - Data Protection + 資料保護 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 130 + Applications - Applications + 應用程式 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 139 + PG Status PG 狀態 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 148 + Crush Ruleset - Crush Ruleset + CRUSH 規則集 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 156 + Pool deletion is disabled by the mon_allow_pool_delete configuration setting. - Pool deletion is disabled by the mon_allow_pool_delete configuration setting. + mon_allow_pool_delete 組態設定已停用池刪除功能。 + + src/app/ceph/pool/pool-list/pool-list.component.ts + 321 + - - Tag - - - Tag - + Tag + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 3 + Key 金鑰 + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 14 + This key must be unique. - This key must be unique. + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 25 + Length of the key must be maximum of 128 characters - Length of the key must be maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 28 + Length of the value must be a maximum of 128 characters - Length of the value must be a maximum of 128 characters + + src/app/ceph/rgw/bucket-tag-modal/bucket-tag-modal.component.html + 47 + Create Realm/Zone Group/Zone - Create Realm/Zone Group/Zone - form title + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 3,4 + + form title Realm Name - Realm Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 18 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 14 + Zone Group Name - Zone Group Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 33 + Zone Name - Zone Name + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 33 + Realm/Zonegroup/Zone created successfully - Realm/Zonegroup/Zone created successfully + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 85 + Realm/Zonegroup/Zone creation failed - Realm/Zonegroup/Zone creation failed + + src/app/ceph/rgw/create-rgw-service-entities/create-rgw-service-entities.component.ts + 93 + Delete Zone - Delete Zone - form title + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone. - - This will delete your - - - Zone. - + This will delete your Zone. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 10,12 + - Do you want to delete the associated pools with the - - - Zone? - - Do you want to delete the associated pools with the - - - Zone? - + Do you want to delete the associated pools with the Zone? + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 15,16 + This will delete the following pools and any data stored in these pools: - This will delete the following pools and any data stored in these pools: + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 18,19 + Yes, I want to delete the pools. - Yes, I want to delete the pools. + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 32 + This will delete all the data in the pools! - This will delete all the data in the pools! + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.html + 37,39 + + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 52,54 + - Zone: ' - ' deleted successfully - - Zone: ' - ' deleted successfully - + Zone: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zone-deletion-form/rgw-multisite-zone-deletion-form.component.ts + 56 + No zones added - No zones added + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 23 + Allowed characters '-_a-zA-Z0-9|*' - Allowed characters '-_a-zA-Z0-9|*' + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 25 + Maximum length is 50 characters - Maximum length is 50 characters + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 26 + Add zone - Add zone + + src/app/ceph/rgw/models/rgw-multisite-zone-selector.ts + 29 + Delete Zone Group - Delete Zone Group - form title + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 3 + + form title - This will delete your - - - Zone Group. - - This will delete your - - - Zone Group. - + This will delete your Zone Group. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 10,12 + - Do you want to delete the associated zones and pools with the - - - Zone Group? - - Do you want to delete the associated zones and pools with the - - - Zone Group? - + Do you want to delete the associated zones and pools with the Zone Group? + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 15,16 + This will delete the following: - This will delete the following: + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 18,19 + Yes, I want to delete the zones and their pools. - Yes, I want to delete the zones and their pools. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 46 + Yes, I want to delete the zones. - Yes, I want to delete the zones. + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.html + 74 + + + + Zonegroup: '' deleted successfully + + src/app/ceph/rgw/models/rgw-multisite-zonegroup-deletion-form/rgw-multisite-zonegroup-deletion-form.component.ts + 59 + Versioning - Versioning + 版本設定 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 15 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 108 + Replication - Replication + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 25 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 401 + MFA Delete - MFA Delete + MFA 刪除 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 30 + Index type - Index type + 索引類型 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 35 + Placement rule - Placement rule + 放置規則 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 40 + Last modification time - Last modification time + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 45 + Bucket quota - Bucket quota + 桶定額 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 133 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 568 + Enabled - Enabled + 已啟用 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 58 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 91 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 121 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 104 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 138 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 483 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 580 + + + src/app/core/auth/user-form/user-form.component.html + 216 + Maximum size - Maximum size + 最大大小 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 64 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 109 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 143 + Unlimited - Unlimited + 無限制 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 66 + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 75 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 112 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 122 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 146 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 156 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 127 + Maximum objects - Maximum objects + 最大物件數 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 119 + + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 153 + Locking - Locking + 鎖定 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 86 + Days 天 + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 102 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 252 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 116 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 128 + Bucket policy - Bucket policy - - - Lifecycle - - JSON - - XML - - - - Lifecycle - - JSON - - XML - - - + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 135 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 472 + + + + Lifecycle JSON XML + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 140,155 + Replication policy - Replication policy + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 164 + ACL - ACL + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 169 + - - Grantee - - Permissions - - - - Grantee - - Permissions - - + GranteePermissions + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 174,175 + - - Bucket Owner - - - - - - - Bucket Owner - - - - - + Bucket Owner + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 180,181 + - - Everyone - - - - - - - Everyone - - - - - + Everyone + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 184,185 + - - Authenticated users group - - - - - - - Authenticated users group - - - - - + Authenticated users group + + src/app/ceph/rgw/rgw-bucket-details/rgw-bucket-details.component.html + 188,189 + Id ID + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 17 + Bucket names can only contain lowercase letters, numbers, periods and hyphens. - Bucket names can only contain lowercase letters, numbers, periods and hyphens. + 桶名稱只能包含小寫字母、數字、句點以及連字號。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 49 + The chosen name is already in use. - The chosen name is already in use. + 所選的名稱已在使用中。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 52 + + + src/app/core/auth/role-form/role-form.component.html + 32 + Bucket names must not contain uppercase characters or underscores. - Bucket names must not contain uppercase characters or underscores. + 桶名稱不能包含大寫字元或底線。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 55 + Each label must start and end with a lowercase letter or a number. - Each label must start and end with a lowercase letter or a number. + 每個標籤都必須以小寫字母或數字開頭和結尾。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 58 + Bucket names cannot be formatted as IP address. - Bucket names cannot be formatted as IP address. + 桶名稱不能採用 IP 位址格式。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 61 + Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. - Bucket labels cannot be empty and can only contain lowercase letters, numbers and hyphens. + 桶標籤不能為空白且只能包含小寫字母、數字及連字號。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 64 + Bucket names must be 3 to 63 characters long. - Bucket names must be 3 to 63 characters long. + 桶名稱長度必須介於 3 至 63 個字元之間。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 67 + Owner 擁有者 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 75 + -- Select a user -- - -- Select a user -- + -- 選取使用者 -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 87 + + + + The bucket is owned by an account. UI does not support changing the ownership of bucket owned by an account. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 98,101 + Enables versioning for the objects in the bucket. - Enables versioning for the objects in the bucket. + 對桶中的物件啟用版本設定。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 123 + Multi-Factor Authentication 多因素驗證 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 134 + Delete enabled 已啟用刪除功能 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 147 + Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. - Enables MFA (multi-factor authentication) Delete, which requires additional authentication for changing the bucket versioning state. + 啟用 MFA (多因素驗證) 刪除功能,這樣變更桶版本設定狀態時將需要進行額外的驗證。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 149 + Token Serial Number - Token Serial Number + 記號序號 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 158 + Token PIN - Token PIN + 記號 PIN + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 174 + - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - - Object Locking - Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. - - + Object Locking Store objects using a write-once-read-many (WORM) model to prevent objects from being deleted or overwritten for a fixed amount of time or indefinitely. Object Locking works only in versioned buckets. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 191,198 + Enable - Enable + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 202,204 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 298,300 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 405,407 + Enables locking for the objects in the bucket. Locking can only be enabled while creating a bucket. 對桶中的物件啟用鎖定功能。只有在建立桶時才能啟用鎖定功能。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 211 + Compliance - Compliance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 227,229 + Governance - Governance + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 231,233 + In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. - In COMPLIANCE an object version cannot be overwritten or deleted for the duration of the period. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 237,239 + In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. - In GOVERNANCE mode, users cannot overwrite or delete an object version or alter its lock settings unless they have special permissions. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 241,243 + The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. - The number of days that you want to specify for the default retention period that will be applied to new objects placed in this bucket. + 您要指定的預設保留天數,將套用於此桶中存放的新物件。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 261 + The entered value must be a positive integer. - The entered value must be a positive integer. + 輸入的值必須為正整數。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 265 + Retention Days must be a positive integer. - Retention Days must be a positive integer. + 保留天數必須為正整數。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 268 + - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - - Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values - Click here - - + Enables encryption for the objects in the bucket. To enable encryption on a bucket you need to set the configuration values for SSE-S3 or SSE-KMS. To set the configuration values Click here + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 309,314 + SSE-S3 Encryption - SSE-S3 Encryption + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 331 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 23 + Connect to an external key management service - Connect to an external key management service + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 348 + KMS Provider - KMS Provider + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 357 + -- Select a provider -- - -- Select a provider -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 366 + + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 51 + Key Id - Key Id + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 381,382 + Enables replication for the objects in the bucket. - Enables replication for the objects in the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 417 + A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. - A bi-directional sync policy group will be created by the dashboard along with flows and pipes. The pipe id will then be used for applying the replication policy to the bucket. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 424,427 + - Tags - Tagging provides a way to categorize storage - - - Tags - Tagging provides a way to categorize storage - - + Tags Tagging provides a way to categorize storage + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 436,439 + Maximum of 20 tags reached - Maximum of 20 tags reached + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 447 + Add tag - Add tag + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 454 + Policies - Policies + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 463,464 + Invalid json text. - Invalid json text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 482 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 531 + - - - Clear - - - - Clear - + Clear + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 488,490 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 540,542 + - - - Policy examples - - - - Policy examples - + Policy examples + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 499,501 + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 551,553 + - - - Policy generator - - - - Policy generator - + Policy generator + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 507,509 + - Lifecycle - JSON or XML formatted document - - - Lifecycle - JSON or XML formatted document - - + Lifecycle JSON or XML formatted document + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 519,521 + Invalid xml text. - Invalid xml text. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 534 + - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - - ACL - Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. - - + ACL Any changes to the ACL will overwrite previous one. You can choose any of the available options to modify the spcified user group. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 562,565 + - Grantee - Select a grantee (user group) to modify it's permisions - - - Grantee - Select a grantee (user group) to modify it's permisions - - + Grantee Select a grantee (user group) to modify it's permisions + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 570,572 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 580,581 + - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - - Permissions - Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access - - + Permissions Select the permision to give to the selected grantee. Regardless, the owner of the bucket will always have FULL CONTROL access + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 587,591 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 598,599 + Placement target - Placement target + 放置目標 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 616 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 165 + -- Select a placement target -- - -- Select a placement target -- + -- 選取放置目標 -- + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 627 + When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. - When creating a bucket, a placement target can be provided as part of the LocationConstraint to override the default placement targets from the user and zonegroup. + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 632,634 + Checking multi-site status... - Checking multi-site status... + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.html + 687 + bucket - bucket + 桶 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 111 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 158 + - Updated Object Gateway bucket ' - '. - - Updated Object Gateway bucket ' - '. - + Updated Object Gateway bucket ''. + 已更新物件閘道桶 ""。 + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 364 + - Created Object Gateway bucket ' - ' - - Created Object Gateway bucket ' - ' - + Created Object Gateway bucket '' + 已建立物件閘道桶 "" + + src/app/ceph/rgw/rgw-bucket-form/rgw-bucket-form.component.ts + 396 + No Limit - No Limit + 無限制 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 31 + + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.html + 43 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 33 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.html + 45 + Owner - Owner + 擁有者 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 72 + Used Capacity - Used Capacity + 已用容量 + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 77 + Capacity Limit % - Capacity Limit % + 容量上限 % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 83 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 96 + Object Limit % - Object Limit % - - - buckets - 桶 + 物件上限 % + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 95 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 102 + + + + Bucket is not empty. Remove all objects before deletion. + + src/app/ceph/rgw/rgw-bucket-list/rgw-bucket-list.component.ts + 132 + Update RGW Encryption Configurations - Update RGW Encryption Configurations - form title + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 3 + + form title Encryption Type - Encryption Type + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 13 + SSE-KMS Encryption - SSE-KMS Encryption + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 35 + Key management service provider - Key management service provider + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 43 + Authentication Method - Authentication Method + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 66 + Secret Engine - Secret Engine + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 86 + Secret Path - Secret Path + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 106,107 + Namespace - Namespace + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 125,126 + Vault Address - Vault Address + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 141,142 + The token authentication method expects a Vault token to be present in a plaintext file. - The token authentication method expects a Vault token to be present in a plaintext file. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 161,163 + CA Certificate - CA Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 179 + Client Certificate - Client Certificate + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 197 + The Client certificate in PEM format. - The Client certificate in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 198 + Client Private Key - Client Private Key + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 215 + The Client Private Key in PEM format. - The Client Private Key in PEM format. + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.html + 216 + Updated RGW Encryption Configuration values - Updated RGW Encryption Configuration values + + src/app/ceph/rgw/rgw-config-modal/rgw-config-modal.component.ts + 121 + Performance Counters - Performance Counters + 效能計數器 + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 17 + RGW instance details - RGW instance details + + src/app/ceph/rgw/rgw-daemon-details/rgw-daemon-details.component.html + 30 + Gateways List - Gateways List + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 6 + RGW overview - RGW overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 27 + Sync Performance 同步效能 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 39 + Radosgw sync overview - Radosgw sync overview + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.html + 42 + Realm - Realm + 領域 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 52 + Zone Group 區域群組 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 57 + Zone - Zone + 區域 + + src/app/ceph/rgw/rgw-daemon-list/rgw-daemon-list.component.ts + 62 + - In order to access the import/export feature, the rgw module must be enabled - Enable - - - In order to access the import/export feature, the rgw module must be enabled - Enable - - + In order to access the import/export feature, the rgw module must be enabled Enable + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 7,10 + - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - - Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. - Cluster->Services - - + Please restart all Ceph Object Gateway instances in all zones to ensure consistent multisite configuration updates. Cluster->Services + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 15,18 + Topology Viewer - Topology Viewer + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.html + 46 + Please create a default realm first to enable this feature - Please create a default realm first to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 54 + Please create a master zone for each zone group to enable this feature - Please create a master zone for each zone group to enable this feature + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 55 + No realm exists - No realm exists + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 56 + Please create master zone group and master zone for each of the realms - Please create master zone group and master zone for each of the realms + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 57 + - - - - - - - - + + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 525 + + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 175 + - Realm: ' - ' deleted successfully - - Realm: ' - ' deleted successfully - + Realm: '' deleted successfully + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 533 + Enabled RGW Module - Enabled RGW Module + + src/app/ceph/rgw/rgw-multisite-details/rgw-multisite-details.component.ts + 566 + Export Multi-site Realm Token - Export Multi-site Realm Token - form title + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 3 + + form title - - - - - - - - - - - - - - - - - - + - + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 18,21 + Realm Name - Realm Name + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 27,28 + Token - Token + + src/app/ceph/rgw/rgw-multisite-export/rgw-multisite-export.component.html + 40,41 + Import Multi-site Token - Import Multi-site Token - form title + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 3 + + form title Zone Details - Zone Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 18 + Token - Token + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 22,23 + Secondary Zone Name - Secondary Zone Name + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 38 + The chosen zone name is already in use. - The chosen zone name is already in use. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 89 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 46 + Service Details - Service Details + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 55 + If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. - If set to true, the orchestrator will not start nor stop any daemon associated with this service. Placement and all other properties will be ignored. + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 66,67 + Only that number of daemons will be created. - Only that number of daemons will be created. + 系統將僅建立該數量的精靈。 + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.html + 131 + Realm token import successfull - Realm token import successfull + + src/app/ceph/rgw/rgw-multisite-import/rgw-multisite-import.component.ts + 139 + - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - Migrate Single Site to Multi-site - - Migrate from a single-site deployment with a default zone group and zone to a multi-site system - - - - form title + Migrate Single Site to Multi-site Migrate from a single-site deployment with a default zone group and zone to a multi-site system + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 3,6 + + form title The chosen realm name is already in use. - The chosen realm name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 31 + + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 27 + + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 27 + Rename default zone group - Rename default zone group + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 37 + The chosen zone group name is already in use. - The chosen zone group name is already in use. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 50 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 46 + Zone group Endpoints - Zone group Endpoints - - - Please enter a valid IP address. - Please enter a valid IP address. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 56,57 + + + + Please enter a valid URL. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 70 + + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 109 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 103 + Rename default zone - Rename default zone + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 76 + Zone Endpoints - Zone Endpoints + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 95,96 + - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 access key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the access key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 access key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the access key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 115,118 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 115,118 + - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - - S3 secret key - - To see or copy your S3 access key, go to - Object Gateway > Users - and click on your user name. In - Keys - , click - Show - . View the secret key by clicking Show and copy the key by clicking - Copy to Clipboard - . - - - + S3 secret key To see or copy your S3 access key, go to Object Gateway > Users and click on your user name. In Keys, click Show. View the secret key by clicking Show and copy the key by clicking Copy to Clipboard. + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.html + 132,135 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 138,141 + Migration done successfully - Migration done successfully + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 135 + Migration failed - Migration failed + + src/app/ceph/rgw/rgw-multisite-migrate/rgw-multisite-migrate.component.ts + 141 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 39 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 64 + - Please consult the - documentation - to follow the failover mechanism - - Please consult the - documentation - to follow the failover mechanism - + Please consult the documentation to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 42 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 88 + Default realm already exists. - Default realm already exists. + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.html + 45 + - Realm: ' - ' created successfully - - Realm: ' - ' created successfully - + Realm: '' created successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 106 + - Realm: ' - ' updated successfully - - Realm: ' - ' updated successfully - + Realm: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-realm-form/rgw-multisite-realm-form.component.ts + 121 + - - - Flow - - - - Flow - - form title + Flow + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 3 + + form title Bucket Name - Bucket Name + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 27 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 66 + Bucket Name... - Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 34 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 51 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 74 + The bucket with chosen name does not exist. - The bucket with chosen name does not exist. + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 38 + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 80 + Zones - Zones + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 45 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 110 + Flow need to be associated with atleast one zone - Flow need to be associated with atleast one zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 47 + Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 59,60 + Destination Zone - Destination Zone + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 36 + - Flow should be associated with - - - Flow should be associated with - - + Flow should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 98 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 103,104 + - -- Select - -- - - -- Select - -- - + -- Select -- + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.html + 120 + - - Sync Flow ' - ' - - - Sync Flow ' - ' - + Sync Flow '' + + src/app/ceph/rgw/rgw-multisite-sync-flow-modal/rgw-multisite-sync-flow-modal.component.ts + 185 + - - Pipe - - - Pipe - - form title + Pipe + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 3 + + form title Source Zone - Source Zone + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 28 + Source Bucket - Source Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 58 + Source Bucket Name... - Source Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 65 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 68 + + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 85 + Destination Bucket - Destination Bucket + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 75 + Destination Bucket Name... - Destination Bucket Name... + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 82 + - Pipe should be associated with - - - Pipe should be associated with - - + Pipe should be associated with + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 114 + - - selection is required! - - - selection is required! - + selection is required! + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.html + 119,120 + All zones (*) - All zones (*) + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 20 + - - Sync Pipe ' - ' - - - Sync Pipe ' - ' - + Sync Pipe '' + + src/app/ceph/rgw/rgw-multisite-sync-pipe-modal/rgw-multisite-sync-pipe-modal.component.ts + 202 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 10 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 76 + - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - - Pipe - A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. - - + Pipe A pipe defines the actual buckets that can use these data flows, and the properties that are associated with it. + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 78,84 + - Deleting - may disrupt data synchronization - - Deleting - may disrupt data synchronization - + Deleting may disrupt data synchronization + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.html + 112,114 + Flow - Flow + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Flows - Flows + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 246 + Pipe - Pipe + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Pipes - Pipes + + src/app/ceph/rgw/rgw-multisite-sync-policy-details/rgw-multisite-sync-policy-details.component.ts + 311 + Group Name... - Group Name... + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 24 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 47 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 50 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.html + 53 + Sync Policy Group - Sync Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 56 + - Created Sync Policy Group ' - ' - - Created Sync Policy Group ' - ' - + Created Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 120 + - Modified Sync Policy Group ' - ' - - Modified Sync Policy Group ' - ' - + Modified Sync Policy Group '' + + src/app/ceph/rgw/rgw-multisite-sync-policy-form/rgw-multisite-sync-policy-form.component.ts + 134 + - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - - Multisite Sync Policy - Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. - - + Multisite Sync Policy Multisite bucket-granularity sync policy provides fine grained control of data movement between buckets in different zones. Leveraging the bucket-granularity sync policy is possible for buckets to diverge, and a bucket can pull data from other buckets (ones that don’t share its name or its ID) in different zone. + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 3,9 + Are you sure you want to delete these policy groups? - Are you sure you want to delete these policy groups? + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.html + 42,44 + Group Name - Group Name + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 66 + Zonegroup - Zonegroup + 區域群組 + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 89 + Policy Group - Policy Group + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 179 + Policy Groups - Policy Groups + + src/app/ceph/rgw/rgw-multisite-sync-policy/rgw-multisite-sync-policy.component.ts + 180 + Sync Policy - Sync Policy + + src/app/ceph/rgw/rgw-multisite-tabs/rgw-multisite-tabs.component.html + 14 + Select Zone Group - Select Zone Group + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 14 + Default zone can only exist in a default zone group. - Default zone can only exist in a default zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 58,59 + You cannot unset the default flag. - You cannot unset the default flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 62,63 + - Please consult the  - -  to follow the failover mechanism - - Please consult the  - -  to follow the failover mechanism - + Please consult the  to follow the failover mechanism + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 66 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 61 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 79 + Master - Master + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 78 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 74 + Master zone already exists for the selected zone group. - Master zone already exists for the selected zone group. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 80,81 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 84,85 + Endpoints - Endpoints + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 96 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 90 + Data pool - Data pool + 資料池 + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 183 + + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 254 + Index pool - Index pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 201 + Data extra pool - Data extra pool + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 218 + Storage Class - Storage Class + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.html + 237 + + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 175 + - Zone: ' - ' created successfully - - Zone: ' - ' created successfully - + Zone: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 252 + - Zone: ' - ' updated successfully - - Zone: ' - ' updated successfully - + Zone: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zone-form/rgw-multisite-zone-form.component.ts + 289 + - - Zone Group - - - Zone Group - - form title + Zone Group + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 3 + + form title Select Realm - Select Realm + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 14 + -- Select a realm -- - -- Select a realm -- + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 21 + Zone group doesn't belong to the default realm. - Zone group doesn't belong to the default realm. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 58 + Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. - Multiple master zone groups can't be configured. If you want to create a new zone group and make it the master zone group, you must delete the default zone group. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 76 + You cannot unset the master flag. - You cannot unset the master flag. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 82 + Cannot remove master zone. - Cannot remove master zone. + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 119 + Placement Id - Placement Id + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 141 + Add placement target - Add placement target + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.html + 194 + - Zonegroup: ' - ' created successfully - - Zonegroup: ' - ' created successfully - + Zonegroup: '' created successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 212 + - Zonegroup: ' - ' updated successfully - - Zonegroup: ' - ' updated successfully - + Zonegroup: '' updated successfully + + src/app/ceph/rgw/rgw-multisite-zonegroup-form/rgw-multisite-zonegroup-form.component.ts + 252 + - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - - Multi-site needs to be configured in order to see the multi-site sync status. Please consult the - - on how to configure and enable the multi-site functionality. - + Multi-site needs to be configured in order to see the multi-site sync status. Please consult the on how to configure and enable the multi-site functionality. + + src/app/ceph/rgw/rgw-overview-dashboard/rgw-overview-dashboard.component.html + 104,107 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 29 + Not Syncing - Not Syncing + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 35 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 42 + Error 錯誤 + + src/app/ceph/rgw/rgw-sync-data-info/rgw-sync-data-info.component.html + 45 + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 52 + - [object Object] - [object Object] + + + src/app/ceph/rgw/rgw-sync-metadata-info/rgw-sync-metadata-info.component.html + 36 + Create System User - Create System User - form title + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 3 + + form title User Name - User Name + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.html + 14 + - User: ' - ' created successfully - - User: ' - ' created successfully - + User: '' created successfully + + src/app/ceph/rgw/rgw-system-user/rgw-system-user.component.ts + 45 + -- Select a type -- -- 選取類型 -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 30 + Permission - Permission + 許可權 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 44 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 50 + -- Select a permission -- -- 選取許可權 -- + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.html + 50 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 56 + capability 功能 + + src/app/ceph/rgw/rgw-user-capability-modal/rgw-user-capability-modal.component.ts + 37 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 66 + Keys - Keys + 金鑰 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 4 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 316 + Show 顯示 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 20 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 341 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 398 + Tenant - Tenant + 租用戶 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 33 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 57 + User ID - User ID + 使用者 ID + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 38 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 16 + Full name - Full name + 全名 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 48 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 79 + + + src/app/core/auth/user-form/user-form.component.html + 160 + Email address - Email address + 電子郵件地址 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 53 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 98 + Suspended - Suspended + 已暫停 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 58 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 161 + System user - System user + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 63 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 177 + Maximum buckets - Maximum buckets + 最大桶數 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 68 + Subusers 子使用者 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 73 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 255 + Capabilities - Capabilities + 功能 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 82 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 411 + MFAs(Id) - MFAs(Id) + MFA (ID) + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 91 + User quota - User quota + 使用者定額 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.html + 99 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 471 + Username - Username + 使用者名稱 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 45 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 59 + + + src/app/core/auth/user-list/user-list.component.ts + 86 + Unlimited - Unlimited + 無限制 + + src/app/ceph/rgw/rgw-user-details/rgw-user-details.component.ts + 57 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 92 + The value is not valid. - The value is not valid. + 該值無效。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 28 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 67 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 87 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 521 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 618 + The chosen user ID is already in use. - The chosen user ID is already in use. + 所選的使用者 ID 已在使用中。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 31 + Show Tenant - Show Tenant + 顯示租用戶 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 47 + The chosen user ID exists in this tenant. - The chosen user ID exists in this tenant. + 此租用戶中存在所選使用者 ID。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 70 + This is not a valid email address. 電子郵件地址無效。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 106 + The chosen email address is already in use. - The chosen email address is already in use. + 所選的電子郵件地址已在使用中。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 109 + Max. buckets - Max. buckets + 最大桶數 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 117 + Disabled - Disabled + 已停用 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 125 + Custom 自訂 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 129 + The entered value must be >= 1. - The entered value must be >= 1. + 輸入的值必須大於或等於 1。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 147 + Suspending the user disables the user and subuser. - Suspending the user disables the user and subuser. + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 162 + System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects - System users are distinct from regular users, they are used by the RGW service to perform administrative tasks, manage buckets and objects + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 178 + S3 key - S3 key + S3 金鑰 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 185 + Auto-generate key 自動產生金鑰 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 197 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 52 + Access key - Access key + 存取金鑰 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 207 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 63 + Secret key - Secret key + 機密金鑰 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 232 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 90 + + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 96 + + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.html + 27 + There are no subusers. - There are no subusers. + 沒有子使用者。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 261 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 304,305 + S3 S3 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 321 + There are no keys. - There are no keys. + 沒有金鑰。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 326 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 383 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 362,363 + Swift Swift + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 377 + There are no capabilities. - There are no capabilities. + 沒有功能。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 418 + All capabilities are already added. - All capabilities are already added. + 已新增所有功能。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 454 + - - - - - - - - + + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 459,460 + Unlimited size - Unlimited size + 大小不限 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 499 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 596 + Max. size - Max. size + 最大大小 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 509 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 606 + Unlimited objects - Unlimited objects + 物件數不限 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 539 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 636 + Max. objects - Max. objects + 最大物件數 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 549 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 646 + The entered value must be >= 0. 輸入的值必須大於或等於 0。 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 561 + + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.html + 658 + user - user + 使用者 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 63 + + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + + + src/app/core/auth/user-form/user-form.component.ts + 74 + subuser - subuser + 子使用者 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 64 + S3 Key - S3 Key + S3 金鑰 + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 65 + + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.ts + 36 + - Updated Object Gateway user ' - ' - - Updated Object Gateway user ' - ' - + Updated Object Gateway user '' + 已更新物件閘道使用者 "" + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 273 + - Created Object Gateway user ' - ' - - Created Object Gateway user ' - ' - + Created Object Gateway user '' + 已建立物件閘道使用者 "" + + src/app/ceph/rgw/rgw-user-form/rgw-user-form.component.ts + 278 + Tenant - Tenant + 租用戶 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 64 + Full name - Full name + 全名 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 69 + Email address - Email address + 電子郵件地址 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 74 + Suspended - Suspended + 已暫停 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 79 + Max. buckets - Max. buckets + 最大桶數 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 86 + users 使用者 + + src/app/ceph/rgw/rgw-user-list/rgw-user-list.component.ts + 153 + -- Select a username -- - -- Select a username -- + -- 選取使用者名稱 -- + + src/app/ceph/rgw/rgw-user-s3-key-modal/rgw-user-s3-key-modal.component.html + 31 + Subuser - Subuser + 子使用者 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 29 + The chosen subuser ID is already in use. - The chosen subuser ID is already in use. + 所選的子使用者 ID 已在使用中。 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 42 + read, write - read, write + 讀取、寫入 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 62 + full - full + 完整 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 64 + Swift key - Swift key + Swift 金鑰 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 74 + Auto-generate secret - Auto-generate secret + 自動產生機密金鑰 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.html + 86 + Subuser - Subuser + 子使用者 + + src/app/ceph/rgw/rgw-user-subuser-modal/rgw-user-subuser-modal.component.ts + 37 + Swift Key - Swift Key + Swift 金鑰 + + src/app/ceph/rgw/rgw-user-swift-key-modal/rgw-user-swift-key-modal.component.ts + 19 + Users - Users + 使用者 + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 8 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 8 + + + src/app/core/navigation/navigation/navigation.component.html + 236 + Roles - Roles + 角色 + + src/app/ceph/rgw/rgw-user-tabs/rgw-user-tabs.component.html + 16 + + + src/app/core/auth/user-form/user-form.component.html + 193 + + + src/app/core/auth/user-tabs/user-tabs.component.html + 16 + Neither hostname nor OSD ID given - Neither hostname nor OSD ID given + 未提供主機名稱和 OSD ID + + src/app/ceph/shared/device-list/device-list.component.html + 7 + - [object Object] - [object Object] + + + src/app/ceph/shared/device-list/device-list.component.html + 44 + Device ID 裝置 ID + + src/app/ceph/shared/device-list/device-list.component.ts + 48 + State of Health - State of Health + 健康狀態 + + src/app/ceph/shared/device-list/device-list.component.ts + 51 + Good - Good + 良好 + + src/app/ceph/shared/device-list/device-list.component.ts + 56 + Bad - Bad + 不佳 + + src/app/ceph/shared/device-list/device-list.component.ts + 58 + Stale - Stale + 過時 + + src/app/ceph/shared/device-list/device-list.component.ts + 59 + Life Expectancy 預期壽命 + + src/app/ceph/shared/device-list/device-list.component.ts + 66 + Prediction Creation Date - Prediction Creation Date + 預測建立日期 + + src/app/ceph/shared/device-list/device-list.component.ts + 71 + Device Name - Device Name + 裝置名稱 + + src/app/ceph/shared/device-list/device-list.component.ts + 76 + Daemons 精靈 + + src/app/ceph/shared/device-list/device-list.component.ts + 77 + Report an issue - Report an issue + + src/app/ceph/shared/feedback/feedback.component.html + 3 + - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - - Feedback module is not enabled. Please enable it from - Cluster-> Manager Modules. - - + Feedback module is not enabled. Please enable it from Cluster-> Manager Modules. + + src/app/ceph/shared/feedback/feedback.component.html + 12 + Ceph Tracker API Key - Ceph Tracker API Key + + src/app/ceph/shared/feedback/feedback.component.html + 19 + Ceph Tracker API key is required. - Ceph Tracker API key is required. + + src/app/ceph/shared/feedback/feedback.component.html + 28 + Ceph Tracker API key is invalid. - Ceph Tracker API key is invalid. + + src/app/ceph/shared/feedback/feedback.component.html + 31 + Project name - Project name + + src/app/ceph/shared/feedback/feedback.component.html + 39 + -- Select a project -- - -- Select a project -- + + src/app/ceph/shared/feedback/feedback.component.html + 45 + Project name is required. - Project name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 51 + Tracker - Tracker + + src/app/ceph/shared/feedback/feedback.component.html + 59 + -- Select a tracker -- - -- Select a tracker -- + + src/app/ceph/shared/feedback/feedback.component.html + 65 + Tracker name is required. - Tracker name is required. + + src/app/ceph/shared/feedback/feedback.component.html + 71 + Subject - Subject + + src/app/ceph/shared/feedback/feedback.component.html + 79 + Subject is required. - Subject is required. + + src/app/ceph/shared/feedback/feedback.component.html + 88 + Description is required. - Description is required. + + src/app/ceph/shared/feedback/feedback.component.html + 106 + Issue successfully created on Ceph Issue tracker - Issue successfully created on Ceph Issue tracker + + src/app/ceph/shared/feedback/feedback.component.ts + 91 + Failed to retrieve SMART data. - Failed to retrieve SMART data. + 無法擷取 SMART 資料。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 4 + The data received has the JSON format version 2.x and is currently incompatible with the dashboard. - The data received has the JSON format version 2.x and is currently incompatible with the dashboard. + 收到的資料為 JSON 2.x 版本格式,目前與儀表板不相容。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 7,8 + No SMART data available. - No SMART data available. + 沒有可用的 SMART 資料。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 13 + SMART overall-health self-assessment test result - SMART overall-health self-assessment test result + SMART 整體狀況自評測試結果 + + src/app/ceph/shared/smart-list/smart-list.component.html + 34 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 43 + + + src/app/ceph/shared/smart-list/smart-list.component.html + 51 + unknown - unknown + 未知 + + src/app/ceph/shared/smart-list/smart-list.component.html + 35 + passed - passed + 通過 + + src/app/ceph/shared/smart-list/smart-list.component.html + 44 + failed - failed + 失敗 + + src/app/ceph/shared/smart-list/smart-list.component.html + 52 + Device Information - Device Information + 裝置資訊 + + src/app/ceph/shared/smart-list/smart-list.component.html + 63 + No device information available for this device. - No device information available for this device. + 未獲取此裝置的裝置資訊。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 71 + SMART SMART + + src/app/ceph/shared/smart-list/smart-list.component.html + 76 + No SMART data available for this device. - No SMART data available for this device. + 未獲取此裝置的 SMART 資料。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 93 + SMART data is loading. - SMART data is loading. + 正在載入 SMART 資料。 + + src/app/ceph/shared/smart-list/smart-list.component.html + 109 + - Smartctl has received an unknown argument (error code - ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. - - Smartctl 收到未知引數 (錯誤代碼 - )。您使用的可能是不相容的 smartmontools 版本。若要成功擷取資料,需使用 7.0 或更新版本的 smartmontools。 - + Smartctl has received an unknown argument (error code ). You may be using an incompatible version of smartmontools. Version >= 7.0 of smartmontools is required to successfully retrieve data. + Smartctl 收到未知引數 (錯誤代碼 )。您使用的可能是不相容的 smartmontools 版本。若要成功擷取資料,需使用 7.0 或更新版本的 smartmontools。 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 67,70 + - An error with error code - occurred. - - An error with error code - occurred. - + An error with error code occurred. + 發生錯誤,錯誤代碼 。 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 72 + Raw - Raw + 原始 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 176 + Threshold - Threshold + 閾值 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 177 + When Failed - When Failed + 失敗時 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 179 + Worst - Worst + 最差 + + src/app/ceph/shared/smart-list/smart-list.component.ts + 180 + Correction Algorithm Invocations - Correction Algorithm Invocations + + src/app/ceph/shared/smart-list/smart-list.component.ts + 186 + Errors Corrected by ECC (Delayed) - Errors Corrected by ECC (Delayed) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 190 + Errors Corrected by ECC (Fast) - Errors Corrected by ECC (Fast) + + src/app/ceph/shared/smart-list/smart-list.component.ts + 192 + Errors Corrected by Rereads/Rewrites - Errors Corrected by Rereads/Rewrites + + src/app/ceph/shared/smart-list/smart-list.component.ts + 195 + Gigabytes Processed - Gigabytes Processed + + src/app/ceph/shared/smart-list/smart-list.component.ts + 197 + Total Errors Corrected - Total Errors Corrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 198 + Total Errors Uncorrected - Total Errors Uncorrected + + src/app/ceph/shared/smart-list/smart-list.component.ts + 199 + Please set a new password. - Please set a new password. + 請設定一個新密碼。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 2 + You will be redirected to the login page afterwards. - You will be redirected to the login page afterwards. + 之後,系統會將您重新導向至登入頁面。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 3 + The old and new passwords must be different. - The old and new passwords must be different. + 新舊密碼必須不同。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 27 + + + src/app/core/auth/login-password-form/login-password-form.component.html + 55 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 33 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 72 + Password confirmation doesn't match the new password. 確認密碼與新密碼不符。 + + src/app/core/auth/login-password-form/login-password-form.component.html + 80 + + + src/app/core/auth/user-password-form/user-password-form.component.html + 102 + Username is required - Username is required + 需要提供使用者名稱 + + src/app/core/auth/login/login.component.html + 26 + Password is required - Password is required + 需要提供密碼 + + src/app/core/auth/login/login.component.html + 48 + Log in 登入 + + src/app/core/auth/login/login.component.html + 63 + Scope 範圍 + + src/app/core/auth/role-details/role-details.component.ts + 27 + Create - Create + 建立 + + src/app/core/auth/role-details/role-details.component.ts + 39 + + + src/app/core/auth/role-form/role-form.component.ts + 80 + + + src/app/shared/constants/app.constants.ts + 153 + Update - Update + 更新 + + src/app/core/auth/role-details/role-details.component.ts + 46 + + + src/app/core/auth/role-form/role-form.component.ts + 86 + + + src/app/shared/constants/app.constants.ts + 175 + Delete - Delete + 刪除 + + src/app/core/auth/role-details/role-details.component.ts + 53 + + + src/app/core/auth/role-form/role-form.component.ts + 92 + + + src/app/shared/constants/app.constants.ts + 162 + Description... - Description... + 描述... + + src/app/core/auth/role-form/role-form.component.html + 45 + Permissions - Permissions + 許可權 + + src/app/core/auth/role-form/role-form.component.html + 55 + role - role + 角色 + + src/app/core/auth/role-form/role-form.component.ts + 49 + - Created role ' - ' - - Created role ' - ' - + Created role '' + 已建立角色 "" + + src/app/core/auth/role-form/role-form.component.ts + 153 + - Updated role ' - ' - - Updated role ' - ' - + Updated role '' + 已更新角色 "" + + src/app/core/auth/role-form/role-form.component.ts + 169 + System Role 系統角色 + + src/app/core/auth/role-list/role-list.component.ts + 100 + - Deleted role ' - ' - - Deleted role ' - ' - + Deleted role '' + 已刪除角色 "" + + src/app/core/auth/role-list/role-list.component.ts + 127 + New name - New name + 新名稱 + + src/app/core/auth/role-list/role-list.component.ts + 152 + Clone Role - Clone Role + 克隆角色 + + src/app/core/auth/role-list/role-list.component.ts + 156 + + + src/app/core/auth/role-list/role-list.component.ts + 157 + - Cloned role ' - ' from ' - ' - - Cloned role ' - ' from ' - ' - + Cloned role '' from '' + 已從 "" 克隆角色 "" + + src/app/core/auth/role-list/role-list.component.ts + 163 + White spaces at the beginning and end will be trimmed - White spaces at the beginning and end will be trimmed + + src/app/core/auth/user-form/user-form.component.html + 27 + The username already exists. - The username already exists. + 該使用者名稱已存在。 + + src/app/core/auth/user-form/user-form.component.html + 35 + Confirm password - Confirm password + 確認密碼 + + src/app/core/auth/user-form/user-form.component.html + 85 + Password confirmation doesn't match the password. - Password confirmation doesn't match the password. + 確認的密碼與之前輸入的密碼不符。 + + src/app/core/auth/user-form/user-form.component.html + 101 + Password expiration date - Password expiration date + 密碼過期日期 + + src/app/core/auth/user-form/user-form.component.html + 115 + Password expiration date... - Password expiration date... + 密碼過期日期... + + src/app/core/auth/user-form/user-form.component.html + 135 + Email - Email + 電子郵件 + + src/app/core/auth/user-form/user-form.component.html + 175 + Invalid email. - Invalid email. + 電子郵件無效。 + + src/app/core/auth/user-form/user-form.component.html + 186 + User must change password at next logon - User must change password at next logon + 使用者下次登入時必須變更密碼 + + src/app/core/auth/user-form/user-form.component.html + 233 + - You are about to remove "user read / update" permissions from your own user. - You are about to remove "user read / update" permissions from your own user. + You are about to remove "user read / update" permissions from your own user. + 您即將為您自己的使用者移除 "使用者讀取/更新" 許可權。 + + src/app/core/auth/user-form/user-form.component.html + 250 + If you continue, you will no longer be able to add or remove roles from any user. - If you continue, you will no longer be able to add or remove roles from any user. + 若繼續,您將再也無法為任何使用者新增或移除角色。 + + src/app/core/auth/user-form/user-form.component.html + 252 + There are no roles. - There are no roles. + 沒有角色。 + + src/app/core/auth/user-form/user-form.component.ts + 49 + + + src/app/core/auth/user-form/user-form.component.ts + 76 + - Created user ' - ' - - 已建立使用者 " - " - + Created user '' + 已建立使用者 "" + + src/app/core/auth/user-form/user-form.component.ts + 208 + Update user - Update user + 更新使用者 + + src/app/core/auth/user-form/user-form.component.ts + 221 + You were automatically logged out because your roles have been changed. - You were automatically logged out because your roles have been changed. + 您已被自動登出,因為您的角色發生了變更。 + + src/app/core/auth/user-form/user-form.component.ts + 277 + - Updated user ' - ' - - Updated user ' - ' - + Updated user '' + 已更新使用者 "" + + src/app/core/auth/user-form/user-form.component.ts + 283 + User's password is about to expire - User's password is about to expire + + src/app/core/auth/user-list/user-list.component.html + 41 + Email - Email + 電子郵件 + + src/app/core/auth/user-list/user-list.component.ts + 98 + Roles - Roles + 角色 + + src/app/core/auth/user-list/user-list.component.ts + 104 + Password expires - Password expires + + src/app/core/auth/user-list/user-list.component.ts + 116 + - Deleted user ' - ' - - Deleted user ' - ' - + Deleted user '' + 已刪除使用者 "" + + src/app/core/auth/user-list/user-list.component.ts + 156 + - Failed to delete user ' - ' - - Failed to delete user ' - ' - + Failed to delete user '' + 無法刪除使用者 "" + + src/app/core/auth/user-list/user-list.component.ts + 171 + - You are currently logged in as ' - '. - - You are currently logged in as ' - '. - + You are currently logged in as ''. + 您目前是以 "" 身分登入的。 + + src/app/core/auth/user-list/user-list.component.ts + 172 + Old password - Old password + 舊密碼 + + src/app/core/auth/user-password-form/user-password-form.component.html + 14 + New password - New password + 新密碼 + + src/app/core/auth/user-password-form/user-password-form.component.html + 42 + Confirm new password - Confirm new password + 確認新密碼 + + src/app/core/auth/user-password-form/user-password-form.component.html + 84 + password - password + 密碼 + + src/app/core/auth/user-password-form/user-password-form.component.ts + 42 + - Updated user password" - Updated user password" + Updated user password" + 已更新使用者密碼" + + src/app/core/auth/user-password-form/user-password-form.component.ts + 116 + Selected Object Gateway: - Selected Object Gateway: + 所選物件閘道: + + src/app/core/context/context.component.html + 5 + Select Object Gateway - Select Object Gateway + 所選物件閘道 + + src/app/core/context/context.component.html + 12 + - Please consult the - documentation - on how to configure and enable the - management functionality. - - Please consult the - documentation - on how to configure and enable the - management functionality. - + Please consult the documentation on how to configure and enable the management functionality. + + src/app/core/error/error.component.html + 17,19 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 29 + + + src/app/core/error/error.component.html + 45 + - [object Object] - [object Object] + + + src/app/core/error/error.component.html + 33 + - - Page not Found - - - - Page not Found - - + Page not Found + 找不到頁面 + + src/app/core/error/error.component.html + 53 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. + 抱歉,我們找不到您要尋找的內容。您所要求的頁面可能已變更或已移動。 + + src/app/core/error/error.component.html + 56,57 + Go To Dashboard - Go To Dashboard + 移至儀表板 + + src/app/core/error/error.component.html + 65 + Page Not Found - Page Not Found + 找不到頁面 + + src/app/core/error/error.ts + 10 + Sorry, we couldn’t find what you were looking for. The page you requested may have been changed or moved. - Sorry, we couldn’t find what you were looking for. - The page you requested may have been changed or moved. + 抱歉,我們找不到您要尋找的內容。 +您所要求的頁面可能已變更或已移動。 + + src/app/core/error/error.ts + 11,12 + Access Denied 拒絕存取 + + src/app/core/error/error.ts + 17 + + + src/app/shared/services/api-interceptor.service.ts + 79 + Sorry, you don’t have permission to view this page or resource. - Sorry, you don’t have permission to view this page or resource. + 抱歉,您無權檢視此頁面或資源。 + + src/app/core/error/error.ts + 18 + + + src/app/shared/services/api-interceptor.service.ts + 78 + User Denied - User Denied + 已拒絕使用者 + + src/app/core/error/error.ts + 23 + Sorry, the user does not exist in Ceph. You'll be logged out from the Identity Provider when you retry logging in. 抱歉,Ceph 中不存在該使用者。 當您嘗試重新登入時,將會從該身分提供者中登出。 + + src/app/core/error/error.ts + 24,25 + - [object Object] - [object Object] + + + + src/app/core/layouts/login-layout/login-layout.component.html + 24 + Help - Help + 說明 + + src/app/core/layouts/login-layout/login-layout.component.ts + 10 + Security 安全性 + + src/app/core/layouts/login-layout/login-layout.component.ts + 11 + Trademarks - Trademarks + 商標 + + src/app/core/layouts/login-layout/login-layout.component.ts + 12 + Dashboard Settings - Dashboard Settings + 儀表板設定 + + src/app/core/navigation/administration/administration.component.html + 7 + + + src/app/core/navigation/administration/administration.component.html + 11 + User management 使用者管理 + + src/app/core/navigation/administration/administration.component.html + 17 + Telemetry configuration - Telemetry configuration + 遙測組態 + + src/app/core/navigation/administration/administration.component.html + 21 + Help - Help + 說明 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 5 + + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 9 + documentation - documentation + 文件 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 17 + API API + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 21 + About - About + 關於 + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 24 + Report an issue... - Report an issue... + + src/app/core/navigation/dashboard-help/dashboard-help.component.html + 27 + Logged in user - Logged in user + 登入的使用者 + + src/app/core/navigation/identity/identity.component.html + 5 + + + src/app/core/navigation/identity/identity.component.html + 9 + - Logged in as - - - - - Logged in as - - - - + Logged in as + + src/app/core/navigation/identity/identity.component.html + 14 + Change password - Change password + 變更密碼 + + src/app/core/navigation/identity/identity.component.html + 20 + Log out - Log out + + src/app/core/navigation/identity/identity.component.html + 25 + Toggle navigation - Toggle navigation + 切換導覽 + + src/app/core/navigation/navigation/navigation.component.html + 25 + - - - Dashboard - - - - Dashboard - + Dashboard + + src/app/core/navigation/navigation/navigation.component.html + 85,86 + - - - Cluster - - - - Cluster - + Cluster + + src/app/core/navigation/navigation/navigation.component.html + 106,108 + CRUSH map - CRUSH map + CRUSH 地圖 + + src/app/core/navigation/navigation/navigation.component.html + 141 + - - - Block - - - - Block - + Block + + src/app/core/navigation/navigation/navigation.component.html + 164,166 + iSCSI iSCSI + + src/app/core/navigation/navigation/navigation.component.html + 195 + NVMe/TCP - NVMe/TCP + + src/app/core/navigation/navigation/navigation.component.html + 201 + - - - Object - - - - Object - + Object + + src/app/core/navigation/navigation/navigation.component.html + 216,218 + Buckets - Buckets + 桶 + + src/app/core/navigation/navigation/navigation.component.html + 231 + Multi-site - Multi-site + + src/app/core/navigation/navigation/navigation.component.html + 241 + NFS NFS + + src/app/core/navigation/navigation/navigation.component.html + 253 + + + src/app/core/navigation/navigation/navigation.component.html + 288 + - - - File - - - - File - + File + + src/app/core/navigation/navigation/navigation.component.html + 269,271 + File Systems - File Systems + 檔案系統 + + src/app/core/navigation/navigation/navigation.component.html + 281 + - - - Observability - - - - Observability - + Observability + + src/app/core/navigation/navigation/navigation.component.html + 304,306 + Logs - Logs + 記錄 + + src/app/core/navigation/navigation/navigation.component.html + 315 + - - - Administration - - - - Administration - + Administration + + src/app/core/navigation/navigation/navigation.component.html + 340,342 + Upgrade - Upgrade + + src/app/core/navigation/navigation/navigation.component.html + 357 + Ceph Users - Ceph Users + + src/app/core/navigation/navigation/navigation.component.html + 363 + Manager Modules - Manager Modules + 管理員模組 + + src/app/core/navigation/navigation/navigation.component.html + 369 + Tasks and Notifications - Tasks and Notifications + 任務與通知 + + src/app/core/navigation/notifications/notifications.component.html + 2 + + + src/app/core/navigation/notifications/notifications.component.html + 10 + + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 127 + - Every - - - - Every - - - + Every + + src/app/shared/api/cephfs-snapshot-schedule.service.ts + 169 + The name of the node under which data should be placed. - The name of the node under which data should be placed. + 應用於存放資料的節點名稱。 + + src/app/shared/api/crush-rule.service.ts + 14 + The type of CRUSH nodes across which we should separate replicas. - The type of CRUSH nodes across which we should separate replicas. + 我們應為其分隔複本的 CRUSH 節點類型。 + + src/app/shared/api/crush-rule.service.ts + 15 + The device class on which to place data. - The device class on which to place data. + + src/app/shared/api/crush-rule.service.ts + 16 + + + src/app/shared/api/erasure-code-profile.service.ts + 94 + Each object is split in data-chunks parts, each stored on a different OSD. 各物件都被分割成資料區塊部分,分別儲存於不同的 OSD。 + + src/app/shared/api/erasure-code-profile.service.ts + 16 + Compute coding chunks for each object and store them on different OSDs. The number of coding chunks is also the number of OSDs that can be down without losing data. - Compute coding chunks for each object and store them on different OSDs. - The number of coding chunks is also the number of OSDs that can be down without losing data. + 運算各物件的編碼區塊并將它們儲存到不同的 OSD。 + 編碼區塊的數量等同於在不遺失資料的前提下,可停機的 OSD 數量。 + + src/app/shared/api/erasure-code-profile.service.ts + 18,19 + The jerasure plugin is the most generic and flexible plugin, it is also the default for Ceph erasure coded pools. - The jerasure plugin is the most generic and flexible plugin, - it is also the default for Ceph erasure coded pools. + Jerasure 外掛程式是最通用、最靈活的外掛程式, + 也是 Ceph 糾刪碼池的預設外掛程式。 + + src/app/shared/api/erasure-code-profile.service.ts + 23,24 + The more flexible technique is reed_sol_van : it is enough to set k and m. The cauchy_good technique can be faster but you need to chose the packetsize carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents in the sense that they can only be configured with m=2. - The more flexible technique is reed_sol_van : it is enough to set k - and m. The cauchy_good technique can be faster but you need to chose the packetsize - carefully. All of reed_sol_r6_op, liberation, blaum_roth, liber8tion are RAID6 equivalents - in the sense that they can only be configured with m=2. + Reed_sol_van 方法更靈活︰它足以設定 k + 和 m。Cauchy_good 方法更快,但您需要小心選擇封包大小。 + reed_sol_r6_op、liberation、blaum_roth、liber8tion 都是與 + RAID6 等價的方法,只能為其設定 m=2。 + + src/app/shared/api/erasure-code-profile.service.ts + 25,28 + The encoding will be done on packets of bytes size at a time. Choosing the right packet size is difficult. The jerasure documentation contains extensive information on this topic. - The encoding will be done on packets of bytes size at a time. - Choosing the right packet size is difficult. - The jerasure documentation contains extensive information on this topic. + 一次將對多少位元組的封包進行編碼。 + 選擇合適的封包大小很難。 + Jerasure 文件中包含了關於此主題的詳盡資訊。 + + src/app/shared/api/erasure-code-profile.service.ts + 29,31 + With the jerasure plugin, when an erasure coded object is stored on @@ -8833,15 +17319,19 @@ less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create an additional parity chunk for every four OSDs. When a single OSD is lost, it can be recovered with only four OSDs instead of eleven. - With the jerasure plugin, when an erasure coded object is stored on - multiple OSDs, recovering from the loss of one OSD requires reading from all the others. - For instance if jerasure is configured with k=8 and m=4, losing one OSD requires reading - from the eleven others to repair. + 使用 jerasure 外掛程式時,若糾刪碼物件儲存於 + 多個 OSD 上,則復原一個遺失的 OSD 時需要讀取所有其他 OSD。 + 例如,若 jerasure 設定為 k=8 且 m=4,則遺失一個 OSD 後需讀取 + 其他十一個 OSD 才能修復。 - The lrc erasure code plugin creates local parity chunks to be able to recover using - less OSDs. For instance if lrc is configured with k=8, m=4 and l=4, it will create - an additional parity chunk for every four OSDs. When a single OSD is lost, it can be - recovered with only four OSDs instead of eleven. + Lrc 糾刪碼外掛程式會建立本地同位區塊,因此只需較少的 OSD 即 + 可復原。例如,若 lrc 設定為 k=8、m=4 且 l=4,它將為每四個 OSD + 建立一個額外的同位區塊。這樣,當一個 OSD 遺失時,它只需四個 OSD + 即可復原,而不需要十一個。 + + src/app/shared/api/erasure-code-profile.service.ts + 34,42 + Group the coding and data chunks into sets of size locality. For instance, @@ -8850,6 +17340,10 @@ 將編碼區塊和資料區塊分組為大小為 locality 的集合。例如, k=4 且 m=2 時,若 locality=3,則會建立 2 個大小為 3 的組。這樣,各組都能 自行復原,而無需從另一組讀取區塊。 + + src/app/shared/api/erasure-code-profile.service.ts + 43,45 + The type of the crush bucket in which each set of chunks defined @@ -8860,38 +17354,62 @@ 例如,若設定為機架,則各組 l 區塊將會被放置到不同的 機架中。該值用於建立類似 step choose rack 的 CRUSH 規則步驟。若未設定,則不會進行此類分組。 + + src/app/shared/api/erasure-code-profile.service.ts + 46,49 + The isa plugin encapsulates the ISA library. It only runs on Intel processors. - The isa plugin encapsulates the ISA library. It only runs on Intel processors. + Isa 外掛程式封裝了 ISA 程式庫,只能在 Intel 處理器上執行。 + + src/app/shared/api/erasure-code-profile.service.ts + 52 + The ISA plugin comes in two Reed Solomon forms. If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. - The ISA plugin comes in two Reed Solomon forms. - If reed_sol_van is set, it is Vandermonde, if cauchy is set, it is Cauchy. + ISA 外掛程式包含兩種 Reed Solomon 格式。 + 若設定為 reed_sol_van,表示使用 Vandermonde。若設定為 cauchy,表示使用 Cauchy。 + + src/app/shared/api/erasure-code-profile.service.ts + 53,54 + The shec plugin encapsulates the multiple SHEC library. It allows ceph to recover data more efficiently than Reed Solomon codes. Shec 外掛程式封裝了多個 SHEC 程式庫。 與 Reed Solomon 代碼相比,它可讓 ceph 更有效地復原資料。 + + src/app/shared/api/erasure-code-profile.service.ts + 57,58 + The number of parity chunks each of which includes each data chunk in its calculation range. The number is used as a durability estimator. For instance, if c=2, 2 OSDs can be down without losing data. - The number of parity chunks each of which includes each data chunk in its - calculation range. The number is used as a durability estimator. For instance, if c=2, - 2 OSDs can be down without losing data. + 同位區塊的數量,它們在各自的計算範圍內包含了 + 各資料區塊。該數值用做持久性估值。例如,若 c=2, + 則在不遺失資料的前提下,可有 2 個 OSD 停機。 + + src/app/shared/api/erasure-code-profile.service.ts + 59,61 + CLAY (short for coupled-layer) codes are erasure codes designed to bring about significant savings in terms of network bandwidth and disk IO when a failed node/OSD/rack is being repaired. - CLAY (short for coupled-layer) codes are erasure codes designed to - bring about significant savings in terms of network bandwidth and disk IO when a failed - node/OSD/rack is being repaired. + CLAY (耦合層縮寫) 代碼是糾刪碼,可用於 + 在修復故障節點/OSD/機架時大幅節省 + 網路頻寬和磁碟 IO。 + + src/app/shared/api/erasure-code-profile.service.ts + 64,66 + Number of OSDs requested to send data during recovery of a single chunk. @@ -8899,12 +17417,20 @@ the savings. 復原單個區塊期間申請傳送資料的 ODS 數量。 選擇的 d 應大於等於 k+1 且小於等於 k+m-1。d 越大,節省的越多。 + + src/app/shared/api/erasure-code-profile.service.ts + 67,69 + scalar_mds specifies the plugin that is used as a building block in the layered construction. It can be one of jerasure, isa, shec. - scalar_mds specifies the plugin that is used as a building block - in the layered construction. It can be one of jerasure, isa, shec. + Scalar_mds 指定分層建構中做為建置組塊使用 + 的外掛程式。可以是 jerasure、isa、shec 之一。 + + src/app/shared/api/erasure-code-profile.service.ts + 70,71 + technique specifies the technique that will be picked @@ -8912,1738 +17438,2845 @@ are 'reed_sol_van', 'reed_sol_r6_op', 'cauchy_orig', 'cauchy_good', 'liber8tion' for jerasure, 'reed_sol_van', 'cauchy' for isa and 'single', 'multiple' for shec. - 方法指定將會在所指定的 "scalar_mds" 外掛程式中 + 方法指定將會在所指定的 "scalar_mds" 外掛程式中 選取的方法。支援的方法包括 - "reed_sol_van"、"reed_sol_r6_op"、"cauchy_orig"、 - "cauchy_good"、"liber8tion” (用於 jerasure)、"reed_sol_van"、 - "cauchy” (用於 isa),"single"、"multiple” (用於 shec)。 + "reed_sol_van"、"reed_sol_r6_op"、"cauchy_orig"、 + "cauchy_good"、"liber8tion” (用於 jerasure)、"reed_sol_van"、 + "cauchy” (用於 isa),"single"、"multiple” (用於 shec)。 + + src/app/shared/api/erasure-code-profile.service.ts + 72,76 + The name of the crush bucket used for the first step of the CRUSH rule. For instance step take default. - The name of the crush bucket used for the first step of the CRUSH rule. - For instance step take default. + CRUSH 規則的第一步所指向的 CRUSH 桶名稱。 + 例如 step take default。 + + src/app/shared/api/erasure-code-profile.service.ts + 80,81 + Ensure that no two chunks are in a bucket with the same failure domain. For instance, if the failure domain is host no two chunks will be stored on the same host. It is used to create a CRUSH rule step such as step chooseleaf host. - Ensure that no two chunks are in a bucket with the same failure - domain. For instance, if the failure domain is host no two chunks will be stored on the same - host. It is used to create a CRUSH rule step such as step chooseleaf host. + 確定兩個區塊不會存在於同一故障網域的桶中。 + 例如,若故障網域為主機,則不會有兩個區塊儲存於同一主機中。 + 該值用於建立類似 step chooseleaf host 的 CRUSH 規則步驟。 + + src/app/shared/api/erasure-code-profile.service.ts + 83,85 + Number of failure domains to map. Results in a CRUSH MSR rule being created. Must be specified if crush-osds-per-failure-domain is specified. - Number of failure domains to map. Results in a CRUSH MSR rule being created. - Must be specified if crush-osds-per-failure-domain is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 87,88 + Maximum number of OSDs to place in each failure domain -- defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. Must be specified if crush-num-failure-domains is specified. - Maximum number of OSDs to place in each failure domain -- - defaults to 1. Using a value greater than one will cause a CRUSH MSR rule to be created. - Must be specified if crush-num-failure-domains is specified. + + src/app/shared/api/erasure-code-profile.service.ts + 90,92 + Set the directory name from which the erasure code plugin is loaded. 設定糾刪碼外掛程式所在目錄的名稱。 + + src/app/shared/api/erasure-code-profile.service.ts + 96 + Allows all operations - Allows all operations + 允許所有操作 + + src/app/shared/api/nfs.service.ts + 23 + Allows only operations that do not modify the server - Allows only operations that do not modify the server + 僅允許不修改伺服器的操作 + + src/app/shared/api/nfs.service.ts + 27 + Allows no access at all - Allows no access at all + 完全禁止存取 + + src/app/shared/api/nfs.service.ts + 31 + Please specify a filesystem volume. 請指定檔案系統磁碟區。 + + src/app/shared/api/nfs.service.ts + 96 + The feature is disabled because Orchestrator is not available. - The feature is disabled because Orchestrator is not available. + 該功能已停用,因為 Orchestrator 不可用。 + + src/app/shared/api/orchestrator.service.ts + 17 + The Orchestrator backend doesn't support this feature. - The Orchestrator backend doesn't support this feature. + Orchestrator 後端不支援此功能。 + + src/app/shared/api/orchestrator.service.ts + 18 + -- Select the priority -- - -- Select the priority -- + -- 選取優先程度 -- + + src/app/shared/api/osd.service.ts + 34 + Low - Low + 低 + + src/app/shared/api/osd.service.ts + 44 + High - High + 高 + + src/app/shared/api/osd.service.ts + 64 + The user list data might be stale. If needed, you can manually reload it. - The user list data might be stale. If needed, you can manually reload it. + 使用者清單資料可能已過時。如果需要,您可以手動方式重新載入這些資料。 + + src/app/shared/classes/list-with-details.class.ts + 23 + - Retrieving data for - . - - Retrieving data for - . - + Retrieving data for . + 正在擷取 的資料。 + + src/app/shared/classes/table-status-view-cache.ts + 16 + Retrieving data. - Retrieving data. + 正在擷取資料。 + + src/app/shared/classes/table-status-view-cache.ts + 16 + Please wait... 請稍候... + + src/app/shared/classes/table-status-view-cache.ts + 18 + - Displaying previously cached data for - . - - Displaying previously cached data for - . - + Displaying previously cached data for . + 正在顯示之前快取的 資料。 + + src/app/shared/classes/table-status-view-cache.ts + 23 + Displaying previously cached data. - Displaying previously cached data. + 正在顯示之前快取的資料。 + + src/app/shared/classes/table-status-view-cache.ts + 24 + - Could not load data for - . - - Could not load data for - . - + Could not load data for . + 無法載入 的資料。 + + src/app/shared/classes/table-status-view-cache.ts + 30 + Could not load data. - Could not load data. + 無法載入資料。 + + src/app/shared/classes/table-status-view-cache.ts + 31 + Please check the cluster health. - Please check the cluster health. + 請檢查叢集狀態。 + + src/app/shared/classes/table-status-view-cache.ts + 33 + Error - Error + 錯誤 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 47 + Information - Information + 資訊 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 52 + Success - Success + 成功 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 57 + Danger - Danger + 危險 + + src/app/shared/components/alert-panel/alert-panel.component.ts + 62 + - - - - - - - - - - s - - - - - - - - - - - - s - - + s + + src/app/shared/components/card-row/card-row.component.html + 8,12 + Remove the custom configuration value. The default configuration will be inherited and used instead. - Remove the custom configuration value. The default configuration will be inherited and used instead. + 移除自訂組態值。將繼承並使用預設組態。 + + src/app/shared/components/config-option/config-option.component.html + 50 + - The entered value is too high! It must not be greater than - . - - The entered value is too high! It must not be greater than - . - + The entered value is too high! It must not be greater than . + 輸入的值過大!值不得大於 。 + + src/app/shared/components/config-option/config-option.component.html + 66 + - The entered value is too low! It must not be lower than - . - - The entered value is too low! It must not be lower than - . - + The entered value is too low! It must not be lower than . + 輸入的值過小!值不得小於 。 + + src/app/shared/components/config-option/config-option.component.html + 69 + Copy to Clipboard - Copy to Clipboard + 複製到剪貼簿 + + src/app/shared/components/copy2clipboard-button/copy2clipboard-button.component.html + 12 + - Are you sure that you want to - - - - ? - - Are you sure that you want to - - - - ? - + Are you sure that you want to ? + 您確定要嗎? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 17 + - Are you sure that you want to - the selected items? - - 您確定要 - 選取的項目嗎? - + Are you sure that you want to the selected items? + 您確定要選取的項目嗎? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 19 + - Are you sure that you want to - the selected - ? - - Are you sure that you want to - the selected - ? - + Are you sure that you want to the selected ? + 您確定要選取的嗎? + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 26 + Yes, I am sure. 是的,我確定。 + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 40 + + + + Resource Name + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 45 + + + + Enter the correct resource name. + + src/app/shared/components/delete-confirmation-modal/delete-confirmation-modal.component.html + 59 + documentation 文件 + + src/app/shared/components/doc/doc.component.ts + 12 + Download 下載 + + src/app/shared/components/download-button/download-button.component.ts + 15 + Advanced - Advanced + + src/app/shared/components/form-advanced-fieldset/form-advanced-fieldset.component.html + 10,11 + This field is required. - This field is required. + 此欄位為必填欄位。 + + src/app/shared/components/form-modal/form-modal.component.ts + 105 + Size must be a number or in a valid format. eg: 5 GiB - Size must be a number or in a valid format. eg: 5 GiB + + src/app/shared/components/form-modal/form-modal.component.ts + 108 + An error occurred. - An error occurred. + 發生錯誤。 + + src/app/shared/components/form-modal/form-modal.component.ts + 110 + Loading panel data... - Loading panel data... + 正在載入面板資料... + + src/app/shared/components/grafana/grafana.component.html + 3 + - Please consult the - - on how to configure and enable the monitoring functionality. - - Please consult the - - on how to configure and enable the monitoring functionality. - + Please consult the on how to configure and enable the monitoring functionality. + 請參閱 以瞭解如何設定和啟用監控功能。 + + src/app/shared/components/grafana/grafana.component.html + 7,8 + - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - - Grafana Dashboard doesn't exist. Please refer to - - on how to add dashboards to Grafana. - + Grafana Dashboard doesn't exist. Please refer to on how to add dashboards to Grafana. + Grafana 儀表板不存在。請參閱 以瞭解如何新增儀表板至 Grafana。 + + src/app/shared/components/grafana/grafana.component.html + 12,13 + Grafana Time Picker - Grafana Time Picker + Grafana 時間選擇器 + + src/app/shared/components/grafana/grafana.component.html + 21 + Reset Settings - Reset Settings + 重設設定 + + src/app/shared/components/grafana/grafana.component.html + 37 + Show hidden information - Show hidden information + + src/app/shared/components/grafana/grafana.component.html + 45 + - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - - If no embedded Grafana Dashboard appeared below, please follow - this link - to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions - + If no embedded Grafana Dashboard appeared below, please follow this link to check if Grafana is reachable and there are no HTTPS certificate issues. You may need to reload this page after accepting any Browser certificate exceptions + + src/app/shared/components/grafana/grafana.component.html + 61,64 + Last 1 hour (Default) - Last 1 hour (Default) + 過去 1 小時 (預設值) + + src/app/shared/components/grafana/grafana.component.ts + 58 + Yesterday 昨天 + + src/app/shared/components/grafana/grafana.component.ts + 78 + Today so far - Today so far + 今天到目前為止 + + src/app/shared/components/grafana/grafana.component.ts + 82 + Day before yesterday - Day before yesterday + 前天 + + src/app/shared/components/grafana/grafana.component.ts + 86 + Last 2 days - Last 2 days + 過去 2 天 + + src/app/shared/components/grafana/grafana.component.ts + 90 + This day last week - This day last week + 上週的今天 + + src/app/shared/components/grafana/grafana.component.ts + 94 + Previous week 上週 + + src/app/shared/components/grafana/grafana.component.ts + 98 + This week so far - This week so far + 本週目前為止 + + src/app/shared/components/grafana/grafana.component.ts + 102 + Last 7 days - Last 7 days + 過去 7 天 + + src/app/shared/components/grafana/grafana.component.ts + 106 + Previous month - Previous month + 上個月 + + src/app/shared/components/grafana/grafana.component.ts + 110 + This month so far - This month so far + 本月目前為止 + + src/app/shared/components/grafana/grafana.component.ts + 114 + Last 30 days - Last 30 days + 過去 30 天 + + src/app/shared/components/grafana/grafana.component.ts + 118 + Last 90 days - Last 90 days + 過去 90 天 + + src/app/shared/components/grafana/grafana.component.ts + 122 + Last 6 months - Last 6 months + 過去 6 個月 + + src/app/shared/components/grafana/grafana.component.ts + 126 + Last 1 year - Last 1 year + 過去 1 年 + + src/app/shared/components/grafana/grafana.component.ts + 130 + Previous year - Previous year + 去年 + + src/app/shared/components/grafana/grafana.component.ts + 134 + This year so far - This year so far + 今年目前為止 + + src/app/shared/components/grafana/grafana.component.ts + 138 + Last 2 years - Last 2 years + 過去 2 年 + + src/app/shared/components/grafana/grafana.component.ts + 142 + Last 5 years - Last 5 years + 過去 5 年 + + src/app/shared/components/grafana/grafana.component.ts + 146 + Select a Language - Select a Language + 選取語言 + + src/app/shared/components/language-selector/language-selector.component.html + 7 + Clear notifications - Clear notifications + 清除通知 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 51 + Remove notification - Remove notification + 移除通知 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 69 + Silence Alert - Silence Alert + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 76 + Expire Silence - Expire Silence + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 83 + Duration: 持續時間: + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 96 + There are no notifications. - There are no notifications. + 沒有通知。 + + src/app/shared/components/notifications-sidebar/notifications-sidebar.component.html + 119 + The feature is not supported in the current Orchestrator. - The feature is not supported in the current Orchestrator. + 目前的 Orchestrator 不支援該功能。 + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 3 + - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - - Orchestrator is not available. Please consult the - - on how to configure and enable the functionality. - + Orchestrator is not available. Please consult the on how to configure and enable the functionality. + Orchestrator 不可用。請參閱 以瞭解如何設定和啟用該功能。 + + src/app/shared/components/orchestrator-doc-panel/orchestrator-doc-panel.component.html + 7,9 + - Your password will expire in - less than 1 - day. Click - here - to change it now. - - Your password will expire in - less than 1 - day. Click - here - to change it now. - + Your password will expire in less than 1 day. Click here to change it now. + 您的密碼將在 1 天內過期。請按一下此處以立即變更。 + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 9,11 + - Your password will expire in - - - day(s). Click - here - to change it now. - - Your password will expire in - - - day(s). Click - here - to change it now. - + Your password will expire in day(s). Click here to change it now. + 您的密碼將在 天內過期。請按一下此處以立即變更。 + + src/app/shared/components/pwd-expiration-notification/pwd-expiration-notification.component.html + 13,15 + Refresh - Refresh + 重新整理 + + src/app/shared/components/refresh-selector/refresh-selector.component.html + 7 + No items selected. - No items selected. + 未選取項目。 + + src/app/shared/components/select/select-messages.model.ts + 12 + Deselect item to select again - Deselect item to select again + 取消選取項目以再次選取 + + src/app/shared/components/select/select-messages.model.ts + 14 + Selection limit reached - Selection limit reached + 已達到選取上限 + + src/app/shared/components/select/select-messages.model.ts + 15 + Filter tags - Filter tags + 過濾標記 + + src/app/shared/components/select/select-messages.model.ts + 17 + Add badge - Add badge + 新增徽章 + + src/app/shared/components/select/select-messages.model.ts + 18 + There are no items available. - There are no items available. + 沒有可用的項目。 + + src/app/shared/components/select/select-messages.model.ts + 19 + - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - - The Ceph community needs your help to continue improving: please - Activate - the - Telemetry - module. - + The Ceph community needs your help to continue improving: please Activate the Telemetry module. + Ceph 需要您的幫助以持續改進:請啟用遙測模組。 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.html + 8,11 + Telemetry activation reminder muted - Telemetry activation reminder muted + 遙測啟用提醒功能已停用 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 57 + You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. - You can activate the module on the Telemetry configuration page (<b>Dashboard Settings</b> -> <b>Telemetry configuration</b>) at any time. + 您隨時可在 "遙測組態" 頁面 (<b>儀表板設定</b> -> <b>遙測組態</b>) 中啟用該模組。 + + src/app/shared/components/telemetry-notification/telemetry-notification.component.ts + 58,59 + Upgrade is paused - Upgrade is paused + + src/app/shared/components/upgradable/upgradable.component.html + 4,6 + - - - Upgrading - % - - - - Upgrading - % - + Upgrading % + + src/app/shared/components/upgradable/upgradable.component.html + 10,12 + - - - - Upgrade available - - - - - - Upgrade available - - + Upgrade available + + src/app/shared/components/upgradable/upgradable.component.html + 20,26 + usage - usage + + src/app/shared/components/usage-bar/usage-bar.component.ts + 26 + - [object Object] - [object Object] + + + src/app/shared/components/vertical-navigation/vertical-navigation.component.html + 3 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 12,13 + - [object Object] - [object Object] + + + src/app/shared/components/wizard/wizard.component.html + 13,14 + Export 輸出 + + src/app/shared/constants/app.constants.ts + 155 + Import - Import + 輸入 + + src/app/shared/constants/app.constants.ts + 157 + Migrate - Migrate + + src/app/shared/constants/app.constants.ts + 159 + Add - Add + 新增 + + src/app/shared/constants/app.constants.ts + 165 + Set - Set + 設定 + + src/app/shared/constants/app.constants.ts + 166 + Submit - Submit + 提交 + + src/app/shared/constants/app.constants.ts + 167 + Remove - Remove + 移除 + + src/app/shared/constants/app.constants.ts + 170 + Unset 取消設定 + + src/app/shared/constants/app.constants.ts + 171 + Cancel - Cancel + 取消 + + src/app/shared/constants/app.constants.ts + 176 + Preview 預覽 + + src/app/shared/constants/app.constants.ts + 177 + Move - Move + 移動 + + src/app/shared/constants/app.constants.ts + 178 + Next 下一步 + + src/app/shared/constants/app.constants.ts + 181 + Back - Back + 返回 + + src/app/shared/constants/app.constants.ts + 182 + Clone - Clone + 克隆 + + src/app/shared/constants/app.constants.ts + 185 + Copy - Copy + 複製 + + src/app/shared/constants/app.constants.ts + 186 + Deep Scrub - Deep Scrub + 深層整理 + + src/app/shared/constants/app.constants.ts + 187 + Destroy 損毀 + + src/app/shared/constants/app.constants.ts + 188 + Evict - Evict + 逐出 + + src/app/shared/constants/app.constants.ts + 189 + Flatten 壓平 + + src/app/shared/constants/app.constants.ts + 190 + Mark Down - Mark Down + 標示為停機 + + src/app/shared/constants/app.constants.ts + 191 + Mark In - Mark In + 標示為加入 + + src/app/shared/constants/app.constants.ts + 192 + Mark Lost - Mark Lost + 標示為遺失 + + src/app/shared/constants/app.constants.ts + 193 + Mark Out - Mark Out + 標示為除名 + + src/app/shared/constants/app.constants.ts + 194 + Protect - Protect + 保護 + + src/app/shared/constants/app.constants.ts + 195 + Rename - Rename + 重新命名 + + src/app/shared/constants/app.constants.ts + 197 + Restore - Restore + 還原 + + src/app/shared/constants/app.constants.ts + 198 + Reweight - Reweight + 重新設定權數 + + src/app/shared/constants/app.constants.ts + 199 + Scrub - Scrub + 整理 + + src/app/shared/constants/app.constants.ts + 201 + Show 顯示 + + src/app/shared/constants/app.constants.ts + 202 + Move to Trash - Move to Trash + 移至垃圾桶 + + src/app/shared/constants/app.constants.ts + 203 + Unprotect - Unprotect + 取消保護 + + src/app/shared/constants/app.constants.ts + 204 + Change 變更 + + src/app/shared/constants/app.constants.ts + 205 + + + src/app/shared/constants/app.constants.ts + 323 + Enter Maintenance - Enter Maintenance + 進入維護模式 + + src/app/shared/constants/app.constants.ts + 207 + Exit Maintenance - Exit Maintenance + 結束維護模式 + + src/app/shared/constants/app.constants.ts + 208 + Authorize - Authorize + + src/app/shared/constants/app.constants.ts + 209 + Start Drain - Start Drain + 開始清空 + + src/app/shared/constants/app.constants.ts + 211 + Stop Drain 停止清空 + + src/app/shared/constants/app.constants.ts + 212 + Resync - Resync + + src/app/shared/constants/app.constants.ts + 213 + Recreate - Recreate + 重新建立 + + src/app/shared/constants/app.constants.ts + 215 + Expire - Expire + 過期 + + src/app/shared/constants/app.constants.ts + 216 + Start - Start + + src/app/shared/constants/app.constants.ts + 218 + + + src/app/shared/constants/app.constants.ts + 329 + Stop - Stop + + src/app/shared/constants/app.constants.ts + 219 + + + src/app/shared/constants/app.constants.ts + 330 + Redeploy - Redeploy + + src/app/shared/constants/app.constants.ts + 220 + + + src/app/shared/constants/app.constants.ts + 331 + Restart - Restart + + src/app/shared/constants/app.constants.ts + 221 + + + src/app/shared/constants/app.constants.ts + 332 + Remove Scheduling - Remove Scheduling + + src/app/shared/constants/app.constants.ts + 223 + Promote - Promote + + src/app/shared/constants/app.constants.ts + 224 + Demote - Demote + + src/app/shared/constants/app.constants.ts + 225 + Start Upgrade - Start Upgrade + + src/app/shared/constants/app.constants.ts + 227 + Activate - Activate + + src/app/shared/constants/app.constants.ts + 229 + Deactivate - Deactivate + 停用 + + src/app/shared/constants/app.constants.ts + 230 + Attach - Attach + + src/app/shared/constants/app.constants.ts + 232 + Create NFS Export - Create NFS Export + + src/app/shared/constants/app.constants.ts + 235 + Deleted - Deleted + 已刪除 + + src/app/shared/constants/app.constants.ts + 289 + + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Added - Added + 已新增 + + src/app/shared/constants/app.constants.ts + 292 + + + src/app/shared/services/task-message.service.ts + 70 + Removed - Removed + 已移除 + + src/app/shared/constants/app.constants.ts + 295 + + + src/app/shared/services/task-message.service.ts + 71 + Edited - Edited + 已編輯 + + src/app/shared/constants/app.constants.ts + 298 + Canceled - Canceled + 已取消 + + src/app/shared/constants/app.constants.ts + 299 + Previewed - Previewed + 已預覽 + + src/app/shared/constants/app.constants.ts + 300 + Moved - Moved + 已移動 + + src/app/shared/constants/app.constants.ts + 301 + + + src/app/shared/services/task-message.service.ts + 256 + Cloned - Cloned + 已克隆 + + src/app/shared/constants/app.constants.ts + 304 + + + src/app/shared/services/task-message.service.ts + 204 + Copied - Copied + 已複製 + + src/app/shared/constants/app.constants.ts + 305 + + + src/app/shared/services/task-message.service.ts + 212 + Deep Scrubbed - Deep Scrubbed + 已深層整理 + + src/app/shared/constants/app.constants.ts + 306 + Destroyed - Destroyed + 已損毀 + + src/app/shared/constants/app.constants.ts + 307 + Flattened - Flattened + 已壓平 + + src/app/shared/constants/app.constants.ts + 308 + + + src/app/shared/services/task-message.service.ts + 219 + Marked Down - Marked Down + 已標示為停機 + + src/app/shared/constants/app.constants.ts + 309 + Marked In - Marked In + 已標示為加入 + + src/app/shared/constants/app.constants.ts + 310 + Marked Lost - Marked Lost + 已標示為遺失 + + src/app/shared/constants/app.constants.ts + 311 + Marked Out - Marked Out + 已標示為除名 + + src/app/shared/constants/app.constants.ts + 312 + Protected - Protected + 受保護 + + src/app/shared/constants/app.constants.ts + 313 + Purged 已清除 + + src/app/shared/constants/app.constants.ts + 314 + + + src/app/shared/services/task-message.service.ts + 274 + Renamed - Renamed + 已重新命名 + + src/app/shared/constants/app.constants.ts + 315 + Restored - Restored + 已還原 + + src/app/shared/constants/app.constants.ts + 316 + + + src/app/shared/services/task-message.service.ts + 263 + Reweighted - Reweighted + 已重新設定權數 + + src/app/shared/constants/app.constants.ts + 317 + Rolled back - Rolled back + 已復原 + + src/app/shared/constants/app.constants.ts + 318 + + + src/app/shared/services/task-message.service.ts + 250 + Scrubbed - Scrubbed + 已整理 + + src/app/shared/constants/app.constants.ts + 319 + Showed - Showed + 已顯示 + + src/app/shared/constants/app.constants.ts + 320 + Moved to Trash - Moved to Trash + 已移至垃圾桶 + + src/app/shared/constants/app.constants.ts + 321 + Unprotected - Unprotected + 已取消保護 + + src/app/shared/constants/app.constants.ts + 322 + Recreated - Recreated + 已重新建立 + + src/app/shared/constants/app.constants.ts + 326 + Expired 已過期 + + src/app/shared/constants/app.constants.ts + 327 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 10,12 + - [object Object] - [object Object] + + + src/app/shared/datatable/crud-table/crud-table.component.html + 38,39 + Ceph user export data - Ceph user export data + + src/app/shared/datatable/crud-table/crud-table.component.ts + 170 + Close - Close + 關閉 + + src/app/shared/datatable/crud-table/crud-table.component.ts + 171 + Pagination - Pagination + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 2 + Go to first page - Go to first page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 6 + Go to previous page - Go to previous page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 16 + Current page - Current page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 28 + Go to next page - Go to next page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 40 + Go to last page - Go to last page + + src/app/shared/datatable/table-pagination/table-pagination.component.html + 50 + Clear filters - Clear filters + 清除過濾器 + + src/app/shared/datatable/table/table.component.html + 160 + selected - selected - X selected + 選取的數目 + + src/app/shared/datatable/table/table.component.html + 221 + + X selected found - found - X found + 找到的數目 + + src/app/shared/datatable/table/table.component.html + 229 + + + src/app/shared/datatable/table/table.component.html + 236 + + X found total - total - X total + 總計 + + src/app/shared/datatable/table/table.component.html + 231 + + + src/app/shared/datatable/table/table.component.html + 237 + + X total - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328 + - [object Object] - [object Object] + + + src/app/shared/datatable/table/table.component.html + 328,330 + Expand/Collapse Row 展開/摺疊列 + + src/app/shared/datatable/table/table.component.html + 349 + Failed to load data. - Failed to load data. + 無法載入資料。 + + src/app/shared/datatable/table/table.component.ts + 663 + Loading form data... - Loading form data... + 正在載入表單資料... + + src/app/shared/directives/form-loading.directive.ts + 20 + Form data could not be loaded. - Form data could not be loaded. + 無法載入表單資料。 + + src/app/shared/directives/form-loading.directive.ts + 27 + - Size has to be at least - or more - - Size has to be at least - or more - + Size has to be at least or more + 大小必須小於或等於 + + src/app/shared/forms/cd-validators.ts + 439 + - Size has to be at most - or less - - Size has to be at most - or less - + Size has to be at most or less + 大小必須小於或等於 + + src/app/shared/forms/cd-validators.ts + 459 + - [object Object] - [object Object] - form title + + + src/app/shared/forms/crud-form/crud-form.component.html + 5,6 + + form title - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 4 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 4 + - [object Object] - [object Object] + + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 6 + + + src/app/shared/forms/crud-form/formly-object-type/formly-object-type.component.html + 6 + - - - Add - - - - - Add - - + Add + + src/app/shared/forms/crud-form/formly-array-type/formly-array-type.component.html + 32,34 + Yes - Yes + 是 + + src/app/shared/pipes/boolean-text.pipe.ts + 9 + No - No + 否 + + src/app/shared/pipes/boolean-text.pipe.ts + 10 + in %s - in %s + %s內 + + src/app/shared/pipes/relative-date.pipe.ts + 8 + %s ago - %s ago + %s前 + + src/app/shared/pipes/relative-date.pipe.ts + 9 + a few seconds - a few seconds + 幾秒 + + src/app/shared/pipes/relative-date.pipe.ts + 10 + %d seconds - %d seconds + %d 秒 + + src/app/shared/pipes/relative-date.pipe.ts + 11 + a minute - a minute + 1 分鐘 + + src/app/shared/pipes/relative-date.pipe.ts + 12 + %d minutes - %d minutes + %d 分鐘 + + src/app/shared/pipes/relative-date.pipe.ts + 13 + an hour - an hour + 1 小時 + + src/app/shared/pipes/relative-date.pipe.ts + 14 + %d hours - %d hours + %d 小時 + + src/app/shared/pipes/relative-date.pipe.ts + 15 + a day - a day + 1 天 + + src/app/shared/pipes/relative-date.pipe.ts + 16 + %d days - %d days + %d 天 + + src/app/shared/pipes/relative-date.pipe.ts + 17 + a week - a week + 1 週 + + src/app/shared/pipes/relative-date.pipe.ts + 18 + %d weeks - %d weeks + %d 週 + + src/app/shared/pipes/relative-date.pipe.ts + 19 + a month - a month + 1 個月 + + src/app/shared/pipes/relative-date.pipe.ts + 20 + %d months %d 個月 + + src/app/shared/pipes/relative-date.pipe.ts + 21 + a year 1 年 + + src/app/shared/pipes/relative-date.pipe.ts + 22 + %d years - %d years + %d 年 + + src/app/shared/pipes/relative-date.pipe.ts + 23 + Required rules for passwords: - Required rules for passwords: + 密碼必須遵循的規則: + + src/app/shared/services/password-policy.service.ts + 22 + - Must contain at least - characters - - 必須至少包含 - 個字元 - + Must contain at least characters + 必須至少包含 個字元 + + src/app/shared/services/password-policy.service.ts + 24 + Must not be the same as the previous one - Must not be the same as the previous one + 不得與之前的密碼相同 + + src/app/shared/services/password-policy.service.ts + 25 + Cannot contain the username - Cannot contain the username + 不能包含使用者名稱 + + src/app/shared/services/password-policy.service.ts + 26 + Cannot contain any configured keyword - Cannot contain any configured keyword + 不能包含任何設定的關鍵字 + + src/app/shared/services/password-policy.service.ts + 27 + - Cannot contain any repetitive characters e.g. "aaa" - Cannot contain any repetitive characters e.g. "aaa" + Cannot contain any repetitive characters e.g. "aaa" + 不能包含任何重複字元,例如 "aaa" + + src/app/shared/services/password-policy.service.ts + 28 + - Cannot contain any sequential characters e.g. "abc" - Cannot contain any sequential characters e.g. "abc" + Cannot contain any sequential characters e.g. "abc" + 不能包含任何循序字元,例如 "abc" + + src/app/shared/services/password-policy.service.ts + 29 + Must consist of characters from the following groups: * Alphabetic a-z, A-Z * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ * Any other characters (signs) - Must consist of characters from the following groups: - * Alphabetic a-z, A-Z - * Numbers 0-9 - * Special chars: !"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ - * Any other characters (signs) + 必須由以下類型的字元組成: + * 字母 a-z、A-Z + * 數字 0-9 + * 特殊字元:!"#$%& '()*+,-./:;<=>?@[\]^_`{{|}}~ + * 任何其他字元 (符號) + + src/app/shared/services/password-policy.service.ts + 30,34 + Your matcher seems to match no currently defined rule or active alert. - Your matcher seems to match no currently defined rule or active alert. + 您的比對器似乎與目前定義的任何規則或使用中警示均不相符。 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 62 + no active alerts 沒有使用中警示 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 63 + 1 active alert - 1 active alert + 1 則使用中警示 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 64 + - - active alerts - - - active alerts - + active alerts + 則使用中警示 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 65 + Matches 1 rule - Matches 1 rule + 與 1 條規則相符 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 66 + - Matches - rules - - Matches - rules - + Matches rules + 與 條規則相符 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 67 + - - with - . - - - with - . - + with . + 具有 的 。 + + src/app/shared/services/prometheus-silence-matcher.service.ts + 73 + Quality of Service - Quality of Service + 服務品質 + + src/app/shared/services/rbd-configuration.service.ts + 23 + BPS Limit - BPS Limit + BPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 28 + The desired limit of IO bytes per second. - The desired limit of IO bytes per second. + 所需的每秒 IO 位元組數上限。 + + src/app/shared/services/rbd-configuration.service.ts + 29 + IOPS Limit - IOPS Limit + IOPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 34 + The desired limit of IO operations per second. - The desired limit of IO operations per second. + 所需的每秒 IO 操作次數上限。 + + src/app/shared/services/rbd-configuration.service.ts + 35 + Read BPS Limit - Read BPS Limit + 讀取 BPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 40 + The desired limit of read bytes per second. - The desired limit of read bytes per second. + 所需的每秒內讀取的位元組數上限。 + + src/app/shared/services/rbd-configuration.service.ts + 41 + Read IOPS Limit - Read IOPS Limit + 讀取 IOPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 46 + The desired limit of read operations per second. - The desired limit of read operations per second. + 所需的每秒讀取操作次數上限。 + + src/app/shared/services/rbd-configuration.service.ts + 47 + Write BPS Limit - Write BPS Limit + 寫入 BPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 52 + The desired limit of write bytes per second. - The desired limit of write bytes per second. + 所需的每秒內寫入的位元組數上限。 + + src/app/shared/services/rbd-configuration.service.ts + 53 + Write IOPS Limit - Write IOPS Limit + 寫入 IOPS 上限 + + src/app/shared/services/rbd-configuration.service.ts + 58 + The desired limit of write operations per second. - The desired limit of write operations per second. + 所需的每秒寫入操作次數上限。 + + src/app/shared/services/rbd-configuration.service.ts + 59 + BPS Burst - BPS Burst + BPS 高載 + + src/app/shared/services/rbd-configuration.service.ts + 64 + The desired burst limit of IO bytes. - The desired burst limit of IO bytes. + 所需的 IO 位元組數高載上限。 + + src/app/shared/services/rbd-configuration.service.ts + 65 + IOPS Burst - IOPS Burst + IOPS 高載 + + src/app/shared/services/rbd-configuration.service.ts + 70 + The desired burst limit of IO operations. - The desired burst limit of IO operations. + 所需的 IO 操作次數高載上限。 + + src/app/shared/services/rbd-configuration.service.ts + 71 + Read BPS Burst - Read BPS Burst + 讀取 BPS 高載 + + src/app/shared/services/rbd-configuration.service.ts + 76 + The desired burst limit of read bytes. - The desired burst limit of read bytes. + 所需的讀取的位元組數高載上限。 + + src/app/shared/services/rbd-configuration.service.ts + 77 + Read IOPS Burst - Read IOPS Burst + 讀取 IOPS 高載 + + src/app/shared/services/rbd-configuration.service.ts + 82 + The desired burst limit of read operations. - The desired burst limit of read operations. + 所需的讀取操作次數高載上限。 + + src/app/shared/services/rbd-configuration.service.ts + 83 + Write BPS Burst 寫入 BPS 高載 + + src/app/shared/services/rbd-configuration.service.ts + 88 + The desired burst limit of write bytes. - The desired burst limit of write bytes. + 所需的寫入的位元組數高載上限。 + + src/app/shared/services/rbd-configuration.service.ts + 89 + Write IOPS Burst - Write IOPS Burst + 寫入 IOPS 高載 + + src/app/shared/services/rbd-configuration.service.ts + 94 + The desired burst limit of write operations. - The desired burst limit of write operations. + 所需的寫入操作次數高載上限。 + + src/app/shared/services/rbd-configuration.service.ts + 95 + - Failed to - - - - Failed to - - - + Failed to + 無法 + + src/app/shared/services/task-message.service.ts + 27 + Executing - Executing + 正在執行 + + src/app/shared/services/task-message.service.ts + 54 + execute - execute + 執行 + + src/app/shared/services/task-message.service.ts + 54 + Executed - Executed + 已執行 + + src/app/shared/services/task-message.service.ts + 54 + unknown task - unknown task + 未知任務 + + src/app/shared/services/task-message.service.ts + 58 + Creating - Creating + 正在建立 + + src/app/shared/services/task-message.service.ts + 67 + create - create + 建立 + + src/app/shared/services/task-message.service.ts + 67 + Updating - Updating + 正在更新 + + src/app/shared/services/task-message.service.ts + 68 + update - update + 更新 + + src/app/shared/services/task-message.service.ts + 68 + Deleting - Deleting + 正在刪除 + + src/app/shared/services/task-message.service.ts + 69 + + + src/app/shared/services/task-message.service.ts + 270 + Adding 正在新增 + + src/app/shared/services/task-message.service.ts + 70 + add - add + 新增 + + src/app/shared/services/task-message.service.ts + 70 + Removing - Removing + 正在移除 + + src/app/shared/services/task-message.service.ts + 71 + remove - remove + 移除 + + src/app/shared/services/task-message.service.ts + 71 + Importing - Importing + 正在輸入 + + src/app/shared/services/task-message.service.ts + 72 + + + src/app/shared/services/task-message.service.ts + 74 + + + src/app/shared/services/task-message.service.ts + 79 + import - import + 輸入 + + src/app/shared/services/task-message.service.ts + 72 + Imported - Imported + 已輸入 + + src/app/shared/services/task-message.service.ts + 72 + activate - activate + + src/app/shared/services/task-message.service.ts + 75 + Activated - Activated + + src/app/shared/services/task-message.service.ts + 76 + deactivate - deactivate + + src/app/shared/services/task-message.service.ts + 80 + Deactivated - Deactivated + + src/app/shared/services/task-message.service.ts + 81 + - RBD ' - ' - - RBD ' - ' - + RBD '' + RBD "" + + src/app/shared/services/task-message.service.ts + 86 + + + src/app/shared/services/task-message.service.ts + 93 + + + src/app/shared/services/task-message.service.ts + 101 + + + src/app/shared/services/task-message.service.ts + 109 + - RBD snapshot ' - @ - ' - - RBD snapshot ' - @ - ' - + RBD snapshot '@' + RBD 快照 "@" + + src/app/shared/services/task-message.service.ts + 112 + mirroring site name - mirroring site name + 鏡像站台名稱 + + src/app/shared/services/task-message.service.ts + 116 + bootstrap token - bootstrap token + 開機記號 + + src/app/shared/services/task-message.service.ts + 117 + - mirror mode for pool ' - ' - - mirror mode for pool ' - ' - + mirror mode for pool '' + 池 "" 的鏡像模式 + + src/app/shared/services/task-message.service.ts + 118 + - mirror peer for pool ' - ' - - mirror peer for pool ' - ' - + mirror peer for pool '' + 池 "" 的鏡像對等 + + src/app/shared/services/task-message.service.ts + 119 + all dashboards - all dashboards + 所有儀表板 + + src/app/shared/services/task-message.service.ts + 123 + Identifying - Identifying + 正在識別 + + src/app/shared/services/task-message.service.ts + 133 + identify - identify + 識別 + + src/app/shared/services/task-message.service.ts + 133 + Identified 已識別 + + src/app/shared/services/task-message.service.ts + 133 + - device ' - ' on host ' - ' - - device ' - ' on host ' - ' - + device '' on host '' + 主機 "" 上的裝置 "" + + src/app/shared/services/task-message.service.ts + 134 + - OSDs (DriveGroups: - ) - - OSDs (DriveGroups: - ) - + OSDs (DriveGroups: ) + OSD (DriveGroup:) + + src/app/shared/services/task-message.service.ts + 139 + - Name is already used by - . - - Name is already used by - . - + Name is already used by . + 已使用該名稱。 + + src/app/shared/services/task-message.service.ts + 149 + + + src/app/shared/services/task-message.service.ts + 156 + + + src/app/shared/services/task-message.service.ts + 167 + + + src/app/shared/services/task-message.service.ts + 178 + + + src/app/shared/services/task-message.service.ts + 189 + + + src/app/shared/services/task-message.service.ts + 193 + + + src/app/shared/services/task-message.service.ts + 207 + + + src/app/shared/services/task-message.service.ts + 215 + + + src/app/shared/services/task-message.service.ts + 227 + - - is busy. - - - 正忙。 - + is busy. + 正忙。 + + src/app/shared/services/task-message.service.ts + 199 + - - contains snapshots. - - - contains snapshots. - + contains snapshots. + 包含快照。 + + src/app/shared/services/task-message.service.ts + 200 + Cloning - Cloning + 正在克隆 + + src/app/shared/services/task-message.service.ts + 204 + clone - clone + 克隆 + + src/app/shared/services/task-message.service.ts + 204 + - Snapshot of - must be protected. - - Snapshot of - must be protected. - + Snapshot of must be protected. + 的快照必須受到保護。 + + src/app/shared/services/task-message.service.ts + 208 + Copying - Copying + 正在複製 + + src/app/shared/services/task-message.service.ts + 212 + copy - copy + 複製 + + src/app/shared/services/task-message.service.ts + 212 + Flattening - Flattening + 正在壓平 + + src/app/shared/services/task-message.service.ts + 219 + flatten - flatten + 壓平 + + src/app/shared/services/task-message.service.ts + 219 + - Cannot unprotect - because it contains child images. - - Cannot unprotect - because it contains child images. - + Cannot unprotect because it contains child images. + 無法將 取消保護,因為它包含子影像。 + + src/app/shared/services/task-message.service.ts + 234,236 + - Cannot delete - because it's protected. - - Cannot delete - because it's protected. - + Cannot delete because it's protected. + 無法刪除 ,因為它受到保護。 + + src/app/shared/services/task-message.service.ts + 243 + Rolling back 正在復原 + + src/app/shared/services/task-message.service.ts + 248 + rollback - rollback + 復原 + + src/app/shared/services/task-message.service.ts + 249 + Moving - Moving + 正在移動 + + src/app/shared/services/task-message.service.ts + 256 + move - move + 移動 + + src/app/shared/services/task-message.service.ts + 256 + - image ' - ' to trash - - image ' - ' to trash - + image '' to trash + 影像 "" 移至垃圾桶 + + src/app/shared/services/task-message.service.ts + 257 + Could not find image. 找不到影像。 + + src/app/shared/services/task-message.service.ts + 259 + Restoring - Restoring + 正在回存 + + src/app/shared/services/task-message.service.ts + 263 + restore - restore + 回存 + + src/app/shared/services/task-message.service.ts + 263 + - image ' - ' into ' - ' - - image ' - ' into ' - ' - + image '' into '' + 影像 "" 移至 "" + + src/app/shared/services/task-message.service.ts + 264 + - Image name ' - ' is already in use. - - 影像名稱 " - " 已被使用。 - + Image name '' is already in use. + 影像名稱 "" 已被使用。 + + src/app/shared/services/task-message.service.ts + 266 + - image ' - ' - - image ' - ' - + image '' + 影像 "" + + src/app/shared/services/task-message.service.ts + 271 + Purging - Purging + 正在清除 + + src/app/shared/services/task-message.service.ts + 274 + purge - purge + 清除 + + src/app/shared/services/task-message.service.ts + 274 + all pools - all pools + 所有池 + + src/app/shared/services/task-message.service.ts + 276 + - images from - - - images from - - + images from + 中的影像 + + src/app/shared/services/task-message.service.ts + 280 + Cannot disable mirroring because it contains a peer. - Cannot disable mirroring because it contains a peer. + 無法停用鏡像,因為其包含對等。 + + src/app/shared/services/task-message.service.ts + 303 + - host ' - ' - - 主機 " - " - + host '' + 主機 "" + + src/app/shared/services/task-message.service.ts + 488 + - OSD ' - ' - - OSD ' - ' - + OSD '' + OSD "" + + src/app/shared/services/task-message.service.ts + 492 + - pool ' - ' - - pool ' - ' - + pool '' + 池 "" + + src/app/shared/services/task-message.service.ts + 496 + - erasure code profile ' - ' - - erasure code profile ' - ' - + erasure code profile '' + 糾刪碼設定檔 "" + + src/app/shared/services/task-message.service.ts + 500 + - crush rule ' - ' - - crush rule ' - ' - + crush rule '' + Crush 規則 "" + + src/app/shared/services/task-message.service.ts + 504 + - target ' - ' - - target ' - ' - + target '' + 目標 "" + + src/app/shared/services/task-message.service.ts + 508 + - subsystem ' - ' - - subsystem ' - ' - + subsystem '' + + src/app/shared/services/task-message.service.ts + 512 + - listener ' - for subsystem - - - listener ' - for subsystem - - + listener ' for subsystem + + src/app/shared/services/task-message.service.ts + 516 + - namespace - for subsystem ' - ' - - namespace - for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 521 + - namespace for subsystem ' - ' - - namespace for subsystem ' - ' - + namespace for subsystem '' + + src/app/shared/services/task-message.service.ts + 523 + - initiator - for subsystem - - - initiator - for subsystem - - + initiator for subsystem + + src/app/shared/services/task-message.service.ts + 527 + - NFS ' - : - ' - - NFS " - : - " - + NFS ':' + NFS ":" + + src/app/shared/services/task-message.service.ts + 531,533 + - service ' - ' - - service ' - ' - + service '' + + src/app/shared/services/task-message.service.ts + 537 + - ' - ' - - ' - ' - + '' + + src/app/shared/services/task-message.service.ts + 552 + - client. - authorization successfully - - client. - authorization successfully - + client. authorization successfully + + src/app/shared/services/task-message.service.ts + 556 + - subvolume ' - ' - - subvolume ' - ' - + subvolume '' + + src/app/shared/services/task-message.service.ts + 560 + - subvolume group ' - ' - - subvolume group ' - ' - + subvolume group '' + + src/app/shared/services/task-message.service.ts + 564 + - snapshot ' - ' - - snapshot ' - ' - + snapshot '' + + src/app/shared/services/task-message.service.ts + 568 + - snapshot schedule for path ' - ' - - snapshot schedule for path ' - ' - + snapshot schedule for path '' + + src/app/shared/services/task-message.service.ts + 572 + -- 2.39.5