diff --git a/.github/ISSUE_TEMPLATE/01-feature_request.yaml b/.github/ISSUE_TEMPLATE/01-feature_request.yaml index eda44e63e..25aaa3f70 100644 --- a/.github/ISSUE_TEMPLATE/01-feature_request.yaml +++ b/.github/ISSUE_TEMPLATE/01-feature_request.yaml @@ -15,7 +15,7 @@ body: attributes: label: NetBox version description: What version of NetBox are you currently running? - placeholder: v4.4.1 + placeholder: v4.4.2 validations: required: true - type: dropdown diff --git a/.github/ISSUE_TEMPLATE/02-bug_report.yaml b/.github/ISSUE_TEMPLATE/02-bug_report.yaml index 4e62aa84e..2d654a910 100644 --- a/.github/ISSUE_TEMPLATE/02-bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/02-bug_report.yaml @@ -27,7 +27,7 @@ body: attributes: label: NetBox Version description: What version of NetBox are you currently running? - placeholder: v4.4.1 + placeholder: v4.4.2 validations: required: true - type: dropdown diff --git a/base_requirements.txt b/base_requirements.txt index 9bf8680a5..1e6f2ad29 100644 --- a/base_requirements.txt +++ b/base_requirements.txt @@ -30,7 +30,8 @@ django-htmx # Modified Preorder Tree Traversal (recursive nesting of objects) # https://github.com/django-mptt/django-mptt/blob/main/CHANGELOG.rst -django-mptt +# v0.18.0 introduces errant migrations which need to be resolved +django-mptt==0.17.0 # Context managers for PostgreSQL advisory locks # https://github.com/Xof/django-pglocks/blob/master/CHANGES.txt diff --git a/contrib/generated_schema.json b/contrib/generated_schema.json index 473e75cff..279357912 100644 --- a/contrib/generated_schema.json +++ b/contrib/generated_schema.json @@ -332,14 +332,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -374,6 +374,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -387,12 +388,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -415,34 +416,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", diff --git a/contrib/openapi.json b/contrib/openapi.json index ddbdff987..94cf6d659 100644 --- a/contrib/openapi.json +++ b/contrib/openapi.json @@ -2,7 +2,7 @@ "openapi": "3.0.3", "info": { "title": "NetBox REST API", - "version": "4.4.0", + "version": "4.4.2", "license": { "name": "Apache v2 License" } @@ -16104,7 +16104,7 @@ "/api/core/background-queues/": { "get": { "operationId": "core_background_queues_retrieve", - "description": "Retrieve a list of RQ Queues.\nNote: Queue names are not URL safe so not returning a detail view.", + "description": "Retrieve a list of RQ Queues.\nNote: Queue names are not URL safe, so not returning a detail view.", "tags": [ "core" ], @@ -16133,15 +16133,14 @@ }, "/api/core/background-queues/{name}/": { "get": { - "operationId": "core_background_queues_retrieve_2", - "description": "Retrieve a list of RQ Queues.\nNote: Queue names are not URL safe so not returning a detail view.", + "operationId": "core_background_queues_retrieve_by_name", + "description": "Retrieve a list of RQ Queues.\nNote: Queue names are not URL safe, so not returning a detail view.", "parameters": [ { "in": "path", "name": "name", "schema": { - "type": "string", - "pattern": "^[\\w.@+-]+$" + "type": "string" }, "required": true } @@ -16204,7 +16203,7 @@ }, "/api/core/background-tasks/{id}/": { "get": { - "operationId": "core_background_tasks_retrieve_2", + "operationId": "core_background_tasks_retrieve_by_id", "description": "Retrieve a list of RQ Tasks.", "parameters": [ { @@ -16259,6 +16258,21 @@ "tags": [ "core" ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + }, + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + } + }, + "required": true + }, "security": [ { "cookieAuth": [] @@ -16269,7 +16283,14 @@ ], "responses": { "200": { - "description": "No response body" + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTask" + } + } + }, + "description": "" } } } @@ -16291,6 +16312,21 @@ "tags": [ "core" ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + }, + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + } + }, + "required": true + }, "security": [ { "cookieAuth": [] @@ -16301,7 +16337,14 @@ ], "responses": { "200": { - "description": "No response body" + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTask" + } + } + }, + "description": "" } } } @@ -16323,6 +16366,21 @@ "tags": [ "core" ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + }, + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + } + }, + "required": true + }, "security": [ { "cookieAuth": [] @@ -16333,7 +16391,14 @@ ], "responses": { "200": { - "description": "No response body" + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTask" + } + } + }, + "description": "" } } } @@ -16355,6 +16420,21 @@ "tags": [ "core" ], + "requestBody": { + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + }, + "multipart/form-data": { + "schema": { + "$ref": "#/components/schemas/BackgroundTaskRequest" + } + } + }, + "required": true + }, "security": [ { "cookieAuth": [] @@ -16365,7 +16445,14 @@ ], "responses": { "200": { - "description": "No response body" + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BackgroundTask" + } + } + }, + "description": "" } } } @@ -16402,7 +16489,7 @@ }, "/api/core/background-workers/{name}/": { "get": { - "operationId": "core_background_workers_retrieve_2", + "operationId": "core_background_workers_retrieve_by_name", "description": "Retrieve a list of RQ Workers.", "parameters": [ { @@ -16427,7 +16514,15 @@ ], "responses": { "200": { - "description": "No response body" + "content": { + "application/json": { + "schema": { + "type": "object", + "additionalProperties": {} + } + } + }, + "description": "" } } } @@ -47839,7 +47934,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47859,7 +47954,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47872,7 +47967,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47885,7 +47980,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47898,7 +47993,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47911,7 +48006,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47924,7 +48019,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47937,7 +48032,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47950,7 +48045,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47963,7 +48058,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47976,7 +48071,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -47989,7 +48084,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51766,7 +51861,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51786,7 +51881,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51799,7 +51894,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51812,7 +51907,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51825,7 +51920,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51838,7 +51933,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51851,7 +51946,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51864,7 +51959,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51877,7 +51972,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51890,7 +51985,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51903,7 +51998,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -51916,7 +52011,7 @@ "type": "array", "items": { "type": "string", - "x-spec-enum-id": "efa24ff9c7a39c40" + "x-spec-enum-id": "c6dfa8e84dd05942" } }, "explode": true, @@ -152933,9 +153028,8 @@ "in": "query", "name": "interface_id", "schema": { - "type": "string" - }, - "description": "Assigned interface" + "type": "integer" + } }, { "in": "query", @@ -154226,9 +154320,8 @@ "in": "query", "name": "vminterface_id", "schema": { - "type": "string" - }, - "description": "Assigned VM interface" + "type": "integer" + } } ], "tags": [ @@ -200335,6 +200428,241 @@ "vid" ] }, + "BackgroundTask": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "url": { + "type": "string", + "format": "uri", + "readOnly": true + }, + "description": { + "type": "string" + }, + "origin": { + "type": "string" + }, + "func_name": { + "type": "string" + }, + "args": { + "type": "array", + "items": {}, + "readOnly": true + }, + "kwargs": { + "type": "object", + "additionalProperties": {}, + "readOnly": true + }, + "result": { + "type": "string" + }, + "timeout": { + "type": "integer" + }, + "result_ttl": { + "type": "integer" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "enqueued_at": { + "type": "string", + "format": "date-time" + }, + "started_at": { + "type": "string", + "format": "date-time" + }, + "ended_at": { + "type": "string", + "format": "date-time" + }, + "worker_name": { + "type": "string" + }, + "position": { + "type": "integer", + "readOnly": true + }, + "status": { + "type": "string", + "readOnly": true + }, + "meta": { + "type": "object", + "additionalProperties": {} + }, + "last_heartbeat": { + "type": "string" + }, + "is_finished": { + "type": "boolean" + }, + "is_queued": { + "type": "boolean" + }, + "is_failed": { + "type": "boolean" + }, + "is_started": { + "type": "boolean" + }, + "is_deferred": { + "type": "boolean" + }, + "is_canceled": { + "type": "boolean" + }, + "is_scheduled": { + "type": "boolean" + }, + "is_stopped": { + "type": "boolean" + } + }, + "required": [ + "args", + "created_at", + "description", + "ended_at", + "enqueued_at", + "func_name", + "id", + "is_canceled", + "is_deferred", + "is_failed", + "is_finished", + "is_queued", + "is_scheduled", + "is_started", + "is_stopped", + "kwargs", + "last_heartbeat", + "meta", + "origin", + "position", + "result", + "result_ttl", + "started_at", + "status", + "timeout", + "url", + "worker_name" + ] + }, + "BackgroundTaskRequest": { + "type": "object", + "properties": { + "id": { + "type": "string", + "minLength": 1 + }, + "description": { + "type": "string", + "minLength": 1 + }, + "origin": { + "type": "string", + "minLength": 1 + }, + "func_name": { + "type": "string", + "minLength": 1 + }, + "result": { + "type": "string", + "minLength": 1 + }, + "timeout": { + "type": "integer" + }, + "result_ttl": { + "type": "integer" + }, + "created_at": { + "type": "string", + "format": "date-time" + }, + "enqueued_at": { + "type": "string", + "format": "date-time" + }, + "started_at": { + "type": "string", + "format": "date-time" + }, + "ended_at": { + "type": "string", + "format": "date-time" + }, + "worker_name": { + "type": "string", + "minLength": 1 + }, + "meta": { + "type": "object", + "additionalProperties": {} + }, + "last_heartbeat": { + "type": "string", + "minLength": 1 + }, + "is_finished": { + "type": "boolean" + }, + "is_queued": { + "type": "boolean" + }, + "is_failed": { + "type": "boolean" + }, + "is_started": { + "type": "boolean" + }, + "is_deferred": { + "type": "boolean" + }, + "is_canceled": { + "type": "boolean" + }, + "is_scheduled": { + "type": "boolean" + }, + "is_stopped": { + "type": "boolean" + } + }, + "required": [ + "created_at", + "description", + "ended_at", + "enqueued_at", + "func_name", + "id", + "is_canceled", + "is_deferred", + "is_failed", + "is_finished", + "is_queued", + "is_scheduled", + "is_started", + "is_stopped", + "last_heartbeat", + "meta", + "origin", + "result", + "result_ttl", + "started_at", + "timeout", + "worker_name" + ] + }, "Bookmark": { "type": "object", "description": "Extends the built-in ModelSerializer to enforce calling full_clean() on a copy of the associated instance during\nvalidation. (DRF does not do this by default; see https://github.com/encode/django-rest-framework/issues/3144)", @@ -201169,7 +201497,7 @@ "maxLength": 200 }, "choices_count": { - "type": "string", + "type": "integer", "readOnly": true } }, @@ -202332,7 +202660,8 @@ "description": "Adds support for custom fields and tags.", "properties": { "mac_address": { - "type": "string" + "type": "string", + "minLength": 1 }, "description": { "type": "string", @@ -209181,7 +209510,7 @@ "description": "Choices are automatically ordered alphabetically" }, "choices_count": { - "type": "string", + "type": "integer", "readOnly": true }, "created": { @@ -215321,14 +215650,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -215363,6 +215692,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -215376,12 +215706,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -215404,34 +215734,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -215519,8 +215849,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "label": { "type": "string", @@ -215534,21 +215864,21 @@ "100BASE-T1 (10/100ME)", "1000BASE-BX10-D (1GE BiDi Down)", "1000BASE-BX10-U (1GE BiDi Up)", - "1000BASE-CX (1GE DAC)", "1000BASE-CWDM (1GE)", + "1000BASE-CX (1GE DAC)", "1000BASE-DWDM (1GE)", "1000BASE-EX (1GE)", - "1000BASE-SX (1GE)", "1000BASE-LSX (1GE)", "1000BASE-LX (1GE)", "1000BASE-LX10/LH (1GE)", + "1000BASE-SX (1GE)", "1000BASE-T (1GE)", "1000BASE-TX (1GE)", "1000BASE-ZX (1GE)", "2.5GBASE-T (2.5GE)", "5GBASE-T (5GE)", - "10GBASE-DR-D (10GE BiDi Down)", - "10GBASE-DR-U (10GE BiDi Up)", + "10GBASE-BR-D (10GE BiDi Down)", + "10GBASE-BR-U (10GE BiDi Up)", "10GBASE-CX4 (10GE DAC)", "10GBASE-ER (10GE)", "10GBASE-LR (10GE)", @@ -215576,6 +215906,7 @@ "100GBASE-CR2 (100GE DAC)", "100GBASE-CR4 (100GE DAC)", "100GBASE-CR10 (100GE DAC)", + "100GBASE-CWDM4 (100GE)", "100GBASE-DR (100GE)", "100GBASE-ER4 (100GE)", "100GBASE-FR1 (100GE)", @@ -215589,12 +215920,12 @@ "100GBASE-ZR (100GE)", "200GBASE-CR2 (200GE)", "200GBASE-CR4 (200GE)", - "200GBASE-SR2 (200GE)", - "200GBASE-SR4 (200GE)", "200GBASE-DR4 (200GE)", "200GBASE-ER4 (200GE)", "200GBASE-FR4 (200GE)", "200GBASE-LR4 (200GE)", + "200GBASE-SR2 (200GE)", + "200GBASE-SR4 (200GE)", "200GBASE-VR2 (200GE)", "400GBASE-CR4 (400GE)", "400GBASE-DR4 (400GE)", @@ -215617,34 +215948,34 @@ "GBIC (1GE)", "SFP (1GE)", "SFP+ (10GE)", - "XFP (10GE)", "XENPAK (10GE)", + "XFP (10GE)", "X2 (10GE)", "SFP28 (25GE)", - "SFP56 (50GE)", "QSFP+ (40GE)", "QSFP28 (50GE)", + "SFP56 (50GE)", "CFP (100GE)", "CFP2 (100GE)", - "CFP2 (200GE)", - "CFP2 (400GE)", "CFP4 (100GE)", "CXP (100GE)", "Cisco CPAK (100GE)", "DSFP (100GE)", - "SFP-DD (100GE)", "QSFP28 (100GE)", "QSFP-DD (100GE)", + "SFP-DD (100GE)", + "CFP2 (200GE)", "QSFP56 (200GE)", "QSFP-DD (200GE)", "QSFP112 (400GE)", "QSFP-DD (400GE)", + "CDFP (400GE)", + "CFP2 (400GE)", + "CPF8 (400GE)", "OSFP (400GE)", "OSFP-RHS (400GE)", - "CDFP (400GE)", - "CPF8 (400GE)", - "QSFP-DD (800GE)", "OSFP (800GE)", + "QSFP-DD (800GE)", "1000BASE-KX (1GE)", "2.5GBASE-KX (2.5GE)", "5GBASE-KR (5GE)", @@ -216603,14 +216934,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -216645,6 +216976,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -216658,12 +216990,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -216686,34 +217018,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -216801,8 +217133,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "enabled": { "type": "boolean" @@ -217322,14 +217654,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -217364,6 +217696,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -217377,12 +217710,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -217405,34 +217738,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -217520,8 +217853,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "label": { "type": "string", @@ -217535,21 +217868,21 @@ "100BASE-T1 (10/100ME)", "1000BASE-BX10-D (1GE BiDi Down)", "1000BASE-BX10-U (1GE BiDi Up)", - "1000BASE-CX (1GE DAC)", "1000BASE-CWDM (1GE)", + "1000BASE-CX (1GE DAC)", "1000BASE-DWDM (1GE)", "1000BASE-EX (1GE)", - "1000BASE-SX (1GE)", "1000BASE-LSX (1GE)", "1000BASE-LX (1GE)", "1000BASE-LX10/LH (1GE)", + "1000BASE-SX (1GE)", "1000BASE-T (1GE)", "1000BASE-TX (1GE)", "1000BASE-ZX (1GE)", "2.5GBASE-T (2.5GE)", "5GBASE-T (5GE)", - "10GBASE-DR-D (10GE BiDi Down)", - "10GBASE-DR-U (10GE BiDi Up)", + "10GBASE-BR-D (10GE BiDi Down)", + "10GBASE-BR-U (10GE BiDi Up)", "10GBASE-CX4 (10GE DAC)", "10GBASE-ER (10GE)", "10GBASE-LR (10GE)", @@ -217577,6 +217910,7 @@ "100GBASE-CR2 (100GE DAC)", "100GBASE-CR4 (100GE DAC)", "100GBASE-CR10 (100GE DAC)", + "100GBASE-CWDM4 (100GE)", "100GBASE-DR (100GE)", "100GBASE-ER4 (100GE)", "100GBASE-FR1 (100GE)", @@ -217590,12 +217924,12 @@ "100GBASE-ZR (100GE)", "200GBASE-CR2 (200GE)", "200GBASE-CR4 (200GE)", - "200GBASE-SR2 (200GE)", - "200GBASE-SR4 (200GE)", "200GBASE-DR4 (200GE)", "200GBASE-ER4 (200GE)", "200GBASE-FR4 (200GE)", "200GBASE-LR4 (200GE)", + "200GBASE-SR2 (200GE)", + "200GBASE-SR4 (200GE)", "200GBASE-VR2 (200GE)", "400GBASE-CR4 (400GE)", "400GBASE-DR4 (400GE)", @@ -217618,34 +217952,34 @@ "GBIC (1GE)", "SFP (1GE)", "SFP+ (10GE)", - "XFP (10GE)", "XENPAK (10GE)", + "XFP (10GE)", "X2 (10GE)", "SFP28 (25GE)", - "SFP56 (50GE)", "QSFP+ (40GE)", "QSFP28 (50GE)", + "SFP56 (50GE)", "CFP (100GE)", "CFP2 (100GE)", - "CFP2 (200GE)", - "CFP2 (400GE)", "CFP4 (100GE)", "CXP (100GE)", "Cisco CPAK (100GE)", "DSFP (100GE)", - "SFP-DD (100GE)", "QSFP28 (100GE)", "QSFP-DD (100GE)", + "SFP-DD (100GE)", + "CFP2 (200GE)", "QSFP56 (200GE)", "QSFP-DD (200GE)", "QSFP112 (400GE)", "QSFP-DD (400GE)", + "CDFP (400GE)", + "CFP2 (400GE)", + "CPF8 (400GE)", "OSFP (400GE)", "OSFP-RHS (400GE)", - "CDFP (400GE)", - "CPF8 (400GE)", - "QSFP-DD (800GE)", "OSFP (800GE)", + "QSFP-DD (800GE)", "1000BASE-KX (1GE)", "2.5GBASE-KX (2.5GE)", "5GBASE-KR (5GE)", @@ -217919,14 +218253,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -217961,6 +218295,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -217974,12 +218309,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -218002,34 +218337,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -218117,8 +218452,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "enabled": { "type": "boolean" @@ -219778,7 +220113,8 @@ "description": "Adds support for custom fields and tags.", "properties": { "mac_address": { - "type": "string" + "type": "string", + "minLength": 1 }, "assigned_object_type": { "type": "string", @@ -227703,7 +228039,8 @@ "description": "Adds support for custom fields and tags.", "properties": { "mac_address": { - "type": "string" + "type": "string", + "minLength": 1 }, "assigned_object_type": { "type": "string", @@ -231809,14 +232146,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -231851,6 +232188,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -231864,12 +232202,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -231892,34 +232230,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -232007,8 +232345,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "enabled": { "type": "boolean" @@ -232527,14 +232865,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -232569,6 +232907,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -232582,12 +232921,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -232610,34 +232949,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -232725,8 +233064,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "enabled": { "type": "boolean" @@ -252146,14 +252485,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -252188,6 +252527,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -252201,12 +252541,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -252229,34 +252569,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -252344,8 +252684,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "enabled": { "type": "boolean" @@ -252869,14 +253209,14 @@ "100base-t1", "1000base-bx10-d", "1000base-bx10-u", - "1000base-cx", "1000base-cwdm", + "1000base-cx", "1000base-dwdm", "1000base-ex", - "1000base-sx", "1000base-lsx", "1000base-lx", "1000base-lx10", + "1000base-sx", "1000base-t", "1000base-tx", "1000base-zx", @@ -252911,6 +253251,7 @@ "100gbase-cr2", "100gbase-cr4", "100gbase-cr10", + "100gbase-cwdm4", "100gbase-dr", "100gbase-er4", "100gbase-fr1", @@ -252924,12 +253265,12 @@ "100gbase-zr", "200gbase-cr2", "200gbase-cr4", - "200gbase-sr2", - "200gbase-sr4", "200gbase-dr4", "200gbase-er4", "200gbase-fr4", "200gbase-lr4", + "200gbase-sr2", + "200gbase-sr4", "200gbase-vr2", "400gbase-cr4", "400gbase-dr4", @@ -252952,34 +253293,34 @@ "1000base-x-gbic", "1000base-x-sfp", "10gbase-x-sfpp", - "10gbase-x-xfp", "10gbase-x-xenpak", + "10gbase-x-xfp", "10gbase-x-x2", "25gbase-x-sfp28", - "50gbase-x-sfp56", "40gbase-x-qsfpp", "50gbase-x-sfp28", + "50gbase-x-sfp56", "100gbase-x-cfp", "100gbase-x-cfp2", - "200gbase-x-cfp2", - "400gbase-x-cfp2", "100gbase-x-cfp4", "100gbase-x-cxp", "100gbase-x-cpak", "100gbase-x-dsfp", - "100gbase-x-sfpdd", "100gbase-x-qsfp28", "100gbase-x-qsfpdd", + "100gbase-x-sfpdd", + "200gbase-x-cfp2", "200gbase-x-qsfp56", "200gbase-x-qsfpdd", "400gbase-x-qsfp112", "400gbase-x-qsfpdd", + "400gbase-x-cdfp", + "400gbase-x-cfp2", + "400gbase-x-cfp8", "400gbase-x-osfp", "400gbase-x-osfp-rhs", - "400gbase-x-cdfp", - "400gbase-x-cfp8", - "800gbase-x-qsfpdd", "800gbase-x-osfp", + "800gbase-x-qsfpdd", "1000base-kx", "2.5gbase-kx", "5gbase-kr", @@ -253067,8 +253408,8 @@ "other" ], "type": "string", - "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-DR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-DR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", - "x-spec-enum-id": "efa24ff9c7a39c40" + "description": "* `virtual` - Virtual\n* `bridge` - Bridge\n* `lag` - Link Aggregation Group (LAG)\n* `100base-fx` - 100BASE-FX (10/100ME)\n* `100base-lfx` - 100BASE-LFX (10/100ME)\n* `100base-tx` - 100BASE-TX (10/100ME)\n* `100base-t1` - 100BASE-T1 (10/100ME)\n* `1000base-bx10-d` - 1000BASE-BX10-D (1GE BiDi Down)\n* `1000base-bx10-u` - 1000BASE-BX10-U (1GE BiDi Up)\n* `1000base-cwdm` - 1000BASE-CWDM (1GE)\n* `1000base-cx` - 1000BASE-CX (1GE DAC)\n* `1000base-dwdm` - 1000BASE-DWDM (1GE)\n* `1000base-ex` - 1000BASE-EX (1GE)\n* `1000base-lsx` - 1000BASE-LSX (1GE)\n* `1000base-lx` - 1000BASE-LX (1GE)\n* `1000base-lx10` - 1000BASE-LX10/LH (1GE)\n* `1000base-sx` - 1000BASE-SX (1GE)\n* `1000base-t` - 1000BASE-T (1GE)\n* `1000base-tx` - 1000BASE-TX (1GE)\n* `1000base-zx` - 1000BASE-ZX (1GE)\n* `2.5gbase-t` - 2.5GBASE-T (2.5GE)\n* `5gbase-t` - 5GBASE-T (5GE)\n* `10gbase-br-d` - 10GBASE-BR-D (10GE BiDi Down)\n* `10gbase-br-u` - 10GBASE-BR-U (10GE BiDi Up)\n* `10gbase-cx4` - 10GBASE-CX4 (10GE DAC)\n* `10gbase-er` - 10GBASE-ER (10GE)\n* `10gbase-lr` - 10GBASE-LR (10GE)\n* `10gbase-lrm` - 10GBASE-LRM (10GE)\n* `10gbase-lx4` - 10GBASE-LX4 (10GE)\n* `10gbase-sr` - 10GBASE-SR (10GE)\n* `10gbase-t` - 10GBASE-T (10GE)\n* `10gbase-zr` - 10GBASE-ZR (10GE)\n* `25gbase-cr` - 25GBASE-CR (25GE DAC)\n* `25gbase-er` - 25GBASE-ER (25GE)\n* `25gbase-lr` - 25GBASE-LR (25GE)\n* `25gbase-sr` - 25GBASE-SR (25GE)\n* `25gbase-t` - 25GBASE-T (25GE)\n* `40gbase-cr4` - 40GBASE-CR4 (40GE DAC)\n* `40gbase-er4` - 40GBASE-ER4 (40GE)\n* `40gbase-fr4` - 40GBASE-FR4 (40GE)\n* `40gbase-lr4` - 40GBASE-LR4 (40GE)\n* `40gbase-sr4` - 40GBASE-SR4 (40GE)\n* `50gbase-cr` - 50GBASE-CR (50GE DAC)\n* `50gbase-er` - 50GBASE-ER (50GE)\n* `50gbase-fr` - 50GBASE-FR (50GE)\n* `50gbase-lr` - 50GBASE-LR (50GE)\n* `50gbase-sr` - 50GBASE-SR (50GE)\n* `100gbase-cr1` - 100GBASE-CR1 (100GE DAC)\n* `100gbase-cr2` - 100GBASE-CR2 (100GE DAC)\n* `100gbase-cr4` - 100GBASE-CR4 (100GE DAC)\n* `100gbase-cr10` - 100GBASE-CR10 (100GE DAC)\n* `100gbase-cwdm4` - 100GBASE-CWDM4 (100GE)\n* `100gbase-dr` - 100GBASE-DR (100GE)\n* `100gbase-er4` - 100GBASE-ER4 (100GE)\n* `100gbase-fr1` - 100GBASE-FR1 (100GE)\n* `100gbase-lr1` - 100GBASE-LR1 (100GE)\n* `100gbase-lr4` - 100GBASE-LR4 (100GE)\n* `100gbase-sr1` - 100GBASE-SR1 (100GE)\n* `100gbase-sr1.2` - 100GBASE-SR1.2 (100GE BiDi)\n* `100gbase-sr2` - 100GBASE-SR2 (100GE)\n* `100gbase-sr4` - 100GBASE-SR4 (100GE)\n* `100gbase-sr10` - 100GBASE-SR10 (100GE)\n* `100gbase-zr` - 100GBASE-ZR (100GE)\n* `200gbase-cr2` - 200GBASE-CR2 (200GE)\n* `200gbase-cr4` - 200GBASE-CR4 (200GE)\n* `200gbase-dr4` - 200GBASE-DR4 (200GE)\n* `200gbase-er4` - 200GBASE-ER4 (200GE)\n* `200gbase-fr4` - 200GBASE-FR4 (200GE)\n* `200gbase-lr4` - 200GBASE-LR4 (200GE)\n* `200gbase-sr2` - 200GBASE-SR2 (200GE)\n* `200gbase-sr4` - 200GBASE-SR4 (200GE)\n* `200gbase-vr2` - 200GBASE-VR2 (200GE)\n* `400gbase-cr4` - 400GBASE-CR4 (400GE)\n* `400gbase-dr4` - 400GBASE-DR4 (400GE)\n* `400gbase-er8` - 400GBASE-ER8 (400GE)\n* `400gbase-fr4` - 400GBASE-FR4 (400GE)\n* `400gbase-fr8` - 400GBASE-FR8 (400GE)\n* `400gbase-lr4` - 400GBASE-LR4 (400GE)\n* `400gbase-lr8` - 400GBASE-LR8 (400GE)\n* `400gbase-sr4` - 400GBASE-SR4 (400GE)\n* `400gbase-sr4_2` - 400GBASE-SR4.2 (400GE BiDi)\n* `400gbase-sr8` - 400GBASE-SR8 (400GE)\n* `400gbase-sr16` - 400GBASE-SR16 (400GE)\n* `400gbase-vr4` - 400GBASE-VR4 (400GE)\n* `400gbase-zr` - 400GBASE-ZR (400GE)\n* `800gbase-cr8` - 800GBASE-CR8 (800GE)\n* `800gbase-dr8` - 800GBASE-DR8 (800GE)\n* `800gbase-sr8` - 800GBASE-SR8 (800GE)\n* `800gbase-vr8` - 800GBASE-VR8 (800GE)\n* `100base-x-sfp` - SFP (100ME)\n* `1000base-x-gbic` - GBIC (1GE)\n* `1000base-x-sfp` - SFP (1GE)\n* `10gbase-x-sfpp` - SFP+ (10GE)\n* `10gbase-x-xenpak` - XENPAK (10GE)\n* `10gbase-x-xfp` - XFP (10GE)\n* `10gbase-x-x2` - X2 (10GE)\n* `25gbase-x-sfp28` - SFP28 (25GE)\n* `40gbase-x-qsfpp` - QSFP+ (40GE)\n* `50gbase-x-sfp28` - QSFP28 (50GE)\n* `50gbase-x-sfp56` - SFP56 (50GE)\n* `100gbase-x-cfp` - CFP (100GE)\n* `100gbase-x-cfp2` - CFP2 (100GE)\n* `100gbase-x-cfp4` - CFP4 (100GE)\n* `100gbase-x-cxp` - CXP (100GE)\n* `100gbase-x-cpak` - Cisco CPAK (100GE)\n* `100gbase-x-dsfp` - DSFP (100GE)\n* `100gbase-x-qsfp28` - QSFP28 (100GE)\n* `100gbase-x-qsfpdd` - QSFP-DD (100GE)\n* `100gbase-x-sfpdd` - SFP-DD (100GE)\n* `200gbase-x-cfp2` - CFP2 (200GE)\n* `200gbase-x-qsfp56` - QSFP56 (200GE)\n* `200gbase-x-qsfpdd` - QSFP-DD (200GE)\n* `400gbase-x-qsfp112` - QSFP112 (400GE)\n* `400gbase-x-qsfpdd` - QSFP-DD (400GE)\n* `400gbase-x-cdfp` - CDFP (400GE)\n* `400gbase-x-cfp2` - CFP2 (400GE)\n* `400gbase-x-cfp8` - CPF8 (400GE)\n* `400gbase-x-osfp` - OSFP (400GE)\n* `400gbase-x-osfp-rhs` - OSFP-RHS (400GE)\n* `800gbase-x-osfp` - OSFP (800GE)\n* `800gbase-x-qsfpdd` - QSFP-DD (800GE)\n* `1000base-kx` - 1000BASE-KX (1GE)\n* `2.5gbase-kx` - 2.5GBASE-KX (2.5GE)\n* `5gbase-kr` - 5GBASE-KR (5GE)\n* `10gbase-kr` - 10GBASE-KR (10GE)\n* `10gbase-kx4` - 10GBASE-KX4 (10GE)\n* `25gbase-kr` - 25GBASE-KR (25GE)\n* `40gbase-kr4` - 40GBASE-KR4 (40GE)\n* `50gbase-kr` - 50GBASE-KR (50GE)\n* `100gbase-kp4` - 100GBASE-KP4 (100GE)\n* `100gbase-kr2` - 100GBASE-KR2 (100GE)\n* `100gbase-kr4` - 100GBASE-KR4 (100GE)\n* `ieee802.11a` - IEEE 802.11a\n* `ieee802.11g` - IEEE 802.11b/g\n* `ieee802.11n` - IEEE 802.11n (Wi-Fi 4)\n* `ieee802.11ac` - IEEE 802.11ac (Wi-Fi 5)\n* `ieee802.11ad` - IEEE 802.11ad (WiGig)\n* `ieee802.11ax` - IEEE 802.11ax (Wi-Fi 6)\n* `ieee802.11ay` - IEEE 802.11ay (WiGig)\n* `ieee802.11be` - IEEE 802.11be (Wi-Fi 7)\n* `ieee802.15.1` - IEEE 802.15.1 (Bluetooth)\n* `ieee802.15.4` - IEEE 802.15.4 (LR-WPAN)\n* `other-wireless` - Other (Wireless)\n* `gsm` - GSM\n* `cdma` - CDMA\n* `lte` - LTE\n* `4g` - 4G\n* `5g` - 5G\n* `sonet-oc3` - OC-3/STM-1\n* `sonet-oc12` - OC-12/STM-4\n* `sonet-oc48` - OC-48/STM-16\n* `sonet-oc192` - OC-192/STM-64\n* `sonet-oc768` - OC-768/STM-256\n* `sonet-oc1920` - OC-1920/STM-640\n* `sonet-oc3840` - OC-3840/STM-1234\n* `1gfc-sfp` - SFP (1GFC)\n* `2gfc-sfp` - SFP (2GFC)\n* `4gfc-sfp` - SFP (4GFC)\n* `8gfc-sfpp` - SFP+ (8GFC)\n* `16gfc-sfpp` - SFP+ (16GFC)\n* `32gfc-sfp28` - SFP28 (32GFC)\n* `32gfc-sfpp` - SFP+ (32GFC)\n* `64gfc-qsfpp` - QSFP+ (64GFC)\n* `64gfc-sfpdd` - SFP-DD (64GFC)\n* `64gfc-sfpp` - SFP+ (64GFC)\n* `128gfc-qsfp28` - QSFP28 (128GFC)\n* `infiniband-sdr` - SDR (2 Gbps)\n* `infiniband-ddr` - DDR (4 Gbps)\n* `infiniband-qdr` - QDR (8 Gbps)\n* `infiniband-fdr10` - FDR10 (10 Gbps)\n* `infiniband-fdr` - FDR (13.5 Gbps)\n* `infiniband-edr` - EDR (25 Gbps)\n* `infiniband-hdr` - HDR (50 Gbps)\n* `infiniband-ndr` - NDR (100 Gbps)\n* `infiniband-xdr` - XDR (250 Gbps)\n* `t1` - T1 (1.544 Mbps)\n* `e1` - E1 (2.048 Mbps)\n* `t3` - T3 (45 Mbps)\n* `e3` - E3 (34 Mbps)\n* `xdsl` - xDSL\n* `docsis` - DOCSIS\n* `moca` - MoCA\n* `bpon` - BPON (622 Mbps / 155 Mbps)\n* `epon` - EPON (1 Gbps)\n* `10g-epon` - 10G-EPON (10 Gbps)\n* `gpon` - GPON (2.5 Gbps / 1.25 Gbps)\n* `xg-pon` - XG-PON (10 Gbps / 2.5 Gbps)\n* `xgs-pon` - XGS-PON (10 Gbps)\n* `ng-pon2` - NG-PON2 (TWDM-PON) (4x10 Gbps)\n* `25g-pon` - 25G-PON (25 Gbps)\n* `50g-pon` - 50G-PON (50 Gbps)\n* `cisco-stackwise` - Cisco StackWise\n* `cisco-stackwise-plus` - Cisco StackWise Plus\n* `cisco-flexstack` - Cisco FlexStack\n* `cisco-flexstack-plus` - Cisco FlexStack Plus\n* `cisco-stackwise-80` - Cisco StackWise-80\n* `cisco-stackwise-160` - Cisco StackWise-160\n* `cisco-stackwise-320` - Cisco StackWise-320\n* `cisco-stackwise-480` - Cisco StackWise-480\n* `cisco-stackwise-1t` - Cisco StackWise-1T\n* `juniper-vcp` - Juniper VCP\n* `extreme-summitstack` - Extreme SummitStack\n* `extreme-summitstack-128` - Extreme SummitStack-128\n* `extreme-summitstack-256` - Extreme SummitStack-256\n* `extreme-summitstack-512` - Extreme SummitStack-512\n* `other` - Other", + "x-spec-enum-id": "c6dfa8e84dd05942" }, "enabled": { "type": "boolean" diff --git a/docs/release-notes/version-4.4.md b/docs/release-notes/version-4.4.md index 0c95e9fcf..87707c924 100644 --- a/docs/release-notes/version-4.4.md +++ b/docs/release-notes/version-4.4.md @@ -1,5 +1,34 @@ # NetBox v4.4 +## v4.4.2 (2025-09-30) + +### Enhancements + +* [#17010](https://github.com/netbox-community/netbox/issues/17010) - Show admin navigation menu items only for staff & superusers +* [#19590](https://github.com/netbox-community/netbox/issues/19590) - Add columns for device site & location to device component tables +* [#19765](https://github.com/netbox-community/netbox/issues/19765) - Linkify assigned object types under saved filter view +* [#20308](https://github.com/netbox-community/netbox/issues/20308) - Add a hotkey (`/`) for the global search field +* [#20332](https://github.com/netbox-community/netbox/issues/20332) - Add a "none" option to object tag filters +* [#20380](https://github.com/netbox-community/netbox/issues/20380) - Introduce the `SENTRY_CONFIG` configuration parameter +* [#20412](https://github.com/netbox-community/netbox/issues/20412) - Linkify cluster type on virtual machine detail view +* [#20438](https://github.com/netbox-community/netbox/issues/20438) - Add `facility` field to bulk edit forms for sites and locations + +### Bug Fixes + +* [#18878](https://github.com/netbox-community/netbox/issues/18878) - Automatically assign a designated primary MAC address upon creation of a new interface +* [#20243](https://github.com/netbox-community/netbox/issues/20243) - Prevent scheduled system jobs from re-running multiple times +* [#20253](https://github.com/netbox-community/netbox/issues/20253) - Fix support for filtering object contact assignments in GraphQL API +* [#20365](https://github.com/netbox-community/netbox/issues/20365) - Address various inaccuracies in generated OpenAPI schema +* [#20375](https://github.com/netbox-community/netbox/issues/20375) - Preserve filter parameters when performing bulk operations +* [#20390](https://github.com/netbox-community/netbox/issues/20390) - Fix styling of page size selection dropdown +* [#20392](https://github.com/netbox-community/netbox/issues/20392) - Clean up ordering of interface type options +* [#20398](https://github.com/netbox-community/netbox/issues/20398) - Fix misleading error reporting for min/max custom field values +* [#20419](https://github.com/netbox-community/netbox/issues/20419) - Correct action buttons for child object views +* [#20425](https://github.com/netbox-community/netbox/issues/20425) - Fix Markdown preview functionality within "quick add" modal +* [#20441](https://github.com/netbox-community/netbox/issues/20441) - Fix display of the "groups" column in contact assignments table + +--- + ## v4.4.1 (2025-09-16) ### Enhancements diff --git a/netbox/project-static/dist/netbox.js b/netbox/project-static/dist/netbox.js index f4396002b..a84fbe7fb 100644 Binary files a/netbox/project-static/dist/netbox.js and b/netbox/project-static/dist/netbox.js differ diff --git a/netbox/project-static/dist/netbox.js.map b/netbox/project-static/dist/netbox.js.map index fb4435ea4..ed4bec6c6 100644 Binary files a/netbox/project-static/dist/netbox.js.map and b/netbox/project-static/dist/netbox.js.map differ diff --git a/netbox/project-static/package.json b/netbox/project-static/package.json index 2eda4d7ec..5ea2e91c7 100644 --- a/netbox/project-static/package.json +++ b/netbox/project-static/package.json @@ -29,8 +29,8 @@ "flatpickr": "4.6.13", "gridstack": "12.3.3", "htmx.org": "2.0.7", - "query-string": "9.3.0", - "sass": "1.92.1", + "query-string": "9.3.1", + "sass": "1.93.2", "tom-select": "2.4.3", "typeface-inter": "3.18.1", "typeface-roboto-mono": "1.1.13" diff --git a/netbox/project-static/yarn.lock b/netbox/project-static/yarn.lock index 8c3f250af..f0f1ace0e 100644 --- a/netbox/project-static/yarn.lock +++ b/netbox/project-static/yarn.lock @@ -2990,10 +2990,10 @@ punycode@^2.1.0: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== -query-string@9.3.0: - version "9.3.0" - resolved "https://registry.yarnpkg.com/query-string/-/query-string-9.3.0.tgz#f2d60d6b4442cb445f374b5ff749b937b2cccd03" - integrity sha512-IQHOQ9aauHAApwAaUYifpEyLHv6fpVGVkMOnwPzcDScLjbLj8tLsILn6unSW79NafOw1llh8oK7Gd0VwmXBFmA== +query-string@9.3.1: + version "9.3.1" + resolved "https://registry.yarnpkg.com/query-string/-/query-string-9.3.1.tgz#d0c93e6c7fb7c17bdf04aa09e382114580ede270" + integrity sha512-5fBfMOcDi5SA9qj5jZhWAcTtDfKF5WFdd2uD9nVNlbxVv1baq65aALy6qofpNEGELHvisjjasxQp7BlM9gvMzw== dependencies: decode-uri-component "^0.4.1" filter-obj "^5.1.0" @@ -3190,10 +3190,10 @@ safe-regex-test@^1.1.0: es-errors "^1.3.0" is-regex "^1.2.1" -sass@1.92.1: - version "1.92.1" - resolved "https://registry.yarnpkg.com/sass/-/sass-1.92.1.tgz#07fb1fec5647d7b712685d1090628bf52456fe86" - integrity sha512-ffmsdbwqb3XeyR8jJR6KelIXARM9bFQe8A6Q3W4Klmwy5Ckd5gz7jgUNHo4UOqutU5Sk1DtKLbpDP0nLCg1xqQ== +sass@1.93.2: + version "1.93.2" + resolved "https://registry.yarnpkg.com/sass/-/sass-1.93.2.tgz#e97d225d60f59a3b3dbb6d2ae3c1b955fd1f2cd1" + integrity sha512-t+YPtOQHpGW1QWsh1CHQ5cPIr9lbbGZLZnbihP/D/qZj/yuV68m8qarcV17nvkOX81BCrvzAlq2klCQFZghyTg== dependencies: chokidar "^4.0.0" immutable "^5.0.2" diff --git a/netbox/release.yaml b/netbox/release.yaml index 7708f8c60..0d70f6f7f 100644 --- a/netbox/release.yaml +++ b/netbox/release.yaml @@ -1,3 +1,3 @@ -version: "4.4.1" +version: "4.4.2" edition: "Community" -published: "2025-09-16" +published: "2025-09-30" diff --git a/netbox/translations/cs/LC_MESSAGES/django.mo b/netbox/translations/cs/LC_MESSAGES/django.mo index 635bb018d..4374fab97 100644 Binary files a/netbox/translations/cs/LC_MESSAGES/django.mo and b/netbox/translations/cs/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/cs/LC_MESSAGES/django.po b/netbox/translations/cs/LC_MESSAGES/django.po index 2d3bbe41e..c01f09592 100644 --- a/netbox/translations/cs/LC_MESSAGES/django.po +++ b/netbox/translations/cs/LC_MESSAGES/django.po @@ -17,7 +17,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Czech (https://app.transifex.com/netbox-community/teams/178115/cs/)\n" @@ -93,9 +93,9 @@ msgstr "Vaše heslo bylo úspěšně změněno." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -109,8 +109,8 @@ msgstr "Zajišťování" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -122,8 +122,8 @@ msgid "Active" msgstr "Aktivní" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Vypnuto" @@ -136,7 +136,7 @@ msgstr "Zrušení přidělování" msgid "Decommissioned" msgstr "Vyřazeno z provozu" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -204,7 +204,7 @@ msgstr "Region (zkratka)" #: netbox/ipam/filtersets.py:239 netbox/ipam/filtersets.py:968 #: netbox/virtualization/filtersets.py:152 msgid "Site group (ID)" -msgstr "Skupina umístění (ID)" +msgstr "Skupina lokalit (ID)" #: netbox/circuits/filtersets.py:57 netbox/circuits/filtersets.py:224 #: netbox/circuits/filtersets.py:304 netbox/dcim/base_filtersets.py:42 @@ -216,7 +216,7 @@ msgstr "Skupina umístění (ID)" #: netbox/extras/filtersets.py:652 netbox/ipam/filtersets.py:246 #: netbox/ipam/filtersets.py:975 netbox/virtualization/filtersets.py:159 msgid "Site group (slug)" -msgstr "Skupina umístění (zkratka)" +msgstr "Skupina lokalit (zkratka)" #: netbox/circuits/filtersets.py:62 netbox/circuits/forms/filtersets.py:59 #: netbox/circuits/forms/filtersets.py:183 @@ -265,7 +265,7 @@ msgstr "Skupina umístění (zkratka)" #: netbox/wireless/forms/model_forms.py:81 #: netbox/wireless/forms/model_forms.py:123 msgid "Site" -msgstr "Umístění" +msgstr "Lokalita" #: netbox/circuits/filtersets.py:68 netbox/circuits/filtersets.py:235 #: netbox/circuits/filtersets.py:315 netbox/dcim/base_filtersets.py:53 @@ -274,7 +274,7 @@ msgstr "Umístění" #: netbox/ipam/filtersets.py:257 netbox/ipam/filtersets.py:985 #: netbox/virtualization/filtersets.py:169 netbox/vpn/filtersets.py:366 msgid "Site (slug)" -msgstr "Umístění (zkratka)" +msgstr "Lokalita (zkratka)" #: netbox/circuits/filtersets.py:73 msgid "ASN (ID)" @@ -333,7 +333,7 @@ msgstr "Typ okruhu (URL zkratka)" #: netbox/ipam/filtersets.py:251 netbox/ipam/filtersets.py:979 #: netbox/virtualization/filtersets.py:163 netbox/vpn/filtersets.py:371 msgid "Site (ID)" -msgstr "Místo (ID)" +msgstr "Lokalita (ID)" #: netbox/circuits/filtersets.py:239 netbox/circuits/filtersets.py:321 #: netbox/dcim/base_filtersets.py:59 netbox/dcim/filtersets.py:261 @@ -676,8 +676,8 @@ msgstr "ID služby" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -722,7 +722,7 @@ msgstr "Barva" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -794,8 +794,8 @@ msgstr "Účet poskytovatele" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1025,7 +1025,7 @@ msgstr "Atributy" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1119,7 +1119,7 @@ msgstr "Síť poskytovatele" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1243,7 +1243,7 @@ msgstr "Provozní role" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1378,7 +1378,7 @@ msgstr "Region" #: netbox/virtualization/forms/model_forms.py:98 #: netbox/wireless/forms/filtersets.py:78 msgid "Site group" -msgstr "Skupina míst" +msgstr "Skupina lokalit " #: netbox/circuits/forms/filtersets.py:82 #: netbox/circuits/tables/circuits.py:62 @@ -1425,8 +1425,7 @@ msgstr "Přiřazení" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1744,13 +1743,13 @@ msgstr "zakončení virtuálních obvodů" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1905,7 +1904,7 @@ msgstr "Smluvní rychlost" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1918,7 +1917,7 @@ msgstr "Smluvní rychlost" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -1955,7 +1954,7 @@ msgstr "Koncový bod" #: netbox/circuits/tables/circuits.py:134 netbox/dcim/tables/devices.py:168 #: netbox/templates/dcim/sitegroup.html:26 msgid "Site Group" -msgstr "Skupina stránek" +msgstr "Skupina Lokalit" #: netbox/circuits/tables/circuits.py:149 #: netbox/templates/circuits/providernetwork.html:17 @@ -2008,12 +2007,12 @@ msgstr "Zakončení" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2036,7 +2035,7 @@ msgstr "Zakončení" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2118,7 +2117,7 @@ msgstr "Dokončeno" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Selhalo" @@ -2289,9 +2288,9 @@ msgid "User name" msgstr "Uživatelské jméno" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2479,7 +2478,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Přehled stojanů" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3123,8 +3122,8 @@ msgid "Staging" msgstr "Inscenace" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Vyřazení z provozu" @@ -3189,7 +3188,7 @@ msgstr "Zastaralé" msgid "Millimeters" msgstr "Milimetry" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Palce" @@ -3221,9 +3220,9 @@ msgstr "Zatuchlý" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3273,7 +3272,7 @@ msgid "Rear" msgstr "Zadní" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Inscenovaný" @@ -3306,7 +3305,7 @@ msgid "Top to bottom" msgstr "Shora dolů" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Pasivní" @@ -3335,8 +3334,8 @@ msgid "Proprietary" msgstr "Proprietární" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Ostatní" @@ -3353,7 +3352,7 @@ msgstr "Fyzické" msgid "Virtual" msgstr "Virtuální" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3367,7 +3366,7 @@ msgstr "Virtuální rozhraní" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3411,31 +3410,31 @@ msgstr "Ethernet s rychlostí 50 Gb/s" msgid "100 Gbps Ethernet" msgstr "Ethernet 100 Gb/s" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "Ethernet 200 Gb/s" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "Ethernet 400 Gb/s" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 Gb/s Ethernet" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Zásuvné vysílače a přijímače" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Ethernet propojovací deska" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Buněčný" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3443,147 +3442,147 @@ msgstr "Buněčný" msgid "Serial" msgstr "Sériový" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Koaxiální" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Stohování" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Poloviční" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Plný" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Přístupový" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Značkovaný" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Značkovaný (Vše)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Norma IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Pasivní 24V (2 páry)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Pasivní 24V (4 páry)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Pasivní 48V (2 páry)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Pasivní 48V (4 páry)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "měď" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Optická vlákna" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Měď - kroucený pár (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Měď - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Měď - koaxiální" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fiber - Multimode" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fiber - Single-mode" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Vlákno - Ostatní" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Připojeno" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilometry" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Metry" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centimetry" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Míle" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Stopy" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Zdvojený" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Jednofázový" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Třífázový" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Zakázané" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "vadný" @@ -3607,11 +3606,11 @@ msgstr "Nadřazená oblast (zkratka)" #: netbox/dcim/filtersets.py:119 msgid "Parent site group (ID)" -msgstr "Nadřazená skupina míst (ID)" +msgstr "Nadřazená skupina lokalit (ID)" #: netbox/dcim/filtersets.py:125 msgid "Parent site group (slug)" -msgstr "Nadřazená skupina míst (zkratka)" +msgstr "Nadřazená skupina lokalit (zkratka)" #: netbox/dcim/filtersets.py:167 netbox/extras/filtersets.py:422 #: netbox/ipam/filtersets.py:837 netbox/ipam/filtersets.py:989 @@ -4007,7 +4006,7 @@ msgstr "Přiřazené VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4048,7 +4047,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4106,8 +4105,8 @@ msgstr "Přemostěné rozhraní (ID)" msgid "LAG interface (ID)" msgstr "Rozhraní LAG (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4140,7 +4139,7 @@ msgstr "Kontext virtuálního zařízení (identifikátor)" msgid "Wireless LAN" msgstr "Bezdrátová síť LAN" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Bezdrátové spojení" @@ -4205,7 +4204,7 @@ msgstr "Značky" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4254,7 +4253,7 @@ msgstr "Časové pásmo" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4723,7 +4722,7 @@ msgid "Wireless role" msgstr "Bezdrátová role" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4737,7 +4736,7 @@ msgstr "Bezdrátová role" msgid "Module" msgstr "Modul" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "Agregační skupina" @@ -4749,7 +4748,7 @@ msgstr "Kontexty virtuálních zařízení" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4778,14 +4777,14 @@ msgid "VLAN group" msgstr "Skupina VLAN" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "Neznačené VLAN" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4809,7 +4808,7 @@ msgid "Wireless LAN group" msgstr "Skupina bezdrátových sítí" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -4891,7 +4890,7 @@ msgstr "dostupné možnosti" #: netbox/virtualization/forms/bulk_import.py:64 #: netbox/virtualization/forms/bulk_import.py:95 msgid "Assigned site" -msgstr "Přiřazené místo" +msgstr "Přiřazená lokalita" #: netbox/dcim/forms/bulk_import.py:144 msgid "Parent location" @@ -4948,7 +4947,7 @@ msgstr "Pokud není zadán typ stojanu, musí být nastavena výška U." #: netbox/dcim/forms/bulk_import.py:340 msgid "Parent site" -msgstr "Nadřazený web" +msgstr "Nadřazená lokalita" #: netbox/dcim/forms/bulk_import.py:347 netbox/dcim/forms/bulk_import.py:1604 msgid "Rack's location (if any)" @@ -5208,7 +5207,7 @@ msgstr "Odpovídající zadní port" msgid "Physical medium classification" msgstr "Klasifikace fyzického média" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Nainstalované zařízení" @@ -5296,12 +5295,12 @@ msgstr "" #: netbox/dcim/forms/bulk_import.py:1360 msgid "Side A site" -msgstr "Strana A stránky" +msgstr "Lokalita na straně A" #: netbox/dcim/forms/bulk_import.py:1364 #: netbox/wireless/forms/bulk_import.py:94 msgid "Site of parent device A (if any)" -msgstr "Místo rodičovského zařízení A (pokud existuje)" +msgstr "Lokalita rodičovského zařízení A (pokud existuje)" #: netbox/dcim/forms/bulk_import.py:1367 msgid "Side A device" @@ -5325,12 +5324,12 @@ msgstr "Název ukončení" #: netbox/dcim/forms/bulk_import.py:1385 msgid "Side B site" -msgstr "Stránky na straně B" +msgstr "Lokalita na straně B" #: netbox/dcim/forms/bulk_import.py:1389 #: netbox/wireless/forms/bulk_import.py:115 msgid "Site of parent device B (if any)" -msgstr "Místo rodičovského zařízení B (pokud existuje)" +msgstr "Lokalita rodičovského zařízení B (pokud existuje)" #: netbox/dcim/forms/bulk_import.py:1392 msgid "Side B device" @@ -5373,7 +5372,7 @@ msgstr "" "znaků: neplatný hex." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5385,7 +5384,7 @@ msgstr "Hlavní zařízení" #: netbox/dcim/forms/bulk_import.py:1563 msgid "Name of parent site" -msgstr "Název nadřazeného webu" +msgstr "Název nadřazené lokality" #: netbox/dcim/forms/bulk_import.py:1597 msgid "Upstream power panel" @@ -5438,7 +5437,7 @@ msgid "" "The tagged VLANs ({vlans}) must belong to the same site as the interface's " "parent device/VM, or they must be global" msgstr "" -"Označené VLAN ({vlans}) musí patřit ke stejnému webu jako nadřazené " +"Označené VLAN ({vlans}) musí patřit ke stejné lokalitě jako nadřazené " "zařízení/VM rozhraní, nebo musí být globální" #: netbox/dcim/forms/common.py:126 @@ -5483,7 +5482,7 @@ msgstr "Napájecí panel" msgid "Power Feed" msgstr "Napájecí zdroj" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Stav zařízení" @@ -5561,8 +5560,8 @@ msgstr "Obsazeno" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5616,7 +5615,7 @@ msgid "Transmit power (dBm)" msgstr "Vysílací výkon (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5626,7 +5625,7 @@ msgstr "Vysílací výkon (dBm)" msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "objeveno" @@ -5812,7 +5811,7 @@ msgid "Front Port" msgstr "Přední port" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5825,7 +5824,7 @@ msgid "Rear Port" msgstr "Zadní port" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5862,7 +5861,7 @@ msgid "" "Child devices must first be created and assigned to the site and rack of the" " parent device." msgstr "" -"Podřízená zařízení musí být nejprve vytvořena a přiřazena k staveništi a " +"Podřízená zařízení musí být nejprve vytvořena a přiřazena k lokalitě a " "stojanu nadřazeného zařízení." #: netbox/dcim/forms/model_forms.py:1710 @@ -5964,7 +5963,7 @@ msgstr "" "Počet předních portů, které mají být vytvořeny ({frontport_count}), musí " "odpovídat zvolenému počtu pozic zadních portů ({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6462,7 +6461,7 @@ msgid "tagged VLANs" msgstr "označené VLAN" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -6657,8 +6656,8 @@ msgid "" "The untagged VLAN ({untagged_vlan}) must belong to the same site as the " "interface's parent device, or it must be global." msgstr "" -"Neznačená VLAN ({untagged_vlan}) musí patřit ke stejnému webu jako nadřazené" -" zařízení rozhraní, nebo musí být globální." +"Neznačená VLAN ({untagged_vlan}) musí patřit ke stejné lokalitě jako " +"nadřazené zařízení rozhraní, nebo musí být globální." #: netbox/dcim/models/device_components.py:1087 msgid "Mapped position on corresponding rear port" @@ -7023,12 +7022,12 @@ msgstr "zařízení" #: netbox/dcim/models/devices.py:762 #, python-brace-format msgid "Rack {rack} does not belong to site {site}." -msgstr "Stojan {rack} nepatří k webu {site}." +msgstr "Stojan {rack} nepatří k lokalitě {site}." #: netbox/dcim/models/devices.py:767 #, python-brace-format msgid "Location {location} does not belong to site {site}." -msgstr "Lokace {location} nepatří k webu {site}." +msgstr "Lokace {location} nepatří k lokalitě{site}." #: netbox/dcim/models/devices.py:773 #, python-brace-format @@ -7261,7 +7260,7 @@ msgstr "napájecí panely" #, python-brace-format msgid "" "Location {location} ({location_site}) is in a different site than {site}" -msgstr "Lokace {location} ({location_site}) je na jiném místě než {site}" +msgstr "Lokace {location} ({location_site}) je v jiné lokalitě než {site}" #: netbox/dcim/models/power.py:106 msgid "supply" @@ -7306,7 +7305,7 @@ msgid "" "are in different sites." msgstr "" "Stojan {rack} ({rack_site}) a napájecí panel {powerpanel} " -"({powerpanel_site}) jsou na různých místech." +"({powerpanel_site}) jsou na různých lokalitách." #: netbox/dcim/models/power.py:185 msgid "Voltage cannot be negative for AC supply" @@ -7446,7 +7445,7 @@ msgstr "regály" #: netbox/dcim/models/racks.py:371 #, python-brace-format msgid "Assigned location must belong to parent site ({site})." -msgstr "Přiřazené umístění musí patřit nadřazenému webu ({site})." +msgstr "Přiřazené umístění musí patřit nadřazené lokalitě ({site})." #: netbox/dcim/models/racks.py:394 #, python-brace-format @@ -7469,7 +7468,7 @@ msgstr "" #: netbox/dcim/models/racks.py:411 #, python-brace-format msgid "Location must be from the same site, {site}." -msgstr "Umístění musí být ze stejného místa, {site}." +msgstr "Umístění musí být ze stejné lokalitě, {site}." #: netbox/dcim/models/racks.py:673 msgid "units" @@ -7519,11 +7518,11 @@ msgstr "Skupina webů nejvyšší úrovně s tímto slimákem již existuje." #: netbox/dcim/models/sites.py:122 msgid "site group" -msgstr "skupina stránek" +msgstr "skupina lokalit" #: netbox/dcim/models/sites.py:123 msgid "site groups" -msgstr "skupiny webů" +msgstr "skupiny lokalit" #: netbox/dcim/models/sites.py:145 msgid "Full name of the site" @@ -7632,11 +7631,11 @@ msgstr "Stojan B" #: netbox/dcim/tables/cables.py:102 netbox/wireless/forms/bulk_import.py:90 msgid "Site A" -msgstr "Stránky A" +msgstr "Lokalita A" #: netbox/dcim/tables/cables.py:108 netbox/wireless/forms/bulk_import.py:111 msgid "Site B" -msgstr "Místo B" +msgstr "Lokalita B" #: netbox/dcim/tables/cables.py:117 msgid "Color Name" @@ -7657,7 +7656,7 @@ msgstr "Dosažitelný" #: netbox/virtualization/tables/clusters.py:87 #: netbox/virtualization/views.py:241 msgid "Devices" -msgstr "Přístroje" +msgstr "Zařízení" #: netbox/dcim/tables/devices.py:78 netbox/dcim/tables/devices.py:130 #: netbox/virtualization/tables/clusters.py:92 @@ -7681,7 +7680,7 @@ msgstr "Konfigurační šablona" msgid "U Height" msgstr "Výška U" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7690,12 +7689,12 @@ msgstr "Výška U" msgid "IP Address" msgstr "IP adresa" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "IPv4 Adresa" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Adresa IPv6" @@ -7733,7 +7732,7 @@ msgstr "Napájecí porty" msgid "Power outlets" msgstr "Elektrické zásuvky" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7767,13 +7766,21 @@ msgstr "Modulové pozice" msgid "Inventory items" msgstr "Inventární položky" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Umístění zařízení" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Stránky zařízení" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulová přihrádka" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7784,27 +7791,27 @@ msgstr "Modulová přihrádka" msgid "Inventory Items" msgstr "Inventární položky" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Barva kabelu" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Propojit vrstevníky" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Označit Připojeno" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Maximální tažení (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Přidělené losování (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7816,12 +7823,12 @@ msgstr "Přidělené losování (W)" msgid "IP Addresses" msgstr "IP adresy" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Skupiny FHRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7832,41 +7839,41 @@ msgstr "Skupiny FHRP" msgid "Tunnel" msgstr "Tunel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Pouze správa" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Virtuální obvod" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Instalovaný modul" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Sériový modul" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Štítek aktiv modulu" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Stav modulu" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Komponenta" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Položky" @@ -8750,9 +8757,9 @@ msgstr "Uživatelská jména oddělená čárkami, uzavřená dvojitými uvozovk #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Skupiny" @@ -10657,11 +10664,11 @@ msgstr "Skupina VLAN (pokud existuje)" #: netbox/ipam/forms/bulk_import.py:181 msgid "VLAN Site" -msgstr "Stránky VLAN" +msgstr "Lokalita VLAN" #: netbox/ipam/forms/bulk_import.py:185 msgid "VLAN's site (if any)" -msgstr "Stránky VLAN (pokud existují)" +msgstr "Lokalita VLAN (pokud existují)" #: netbox/ipam/forms/bulk_import.py:214 #: netbox/virtualization/forms/bulk_import.py:80 @@ -12211,7 +12218,7 @@ msgstr "Šablony aplikačních služeb" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Aplikační služby" @@ -12263,7 +12270,7 @@ msgstr "Profily IPsec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12348,7 +12355,7 @@ msgstr "Přizpůsobení" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12465,7 +12472,7 @@ msgstr "Historie konfigurace" msgid "Background Tasks" msgstr "Úkoly na pozadí" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12477,12 +12484,12 @@ msgstr "Úkoly na pozadí" msgid "Add" msgstr "Přidat" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klon" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12495,7 +12502,7 @@ msgstr "Klon" msgid "Edit" msgstr "Upravit" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12510,26 +12517,26 @@ msgstr "Upravit" msgid "Delete" msgstr "Odstranit" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importovat" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Export" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Upravit vybrané" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Přejmenovat vybrané" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Odstranit vybrané" @@ -12672,63 +12679,63 @@ msgstr "Po inicializaci nelze do registru přidat úložiště" msgid "Cannot delete stores from registry" msgstr "Nelze odstranit obchody z registru" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Čeština" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "Dánština" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Němčina" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Angličtina" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "Španělština" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Francouzština" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Italština" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Japonština" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Holandština" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Polština" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "Portugalština" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Ruština" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Turečtina" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Ukrajinština" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Čínština" @@ -12846,7 +12853,7 @@ msgstr "Synchronizovaná data pro {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Synchronizováno {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} musí implementovat get_children ()" @@ -13867,7 +13874,7 @@ msgid "Leg" msgstr "větev" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Přidání aplikační služby" @@ -14356,7 +14363,7 @@ msgstr "Skupiny dětí" #: netbox/templates/dcim/sitegroup.html:60 msgid "Add Site Group" -msgstr "Přidat skupinu webů" +msgstr "Přidat skupinu lokalit" #: netbox/templates/dcim/trace/attachment.html:5 #: netbox/templates/extras/configtemplate.html:33 @@ -15595,17 +15602,17 @@ msgid "Allocated Resources" msgstr "Přidělené zdroje" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Virtuální procesory" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Paměť" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Místo na disku" @@ -15650,13 +15657,13 @@ msgstr "Typ clusteru" msgid "Virtual Disk" msgstr "Virtuální disk" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Zdroje" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Přidat virtuální disk" @@ -16643,11 +16650,7 @@ msgstr "Přihlásit" msgid "Copy to clipboard" msgstr "Kopírovat do schránky" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Toto pole je povinné" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Nastavit Null" diff --git a/netbox/translations/da/LC_MESSAGES/django.mo b/netbox/translations/da/LC_MESSAGES/django.mo index 7078e20c7..8d3c2f3fe 100644 Binary files a/netbox/translations/da/LC_MESSAGES/django.mo and b/netbox/translations/da/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/da/LC_MESSAGES/django.po b/netbox/translations/da/LC_MESSAGES/django.po index d42d5f659..1a1c3ea17 100644 --- a/netbox/translations/da/LC_MESSAGES/django.po +++ b/netbox/translations/da/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Danish (https://app.transifex.com/netbox-community/teams/178115/da/)\n" @@ -90,9 +90,9 @@ msgstr "Din adgangskode er blevet ændret." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -106,8 +106,8 @@ msgstr "Opretter" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -119,8 +119,8 @@ msgid "Active" msgstr "Aktiv" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Offline" @@ -133,7 +133,7 @@ msgstr "Nedlægger" msgid "Decommissioned" msgstr "Nedlagt" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -673,8 +673,8 @@ msgstr "Tjeneste-id" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -719,7 +719,7 @@ msgstr "Farve" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -791,8 +791,8 @@ msgstr "Leverandørkonto" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1022,7 +1022,7 @@ msgstr "Attributter" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1116,7 +1116,7 @@ msgstr "Leverandørnetværk" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1240,7 +1240,7 @@ msgstr "Operationel rolle" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1422,8 +1422,7 @@ msgstr "Opgave" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1741,13 +1740,13 @@ msgstr "virtuelle kredsløbsafslutninger" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1902,7 +1901,7 @@ msgstr "Forpligtelsesrate" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1915,7 +1914,7 @@ msgstr "Forpligtelsesrate" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2005,12 +2004,12 @@ msgstr "Opsigelser" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2033,7 +2032,7 @@ msgstr "Opsigelser" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2115,7 +2114,7 @@ msgstr "Afsluttet" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Mislykkedes" @@ -2286,9 +2285,9 @@ msgid "User name" msgstr "Brugernavn" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2475,7 +2474,7 @@ msgstr "Skal uploade en fil eller vælge en datafil, der skal synkroniseres" msgid "Rack Elevations" msgstr "Rackhøjder" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3121,8 +3120,8 @@ msgid "Staging" msgstr "Iscenesættelse" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Nedlæggelse" @@ -3187,7 +3186,7 @@ msgstr "Forældet" msgid "Millimeters" msgstr "Millimeter" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Tommer" @@ -3219,9 +3218,9 @@ msgstr "Forældet" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3271,7 +3270,7 @@ msgid "Rear" msgstr "Bageste" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Iscenesat" @@ -3304,7 +3303,7 @@ msgid "Top to bottom" msgstr "Top til bund" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Passiv" @@ -3333,8 +3332,8 @@ msgid "Proprietary" msgstr "Proprietær" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Andet" @@ -3351,7 +3350,7 @@ msgstr "Fysisk" msgid "Virtual" msgstr "Virtuel" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3365,7 +3364,7 @@ msgstr "Virtuelle grænseflader" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3409,31 +3408,31 @@ msgstr "50 Gbps Ethernet" msgid "100 Gbps Ethernet" msgstr "100 Gbps Ethernet" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "200 Gbps Ethernet" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "400 Gbps Ethernet" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 Gbps Ethernet" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Pluggbare transceivere" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Ethernet-bagpanel" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Cellulær" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3441,147 +3440,147 @@ msgstr "Cellulær" msgid "Serial" msgstr "Seriel" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Koaksial" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Stabling" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Halvdelen" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Fuld" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Adgang" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Markeret" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Tagget (Alle)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-i-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "IEEE-standard" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Passiv 24V (2-par)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Passiv 24V (4-par)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Passiv 48V (2-par)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Passiv 48V (4-par)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Kobber" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Fiberoptisk" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Kobber - snoet par (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Kobber - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Kobber - Koaksial" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fiber - Multimode" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fiber - Single-mode" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Fiber - Andet" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Tilsluttet" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilometer" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Meter" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centimeter" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Mil" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Fod" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Redundant" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Enkeltfase" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Trefaset" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Handicappede" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Defekt" @@ -4005,7 +4004,7 @@ msgstr "Tildelt VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4046,7 +4045,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4104,8 +4103,8 @@ msgstr "Broet grænseflade (ID)" msgid "LAG interface (ID)" msgstr "LAG-grænseflade (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4138,7 +4137,7 @@ msgstr "Virtuel enhedskontekst (identifikator)" msgid "Wireless LAN" msgstr "Trådløst LAN" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Trådløs forbindelse" @@ -4203,7 +4202,7 @@ msgstr "Mærker" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4252,7 +4251,7 @@ msgstr "Tidszone" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4721,7 +4720,7 @@ msgid "Wireless role" msgstr "Trådløs rolle" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4735,7 +4734,7 @@ msgstr "Trådløs rolle" msgid "Module" msgstr "Modul" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "FORSINKELSE" @@ -4747,7 +4746,7 @@ msgstr "Virtuelle enhedskontekster" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4776,14 +4775,14 @@ msgid "VLAN group" msgstr "VLAN-gruppe" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "Umærket VLAN" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4807,7 +4806,7 @@ msgid "Wireless LAN group" msgstr "Trådløs LAN-gruppe" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5206,7 +5205,7 @@ msgstr "Tilsvarende bagport" msgid "Physical medium classification" msgstr "Klassificering af fysisk medium" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Installeret enhed" @@ -5371,7 +5370,7 @@ msgstr "" "ugyldig hex." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5481,7 +5480,7 @@ msgstr "Strømpanel" msgid "Power Feed" msgstr "Strømforsyning" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Enhedsstatus" @@ -5559,8 +5558,8 @@ msgstr "Besat" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5614,7 +5613,7 @@ msgid "Transmit power (dBm)" msgstr "Sendeeffekt (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5624,7 +5623,7 @@ msgstr "Sendeeffekt (dBm)" msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Opdaget" @@ -5812,7 +5811,7 @@ msgid "Front Port" msgstr "Frontport" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5825,7 +5824,7 @@ msgid "Rear Port" msgstr "Bageste port" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5963,7 +5962,7 @@ msgstr "" "Antallet af frontporte, der skal oprettes ({frontport_count}) skal matche " "det valgte antal bageste portpositioner ({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6467,7 +6466,7 @@ msgid "tagged VLANs" msgstr "mærkede VLAN'er" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7694,7 +7693,7 @@ msgstr "Konfigurationsskabelon" msgid "U Height" msgstr "U Højde" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7703,12 +7702,12 @@ msgstr "U Højde" msgid "IP Address" msgstr "IP adresse" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "IPv4-adresse" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "IPv6-adresse" @@ -7746,7 +7745,7 @@ msgstr "Strømstik" msgid "Power outlets" msgstr "Strømudtag" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7780,13 +7779,21 @@ msgstr "Modulpladser" msgid "Inventory items" msgstr "Lagervarer" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Enhedens placering" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Enhedswebsted" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulbugt" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7797,27 +7804,27 @@ msgstr "Modulbugt" msgid "Inventory Items" msgstr "Lagervarer" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Kabelfarve" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Link jævnaldrende" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Marker tilsluttet" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Maksimal trækkraft (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Tildelt lodtrækning (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7829,12 +7836,12 @@ msgstr "Tildelt lodtrækning (W)" msgid "IP Addresses" msgstr "IP-adresser" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP Grupper" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7845,41 +7852,41 @@ msgstr "FHRP Grupper" msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Kun ledelse" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC'er" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Virtuelt kredsløb" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Installeret modul" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Seriel modul" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Modulaktivmærke" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Modulstatus" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Komponent" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Varer" @@ -8765,9 +8772,9 @@ msgstr "Brugernavne adskilt af kommaer, indkapslet med dobbelte anførselstegn" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Grupper" @@ -12240,7 +12247,7 @@ msgstr "Applikationstjenesteskabeloner" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Applikationstjenester" @@ -12292,7 +12299,7 @@ msgstr "IPsec-profiler" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12377,7 +12384,7 @@ msgstr "Tilpasning" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12494,7 +12501,7 @@ msgstr "Konfigurationshistorik" msgid "Background Tasks" msgstr "Baggrundsopgaver" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12506,12 +12513,12 @@ msgstr "Baggrundsopgaver" msgid "Add" msgstr "Tilføj" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klon" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12524,7 +12531,7 @@ msgstr "Klon" msgid "Edit" msgstr "Rediger" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12539,26 +12546,26 @@ msgstr "Rediger" msgid "Delete" msgstr "Slet" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importere" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Eksport" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Rediger markeret" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Omdøb markeret" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Slet markeret" @@ -12704,63 +12711,63 @@ msgstr "" msgid "Cannot delete stores from registry" msgstr "Kan ikke slette butikker fra registreringsdatabasen" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Tjekkisk" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "dansk" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Tysk" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "engelsk" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "spansk" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "franskmænd" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Italiensk" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Japansk" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Hollandsk" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Polere" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "portugisisk" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Russisk" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Tyrkisk" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Ukrainsk" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "kinesisk" @@ -12879,7 +12886,7 @@ msgstr "Synkroniserede data for {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Synkroniseret {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} skal implementere get_children ()" @@ -13902,7 +13909,7 @@ msgid "Leg" msgstr "Ben" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Tilføj en applikationstjeneste" @@ -15633,17 +15640,17 @@ msgid "Allocated Resources" msgstr "Tildelte ressourcer" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Virtuelle CPU'er" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Hukommelse" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Diskplads" @@ -15688,13 +15695,13 @@ msgstr "Klyngetype" msgid "Virtual Disk" msgstr "Virtuel disk" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Ressourcer" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Tilføj virtuel disk" @@ -16685,11 +16692,7 @@ msgstr "Abonner" msgid "Copy to clipboard" msgstr "Kopier til udklipsholder" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Dette felt er påkrævet" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Indstil Null" diff --git a/netbox/translations/de/LC_MESSAGES/django.mo b/netbox/translations/de/LC_MESSAGES/django.mo index bde46febb..bec3c38e6 100644 Binary files a/netbox/translations/de/LC_MESSAGES/django.mo and b/netbox/translations/de/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/de/LC_MESSAGES/django.po b/netbox/translations/de/LC_MESSAGES/django.po index dbd6145e9..af8271d86 100644 --- a/netbox/translations/de/LC_MESSAGES/django.po +++ b/netbox/translations/de/LC_MESSAGES/django.po @@ -9,18 +9,18 @@ # Steffen, 2024 # haagehan, 2024 # Niklas, 2025 -# Jeremy Stretch, 2025 # Robin Reinhardt, 2025 # chbally, 2025 +# Jeremy Stretch, 2025 # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" -"Last-Translator: chbally, 2025\n" +"Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: German (https://app.transifex.com/netbox-community/teams/178115/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -95,9 +95,9 @@ msgstr "Dein Passwort wurde erfolgreich geändert." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -111,8 +111,8 @@ msgstr "Provisionierung" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -124,8 +124,8 @@ msgid "Active" msgstr "Aktiv" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Offline" @@ -138,7 +138,7 @@ msgstr "Deprovisionierung" msgid "Decommissioned" msgstr "Stillgelegt" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -678,8 +678,8 @@ msgstr "Dienst ID" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -724,7 +724,7 @@ msgstr "Farbe" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -796,8 +796,8 @@ msgstr "Providerkonto" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1027,7 +1027,7 @@ msgstr "Attribute" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1121,7 +1121,7 @@ msgstr "Providernetzwerk" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1245,7 +1245,7 @@ msgstr "Operative Rolle" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1427,8 +1427,7 @@ msgstr "Zuweisung" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1748,13 +1747,13 @@ msgstr "virtuelle Verbindungsabschlüsse" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1909,7 +1908,7 @@ msgstr "Garantierte Bandbreite" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1922,7 +1921,7 @@ msgstr "Garantierte Bandbreite" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2012,12 +2011,12 @@ msgstr "Abschlusspunkte" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2040,7 +2039,7 @@ msgstr "Abschlusspunkte" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2123,7 +2122,7 @@ msgstr "Abgeschlossen" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Fehlgeschlagen" @@ -2294,9 +2293,9 @@ msgid "User name" msgstr "Benutzername" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2486,7 +2485,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Rackübersichten" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3138,8 +3137,8 @@ msgid "Staging" msgstr "Bereitstellung" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Außerbetriebnahme" @@ -3204,7 +3203,7 @@ msgstr "Veraltet" msgid "Millimeters" msgstr "Millimeter" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Zoll" @@ -3236,9 +3235,9 @@ msgstr "Abgestanden" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3288,7 +3287,7 @@ msgid "Rear" msgstr "Rückseite" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Vorbereitet" @@ -3321,7 +3320,7 @@ msgid "Top to bottom" msgstr "Von oben nach unten" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Passiv" @@ -3350,8 +3349,8 @@ msgid "Proprietary" msgstr "Propritär" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Andere" @@ -3368,7 +3367,7 @@ msgstr "Physikalisch" msgid "Virtual" msgstr "Virtuell" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3382,7 +3381,7 @@ msgstr "Virtuelle Schnittstellen" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3426,31 +3425,31 @@ msgstr "50-Gbit/s-Ethernet" msgid "100 Gbps Ethernet" msgstr "100 Gbit/s Ethernet" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "200 Gbit/s Ethernet" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "400-Gbit/s-Ethernet" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 Gbit/s Ethernet" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Steckbare Transceiver" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Backplane-Ethernet" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Mobilfunk" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3458,147 +3457,147 @@ msgstr "Mobilfunk" msgid "Serial" msgstr "Seriell" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Koaxial" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Stapelnd" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Halb" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Voll" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Automatisch" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Untagged" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Tagged" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Tagged (Alle)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q in Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "IEEE-Standard" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Passiv 24 V (2 Paare)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Passiv 24 V (4 Paare)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Passiv 48 V (2 Paare)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Passiv 48 V (4 Paare)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Kupfer" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Glasfaser" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Kupfer — Twisted Pair (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Kupfer - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Kupfer - Koaxial" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Glasfaser — Multimode" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Glasfaser — Singlemode" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Glasfaser - Andere" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Verbunden" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilometer" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Meter" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Zentimeter" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Meilen" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Fuß" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Redundant" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Einphasig" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Dreiphasig" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Deaktiviert" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Fehlerhaft" @@ -4022,7 +4021,7 @@ msgstr "Zugewiesene VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4063,7 +4062,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4122,8 +4121,8 @@ msgstr "Überbrückte Schnittstelle (ID)" msgid "LAG interface (ID)" msgstr "LAG-Schnittstelle (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4156,7 +4155,7 @@ msgstr "Virtual Device Context (Identifier)" msgid "Wireless LAN" msgstr "WLAN" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "WLAN Verbindung" @@ -4221,7 +4220,7 @@ msgstr "Tags" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4270,7 +4269,7 @@ msgstr "Zeitzone" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4739,7 +4738,7 @@ msgid "Wireless role" msgstr "WLAN Funktion" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4753,7 +4752,7 @@ msgstr "WLAN Funktion" msgid "Module" msgstr "Modul" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "LAG" @@ -4765,7 +4764,7 @@ msgstr "Virtual Device Contexts" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4794,14 +4793,14 @@ msgid "VLAN group" msgstr "VLAN-Gruppe" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "Untagged VLAN" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4825,7 +4824,7 @@ msgid "Wireless LAN group" msgstr "WLAN-Gruppe" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5229,7 +5228,7 @@ msgstr "Entsprechender Rückanschluss" msgid "Physical medium classification" msgstr "Klassifizierung des physikalischen Mediums" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Installiertes Gerät" @@ -5400,7 +5399,7 @@ msgstr "" "sechs Zeichen: ungültiges Hexadezimalzeichen." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5512,7 +5511,7 @@ msgstr "Stromverteiler" msgid "Power Feed" msgstr "Stromzufuhr" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Gerätestatus" @@ -5590,8 +5589,8 @@ msgstr "Belegt" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5645,7 +5644,7 @@ msgid "Transmit power (dBm)" msgstr "Sendeleistung (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5655,7 +5654,7 @@ msgstr "Sendeleistung (dBm)" msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Erfasst" @@ -5847,7 +5846,7 @@ msgid "Front Port" msgstr "Frontanschluss" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5860,7 +5859,7 @@ msgid "Rear Port" msgstr "Rückanschluss" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -6003,7 +6002,7 @@ msgstr "" "der ausgewählten Anzahl der hinteren Anschlusspositionen übereinstimmen " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6522,7 +6521,7 @@ msgid "tagged VLANs" msgstr "tagged VLANs" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7806,7 +7805,7 @@ msgstr "Konfigvorlage" msgid "U Height" msgstr "Höhe in HE" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7815,12 +7814,12 @@ msgstr "Höhe in HE" msgid "IP Address" msgstr "IP-Adresse" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "IPv4-Adresse" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "IPv6-Adresse" @@ -7858,7 +7857,7 @@ msgstr "Stromanschlüsse" msgid "Power outlets" msgstr "Steckdosen" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7892,13 +7891,21 @@ msgstr "Moduleinsätze" msgid "Inventory items" msgstr "Inventarartikel" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Standort des Geräts" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Geräteseite" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Moduleinsatz" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7909,27 +7916,27 @@ msgstr "Moduleinsatz" msgid "Inventory Items" msgstr "Inventarartikel" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Farbe des Kabels" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Verbindungsenden" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Als verbunden markieren" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Maximaler Stromverbrauch (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Zugewiesener Stromverbrauch (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7941,12 +7948,12 @@ msgstr "Zugewiesener Stromverbrauch (W)" msgid "IP Addresses" msgstr "IP-Adressen" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP-Gruppen" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7957,41 +7964,41 @@ msgstr "FHRP-Gruppen" msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Nur zur Verwaltung" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDCs" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Virtuelle Verbindung" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Installiertes Modul" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Seriennummer des Moduls" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Modul-Asset-Tag" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Status des Moduls" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Komponente" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Artikel" @@ -8894,9 +8901,9 @@ msgstr "" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Gruppen" @@ -12429,7 +12436,7 @@ msgstr "Vorlagen für Anwendungsdienste" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Anwendungsdienste" @@ -12481,7 +12488,7 @@ msgstr "IPSec-Profile" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12566,7 +12573,7 @@ msgstr "Personalisierung" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12683,7 +12690,7 @@ msgstr "Konfigurationsverlauf" msgid "Background Tasks" msgstr "Hintergrundaufgaben" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12695,12 +12702,12 @@ msgstr "Hintergrundaufgaben" msgid "Add" msgstr "Hinzufügen" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klonen" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12713,7 +12720,7 @@ msgstr "Klonen" msgid "Edit" msgstr "Bearbeiten" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12728,26 +12735,26 @@ msgstr "Bearbeiten" msgid "Delete" msgstr "Löschen" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importieren" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Exportieren" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Ausgewählte bearbeiten" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Ausgewählte umbenennen" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Ausgewählte löschen" @@ -12901,63 +12908,63 @@ msgstr "" msgid "Cannot delete stores from registry" msgstr "Stores können nicht aus der Registrierung gelöscht werden" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Tschechisch" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "Dänisch" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Deutsch" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Englisch" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "Spanisch" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Französisch" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Italenisch" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Japanisch" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Niederländisch" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Polnisch" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "Portugiesisch" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Russisch" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Türkisch" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Ukrainisch" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Chinesisch" @@ -13076,7 +13083,7 @@ msgstr "Daten synchronisiert für {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Synchronisiert {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} muss get_children () implementieren" @@ -14104,7 +14111,7 @@ msgid "Leg" msgstr "Bein" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Einen Anwendungsdienst hinzufügen" @@ -15841,17 +15848,17 @@ msgid "Allocated Resources" msgstr "Zugewiesene Ressourcen" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Virtuelle CPUs" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Arbeitsspeicher" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Speicherplatz" @@ -15896,13 +15903,13 @@ msgstr "Cluster-Typ" msgid "Virtual Disk" msgstr "Virtuelle Festplatte" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Ressourcen" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Virtuelles Laufwerk hinzufügen" @@ -16914,11 +16921,7 @@ msgstr "Abonnieren" msgid "Copy to clipboard" msgstr "In die Zwischenablage kopieren" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Dieses Feld ist erforderlich" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Auf Null setzen" diff --git a/netbox/translations/es/LC_MESSAGES/django.mo b/netbox/translations/es/LC_MESSAGES/django.mo index 3fdc1d17f..d0a959420 100644 Binary files a/netbox/translations/es/LC_MESSAGES/django.mo and b/netbox/translations/es/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/es/LC_MESSAGES/django.po b/netbox/translations/es/LC_MESSAGES/django.po index 1cf54fd1e..169af020b 100644 --- a/netbox/translations/es/LC_MESSAGES/django.po +++ b/netbox/translations/es/LC_MESSAGES/django.po @@ -12,7 +12,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Spanish (https://app.transifex.com/netbox-community/teams/178115/es/)\n" @@ -90,9 +90,9 @@ msgstr "La contraseña se ha cambiado correctamente." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -106,8 +106,8 @@ msgstr "Aprovisionamiento" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -119,8 +119,8 @@ msgid "Active" msgstr "Activo" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Fuera de línea" @@ -133,7 +133,7 @@ msgstr "Desaprovisionamiento" msgid "Decommissioned" msgstr "Retirado" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -673,8 +673,8 @@ msgstr "ID de servicio" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -719,7 +719,7 @@ msgstr "Color" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -791,8 +791,8 @@ msgstr "Cuenta de proveedor" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1022,7 +1022,7 @@ msgstr "Atributos" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1116,7 +1116,7 @@ msgstr "Red de proveedores" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1240,7 +1240,7 @@ msgstr "Función operativa" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1422,8 +1422,7 @@ msgstr "Asignación" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1742,13 +1741,13 @@ msgstr "terminaciones de circuitos virtuales" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1903,7 +1902,7 @@ msgstr "Tasa de compromiso" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1916,7 +1915,7 @@ msgstr "Tasa de compromiso" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2006,12 +2005,12 @@ msgstr "Terminaciones" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2034,7 +2033,7 @@ msgstr "Terminaciones" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2116,7 +2115,7 @@ msgstr "Completado" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Falló" @@ -2287,9 +2286,9 @@ msgid "User name" msgstr "Nombre de usuario" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2478,7 +2477,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Elevaciones de estanterías" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3129,8 +3128,8 @@ msgid "Staging" msgstr "Puesta en escena" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Desmantelamiento" @@ -3195,7 +3194,7 @@ msgstr "Obsoleto" msgid "Millimeters" msgstr "Milímetros" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Pulgadas" @@ -3227,9 +3226,9 @@ msgstr "Rancio" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3279,7 +3278,7 @@ msgid "Rear" msgstr "Trasera" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Escenificado" @@ -3312,7 +3311,7 @@ msgid "Top to bottom" msgstr "De arriba a abajo" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Pasivo" @@ -3341,8 +3340,8 @@ msgid "Proprietary" msgstr "Proprietario" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Otros" @@ -3359,7 +3358,7 @@ msgstr "Físico" msgid "Virtual" msgstr "Virtual" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3373,7 +3372,7 @@ msgstr "Interfaces virtuales" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3417,31 +3416,31 @@ msgstr "Ethernet de 50 Gbps" msgid "100 Gbps Ethernet" msgstr "Ethernet de 100 Gbps" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "Ethernet de 200 Gbps" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "Ethernet de 400 Gbps" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "Ethernet de 800 Gbps" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Transceptores enchufables" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Ethernet de placa base" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Celular" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3449,147 +3448,147 @@ msgstr "Celular" msgid "Serial" msgstr "serie" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Coaxial" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Apilamiento" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Mitad" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Lleno" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Acceso" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Etiquetado" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Etiquetado (Todos)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Estándar IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Pasivo 24 V (2 pares)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Pasivo de 24 V (4 pares)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Pasivo 48 V (2 pares)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Pasivo de 48 V (4 pares)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Cobre" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Fibra óptica" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Cobre - Par trenzado (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Cobre - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Cobre - Coaxial" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fibra: multimodo" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fibra: modo único" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Fibra - Otras" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Conectado" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilómetros" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Medidores" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centímetros" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Millas" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Pies" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Redundante" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Monofásico" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Trifásico" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Discapacitado" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Defectuoso" @@ -4013,7 +4012,7 @@ msgstr "VID asignado" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4054,7 +4053,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4116,8 +4115,8 @@ msgstr "Interfaz puenteada (ID)" msgid "LAG interface (ID)" msgstr "Interfaz LAG (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4150,7 +4149,7 @@ msgstr "Contexto de dispositivo virtual (identificador)" msgid "Wireless LAN" msgstr "LAN inalámbrica" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Enlace inalámbrico" @@ -4215,7 +4214,7 @@ msgstr "Etiquetas" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4264,7 +4263,7 @@ msgstr "Zona horaria" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4733,7 +4732,7 @@ msgid "Wireless role" msgstr "Función inalámbrica" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4747,7 +4746,7 @@ msgstr "Función inalámbrica" msgid "Module" msgstr "Módulo" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "DESFASE" @@ -4759,7 +4758,7 @@ msgstr "Contextos de dispositivos virtuales" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4788,14 +4787,14 @@ msgid "VLAN group" msgstr "Grupo de VLAN" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "VLAN sin etiquetar" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4819,7 +4818,7 @@ msgid "Wireless LAN group" msgstr "Grupo LAN inalámbrico" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5222,7 +5221,7 @@ msgstr "Puerto trasero correspondiente" msgid "Physical medium classification" msgstr "Clasificación de medios físicos" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Dispositivo instalado" @@ -5393,7 +5392,7 @@ msgstr "" "caracteres: hexadecimal no válido." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5504,7 +5503,7 @@ msgstr "Panel de alimentación" msgid "Power Feed" msgstr "Alimentación eléctrica" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Estado del dispositivo" @@ -5582,8 +5581,8 @@ msgstr "Ocupado" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5637,7 +5636,7 @@ msgid "Transmit power (dBm)" msgstr "Potencia de transmisión (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5647,7 +5646,7 @@ msgstr "Potencia de transmisión (dBm)" msgid "Cable" msgstr "Cable" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Descubierto" @@ -5837,7 +5836,7 @@ msgid "Front Port" msgstr "Puerto frontal" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5850,7 +5849,7 @@ msgid "Rear Port" msgstr "Puerto trasero" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5992,7 +5991,7 @@ msgstr "" "coincidir con el número seleccionado de posiciones de los puertos traseros " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6507,7 +6506,7 @@ msgid "tagged VLANs" msgstr "VLAN etiquetadas" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7769,7 +7768,7 @@ msgstr "Plantilla de configuración" msgid "U Height" msgstr "Altura en U" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7778,12 +7777,12 @@ msgstr "Altura en U" msgid "IP Address" msgstr "Dirección IP" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "Dirección IPv4" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Dirección IPv6" @@ -7821,7 +7820,7 @@ msgstr "Puertos de alimentación" msgid "Power outlets" msgstr "tomas de corriente" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7855,13 +7854,21 @@ msgstr "Bahías de módulos" msgid "Inventory items" msgstr "Artículos de inventario" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Ubicación del dispositivo" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Sitio del dispositivo" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Bahía de módulos" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7872,27 +7879,27 @@ msgstr "Bahía de módulos" msgid "Inventory Items" msgstr "Artículos de inventario" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Color del cable" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Vincula a tus compañeros" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Marcar conectado" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Consumo máximo (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Sorteo asignado (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7904,12 +7911,12 @@ msgstr "Sorteo asignado (W)" msgid "IP Addresses" msgstr "Direcciones IP" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Grupos FHRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7920,41 +7927,41 @@ msgstr "Grupos FHRP" msgid "Tunnel" msgstr "Túnel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Solo administración" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Circuito virtual" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Módulo instalado" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Serie del módulo" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Etiqueta de activo del módulo" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Estado del módulo" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Componente" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Artículos" @@ -8848,9 +8855,9 @@ msgstr "Nombres de usuario separados por comas y entre comillas dobles" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Grupos" @@ -12379,7 +12386,7 @@ msgstr "Plantillas de servicio de aplicaciones" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Servicios de aplicaciones" @@ -12431,7 +12438,7 @@ msgstr "Perfiles IPSec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12516,7 +12523,7 @@ msgstr "Personalización" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12633,7 +12640,7 @@ msgstr "Historial de configuración" msgid "Background Tasks" msgstr "Tareas en segundo plano" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12645,12 +12652,12 @@ msgstr "Tareas en segundo plano" msgid "Add" msgstr "Añadir" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Clon" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12663,7 +12670,7 @@ msgstr "Clon" msgid "Edit" msgstr "Editar" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12678,26 +12685,26 @@ msgstr "Editar" msgid "Delete" msgstr "Eliminar" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importar" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Exportación" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Editar seleccionado" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Cambiar nombre seleccionado" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Eliminar seleccionado" @@ -12845,63 +12852,63 @@ msgstr "No se pueden agregar tiendas al registro después de la inicialización" msgid "Cannot delete stores from registry" msgstr "No se pueden eliminar las tiendas del registro" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "checa" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "danés" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "alemán" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Inglés" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "Español" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "francesa" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "italiano" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "japonés" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "holandesa" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "polaco" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "portugués" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "rusa" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "turca" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "ucraniana" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "chino" @@ -13021,7 +13028,7 @@ msgstr "Datos sincronizados para {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Sincronizado {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} debe implementar get_children ()" @@ -14049,7 +14056,7 @@ msgid "Leg" msgstr "Pierna" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Agregar un servicio de aplicaciones" @@ -15785,17 +15792,17 @@ msgid "Allocated Resources" msgstr "Recursos asignados" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "CPUs virtuales" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Memoria" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Espacio en disco" @@ -15840,13 +15847,13 @@ msgstr "Tipo de clúster" msgid "Virtual Disk" msgstr "Disco virtual" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Recursos" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Agregar disco virtual" @@ -16855,11 +16862,7 @@ msgstr "Suscríbase" msgid "Copy to clipboard" msgstr "Copiar al portapapeles" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Este campo es obligatorio" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Establecer nulo" diff --git a/netbox/translations/fr/LC_MESSAGES/django.mo b/netbox/translations/fr/LC_MESSAGES/django.mo index ac96292ae..a025f8e8f 100644 Binary files a/netbox/translations/fr/LC_MESSAGES/django.mo and b/netbox/translations/fr/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/fr/LC_MESSAGES/django.po b/netbox/translations/fr/LC_MESSAGES/django.po index ff4a492cc..9d61eb751 100644 --- a/netbox/translations/fr/LC_MESSAGES/django.po +++ b/netbox/translations/fr/LC_MESSAGES/django.po @@ -22,7 +22,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: French (https://app.transifex.com/netbox-community/teams/178115/fr/)\n" @@ -100,9 +100,9 @@ msgstr "Votre mot de passe a été modifié avec succès." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -116,8 +116,8 @@ msgstr "Approvisionnement" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -129,8 +129,8 @@ msgid "Active" msgstr "Actif" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Hors ligne" @@ -143,7 +143,7 @@ msgstr "Déprovisionnement" msgid "Decommissioned" msgstr "Mis hors service" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -683,8 +683,8 @@ msgstr "Identifiant du service" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -729,7 +729,7 @@ msgstr "Couleur" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -801,8 +801,8 @@ msgstr "Identifiant de compte du prestataire" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1032,7 +1032,7 @@ msgstr "Attributs" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1126,7 +1126,7 @@ msgstr "Réseau de fournisseurs" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1250,7 +1250,7 @@ msgstr "Rôle opérationnel" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1432,8 +1432,7 @@ msgstr "Affectation" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1752,13 +1751,13 @@ msgstr "terminaisons de circuits virtuels" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1913,7 +1912,7 @@ msgstr "Bande passante garantie" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1926,7 +1925,7 @@ msgstr "Bande passante garantie" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2016,12 +2015,12 @@ msgstr "Terminaisons" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2044,7 +2043,7 @@ msgstr "Terminaisons" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2127,7 +2126,7 @@ msgstr "Terminé" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Échoué" @@ -2298,9 +2297,9 @@ msgid "User name" msgstr "Nom d'utilisateur" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2491,7 +2490,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Élévations des baies" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3145,8 +3144,8 @@ msgid "Staging" msgstr "Mise en scène" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Démantèlement" @@ -3211,7 +3210,7 @@ msgstr "Obsolète" msgid "Millimeters" msgstr "Millimètres" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Pouces" @@ -3243,9 +3242,9 @@ msgstr "Rassis" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3295,7 +3294,7 @@ msgid "Rear" msgstr "Arrière" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Mis en scène" @@ -3328,7 +3327,7 @@ msgid "Top to bottom" msgstr "De haut en bas" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Passif" @@ -3357,8 +3356,8 @@ msgid "Proprietary" msgstr "Propriétaire" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Autres" @@ -3375,7 +3374,7 @@ msgstr "Physique" msgid "Virtual" msgstr "Virtuel" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3389,7 +3388,7 @@ msgstr "Interfaces virtuelles" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3433,31 +3432,31 @@ msgstr "Ethernet 50 Gbit/s" msgid "100 Gbps Ethernet" msgstr "Ethernet 100 Gbit/s" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "Ethernet 200 Gbit/s" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "Ethernet 400 Gbit/s" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "Ethernet 800 Gbit/s" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Émetteurs-récepteurs enfichables" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Ethernet de fond de panier" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Cellulaire" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3465,147 +3464,147 @@ msgstr "Cellulaire" msgid "Serial" msgstr "Série" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Coaxiale" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Empilage" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "La moitié" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Complet" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Automatique" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Accès" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Tagué" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Tagué (Tous)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Qin-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Norme IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "24 V passif (2 paires)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "24 V passif (4 paires)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "48 V passif (2 paires)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "48 V passif (4 paires)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Cuivre" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "fibre optique" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Cuivre - Paire torsadée (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Cuivre - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Cuivre - Coaxial" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fibre - Multimode" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fibre - Monomode" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Fibre - Autres" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Connecté" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilomètres" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Mètres" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centimètres" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Miles" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Pieds" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Redondant" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Monophasé" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Triphasé" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Désactivé" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Défectueux" @@ -4029,7 +4028,7 @@ msgstr "VID attribué" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4070,7 +4069,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4129,8 +4128,8 @@ msgstr "Interface pontée (ID)" msgid "LAG interface (ID)" msgstr "Interface LAG (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4163,7 +4162,7 @@ msgstr "Contexte du périphérique virtuel (Identifiant)" msgid "Wireless LAN" msgstr "LAN sans fil" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Liaison sans fil" @@ -4228,7 +4227,7 @@ msgstr "Étiquettes" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4277,7 +4276,7 @@ msgstr "Fuseau horaire" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4746,7 +4745,7 @@ msgid "Wireless role" msgstr "Rôle sans fil" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4760,7 +4759,7 @@ msgstr "Rôle sans fil" msgid "Module" msgstr "Modules" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "DÉCALAGE" @@ -4772,7 +4771,7 @@ msgstr "Contextes des appareils virtuels" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4801,14 +4800,14 @@ msgid "VLAN group" msgstr "groupe VLAN" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "VLAN non étiqueté" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4832,7 +4831,7 @@ msgid "Wireless LAN group" msgstr "Groupe LAN sans fil" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5233,7 +5232,7 @@ msgstr "Port arrière correspondant" msgid "Physical medium classification" msgstr "Classification des supports physiques" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Appareil installé" @@ -5404,7 +5403,7 @@ msgstr "" "de six caractères : hexadécimal non valide." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5517,7 +5516,7 @@ msgstr "Panneau d'alimentation" msgid "Power Feed" msgstr "Alimentation" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "État de l'appareil" @@ -5595,8 +5594,8 @@ msgstr "Occupé" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5650,7 +5649,7 @@ msgid "Transmit power (dBm)" msgstr "Puissance de transmission (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5660,7 +5659,7 @@ msgstr "Puissance de transmission (dBm)" msgid "Cable" msgstr "câble" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Découvert" @@ -5849,7 +5848,7 @@ msgid "Front Port" msgstr "Port avant" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5862,7 +5861,7 @@ msgid "Rear Port" msgstr "Port arrière" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -6001,7 +6000,7 @@ msgstr "" "Le nombre de ports frontaux à créer ({frontport_count}) doit correspondre au" " nombre sélectionné de positions des ports arrière ({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6516,7 +6515,7 @@ msgid "tagged VLANs" msgstr "VLAN étiquetés" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7780,7 +7779,7 @@ msgstr "Modèle de configuration" msgid "U Height" msgstr "Hauteur en U" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7789,12 +7788,12 @@ msgstr "Hauteur en U" msgid "IP Address" msgstr "Adresse IP" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "Adresse IPv4" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Adresse IPv6" @@ -7832,7 +7831,7 @@ msgstr "Ports d'alimentation" msgid "Power outlets" msgstr "Prises de courant" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7866,13 +7865,21 @@ msgstr "Baies pour modules" msgid "Inventory items" msgstr "Articles d'inventaire" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Emplacement de l'appareil" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Site de l'appareil" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Module Bay" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7883,27 +7890,27 @@ msgstr "Module Bay" msgid "Inventory Items" msgstr "Articles d'inventaire" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Couleur du câble" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Lier les pairs" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Marquer comme connecté" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Tirage maximal (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Tirage alloué (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7915,12 +7922,12 @@ msgstr "Tirage alloué (W)" msgid "IP Addresses" msgstr "Adresses IP" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Groupes FHRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7931,41 +7938,41 @@ msgstr "Groupes FHRP" msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Gestion uniquement" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Circuit virtuel" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Module installé" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Série du module" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Étiquette d'actif du module" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "État du module" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Composant" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Objets" @@ -8865,9 +8872,9 @@ msgstr "" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Groupes" @@ -12418,7 +12425,7 @@ msgstr "Modèles de services d'application" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Services d'application" @@ -12470,7 +12477,7 @@ msgstr "Profils IPSec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12555,7 +12562,7 @@ msgstr "Personnalisation" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12672,7 +12679,7 @@ msgstr "Historique de configuration" msgid "Background Tasks" msgstr "Tâches d'arrière-plan" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12684,12 +12691,12 @@ msgstr "Tâches d'arrière-plan" msgid "Add" msgstr "Ajouter" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Cloner" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12702,7 +12709,7 @@ msgstr "Cloner" msgid "Edit" msgstr "Modifier" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12717,26 +12724,26 @@ msgstr "Modifier" msgid "Delete" msgstr "Supprimer" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importer" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Exporter" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Modifier la sélection" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Renommer la sélection" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Supprimer la sélection" @@ -12887,63 +12894,63 @@ msgstr "Impossible d'ajouter des magasins au registre après l'initialisation" msgid "Cannot delete stores from registry" msgstr "Impossible de supprimer des magasins du registre" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "tchèque" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "danois" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "allemand" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Anglais" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "espagnol" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "français" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "italien" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "japonais" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "néerlandais" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "polonais" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "portugais" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "russe" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Turc" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Ukrainien" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "chinois" @@ -13064,7 +13071,7 @@ msgstr "Données synchronisées pour {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Synchronisé {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} doit implémenter get_children ()" @@ -14092,7 +14099,7 @@ msgid "Leg" msgstr "Jambe" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Ajouter un service d'application" @@ -15829,17 +15836,17 @@ msgid "Allocated Resources" msgstr "Ressources allouées" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Processeurs virtuels" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Mémoire" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Espace disque" @@ -15884,13 +15891,13 @@ msgstr "Type de cluster" msgid "Virtual Disk" msgstr "Disque virtuel" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Ressources" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Ajouter un disque virtuel" @@ -16896,11 +16903,7 @@ msgstr "Souscrire" msgid "Copy to clipboard" msgstr "Copier dans le presse-papiers" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Ce champ est obligatoire" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Définir à Null" diff --git a/netbox/translations/it/LC_MESSAGES/django.mo b/netbox/translations/it/LC_MESSAGES/django.mo index 07f44ca4b..53867e31c 100644 Binary files a/netbox/translations/it/LC_MESSAGES/django.mo and b/netbox/translations/it/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/it/LC_MESSAGES/django.po b/netbox/translations/it/LC_MESSAGES/django.po index a14421e93..aabe7809c 100644 --- a/netbox/translations/it/LC_MESSAGES/django.po +++ b/netbox/translations/it/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Italian (https://app.transifex.com/netbox-community/teams/178115/it/)\n" @@ -92,9 +92,9 @@ msgstr "La tua password è stata cambiata con successo." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -108,8 +108,8 @@ msgstr "Approvvigionamento" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -121,8 +121,8 @@ msgid "Active" msgstr "Attivo" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Offline" @@ -135,7 +135,7 @@ msgstr "Deprovisioning" msgid "Decommissioned" msgstr "Dismesso" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -675,8 +675,8 @@ msgstr "ID del servizio" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -721,7 +721,7 @@ msgstr "Colore" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -793,8 +793,8 @@ msgstr "Provider account " #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1024,7 +1024,7 @@ msgstr "Attributi" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1118,7 +1118,7 @@ msgstr "Provider network" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1242,7 +1242,7 @@ msgstr "Ruolo operativo" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1424,8 +1424,7 @@ msgstr "Assegnazione" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1744,13 +1743,13 @@ msgstr "terminazioni di circuiti virtuali" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1905,7 +1904,7 @@ msgstr "Tasso di impegno" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1918,7 +1917,7 @@ msgstr "Tasso di impegno" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2008,12 +2007,12 @@ msgstr "Terminazioni" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2036,7 +2035,7 @@ msgstr "Terminazioni" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2120,7 +2119,7 @@ msgstr "Completato" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Fallito" @@ -2291,9 +2290,9 @@ msgid "User name" msgstr "Nome utente" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2481,7 +2480,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Elevazioni dei rack" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3134,8 +3133,8 @@ msgid "Staging" msgstr "Messa in scena" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Smantellamento" @@ -3200,7 +3199,7 @@ msgstr "Obsoleto" msgid "Millimeters" msgstr "Millimetri" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Pollici" @@ -3232,9 +3231,9 @@ msgstr "Stantio" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3284,7 +3283,7 @@ msgid "Rear" msgstr "Posteriore" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Messo in scena" @@ -3317,7 +3316,7 @@ msgid "Top to bottom" msgstr "Dall'alto verso il basso" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Passivo" @@ -3346,8 +3345,8 @@ msgid "Proprietary" msgstr "Proprietario" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Altro" @@ -3364,7 +3363,7 @@ msgstr "Fisico" msgid "Virtual" msgstr "Virtuale" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3378,7 +3377,7 @@ msgstr "Interfacce virtuali" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3422,31 +3421,31 @@ msgstr "Ethernet a 50 Gbps" msgid "100 Gbps Ethernet" msgstr "Ethernet 100 Gbps" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "Ethernet a 200 Gbps" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "Ethernet a 400 Gbps" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "Ethernet a 800 Gbps" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Ricetrasmettitori collegabili" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Backplane Ethernet" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Cellulare" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3454,147 +3453,147 @@ msgstr "Cellulare" msgid "Serial" msgstr "Seriale" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Coassiale" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "impilamento" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Metà" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Completo" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Accesso" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Taggato" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Contrassegnati (tutti)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Norma IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "24V passivo (2 coppie)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "24V passivo (4 coppie)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "48V passivo (2 coppie)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "48V passivo (4 coppie)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Rame" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Fibra ottica" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Rame - Coppia intrecciata (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Rame - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Rame - coassiale" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fibra - multimodale" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fibra - Monomodale" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Fibra - Altro" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Connesso" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Chilometri" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Metri" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centimetri" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Miglia" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Piedi" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Ridondante" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Monofase" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Trifase" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Disabili" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Difettoso" @@ -4018,7 +4017,7 @@ msgstr "VID assegnato" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4059,7 +4058,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4121,8 +4120,8 @@ msgstr "Interfaccia con ponte (ID)" msgid "LAG interface (ID)" msgstr "Interfaccia LAG (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4155,7 +4154,7 @@ msgstr "Contesto del dispositivo virtuale (identificatore)" msgid "Wireless LAN" msgstr "LAN senza fili" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Collegamento wireless" @@ -4220,7 +4219,7 @@ msgstr "Etichette" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4269,7 +4268,7 @@ msgstr "Fuso orario" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4738,7 +4737,7 @@ msgid "Wireless role" msgstr "Ruolo wireless" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4752,7 +4751,7 @@ msgstr "Ruolo wireless" msgid "Module" msgstr "Modulo" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "RITARDO" @@ -4764,7 +4763,7 @@ msgstr "Contesti dei dispositivi virtuali" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4793,14 +4792,14 @@ msgid "VLAN group" msgstr "Gruppo VLAN" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "VLAN senza tag" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4824,7 +4823,7 @@ msgid "Wireless LAN group" msgstr "Gruppo LAN wireless" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5228,7 +5227,7 @@ msgstr "Porta posteriore corrispondente" msgid "Physical medium classification" msgstr "Classificazione del mezzo fisico" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Dispositivo installato" @@ -5400,7 +5399,7 @@ msgstr "" "sei caratteri: esadecimale non valido." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5511,7 +5510,7 @@ msgstr "Pannello di alimentazione" msgid "Power Feed" msgstr "Alimentazione" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Stato del dispositivo" @@ -5589,8 +5588,8 @@ msgstr "Occupato" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5644,7 +5643,7 @@ msgid "Transmit power (dBm)" msgstr "Potenza di trasmissione (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5654,7 +5653,7 @@ msgstr "Potenza di trasmissione (dBm)" msgid "Cable" msgstr "Cavo" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Scoperto" @@ -5846,7 +5845,7 @@ msgid "Front Port" msgstr "Porta anteriore" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5859,7 +5858,7 @@ msgid "Rear Port" msgstr "Porta posteriore" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -6001,7 +6000,7 @@ msgstr "" " al numero selezionato di posizioni delle porte posteriori " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6523,7 +6522,7 @@ msgid "tagged VLANs" msgstr "VLAN contrassegnate" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7794,7 +7793,7 @@ msgstr "Modello di configurazione" msgid "U Height" msgstr "Altezza U" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7803,12 +7802,12 @@ msgstr "Altezza U" msgid "IP Address" msgstr "Indirizzo IP" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "Indirizzo IPv4" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Indirizzo IPv6" @@ -7846,7 +7845,7 @@ msgstr "Porte di alimentazione" msgid "Power outlets" msgstr "Prese di corrente" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7880,13 +7879,21 @@ msgstr "Alloggiamenti per moduli" msgid "Inventory items" msgstr "Articoli di inventario" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Posizione del dispositivo" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Sito del dispositivo" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulo Bay" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7897,27 +7904,27 @@ msgstr "Modulo Bay" msgid "Inventory Items" msgstr "Articoli di inventario" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Colore del cavo" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Collegamento tra colleghi" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Contrassegna connesso" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Assorbimento massimo (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Pareggio assegnato (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7929,12 +7936,12 @@ msgstr "Pareggio assegnato (W)" msgid "IP Addresses" msgstr "Indirizzi IP" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Gruppi FHRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7945,41 +7952,41 @@ msgstr "Gruppi FHRP" msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Solo gestione" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Circuito virtuale" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Modulo installato" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Modulo seriale" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Tag delle risorse del modulo" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Stato del modulo" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Componente" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Oggetti" @@ -8877,9 +8884,9 @@ msgstr "Nomi utente separati da virgole, racchiusi tra virgolette" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Gruppi" @@ -12409,7 +12416,7 @@ msgstr "Modelli di servizi applicativi" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Servizi applicativi" @@ -12461,7 +12468,7 @@ msgstr "Profili IPSec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12546,7 +12553,7 @@ msgstr "Personalizzazione" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12663,7 +12670,7 @@ msgstr "Cronologia della configurazione" msgid "Background Tasks" msgstr "Attività in background" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12675,12 +12682,12 @@ msgstr "Attività in background" msgid "Add" msgstr "Inserisci" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Clona" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12693,7 +12700,7 @@ msgstr "Clona" msgid "Edit" msgstr "Modifica" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12708,26 +12715,26 @@ msgstr "Modifica" msgid "Delete" msgstr "Elimina" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importa" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Esporta" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Modifica selezionato" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Rinomina selezionato" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Elimina selezionati" @@ -12879,63 +12886,63 @@ msgstr "Impossibile aggiungere negozi al registro dopo l'inizializzazione" msgid "Cannot delete stores from registry" msgstr "Impossibile eliminare i negozi dal registro" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "cechi" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "danese" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Tedesco" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Inglese" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "spagnolo" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Francese" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Italiano" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Giapponese" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Olandese" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Polacco" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "portoghese" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Russo" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "turco" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "ucraino" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Cinese" @@ -13054,7 +13061,7 @@ msgstr "Dati sincronizzati per {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Sincronizzato {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} deve implementare get_children ()" @@ -14079,7 +14086,7 @@ msgid "Leg" msgstr "Gamba" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Aggiungere un servizio applicativo" @@ -15817,17 +15824,17 @@ msgid "Allocated Resources" msgstr "Risorse allocate" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "CPU virtuali" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Memoria" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Spazio su disco" @@ -15872,13 +15879,13 @@ msgstr "Tipo di cluster" msgid "Virtual Disk" msgstr "Disco virtuale" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Risorse" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Aggiungi disco virtuale" @@ -16880,11 +16887,7 @@ msgstr "Abbonati" msgid "Copy to clipboard" msgstr "Copia negli appunti" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Questo campo è obbligatorio" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Imposta Null" diff --git a/netbox/translations/ja/LC_MESSAGES/django.mo b/netbox/translations/ja/LC_MESSAGES/django.mo index c1a2329db..36fdb3564 100644 Binary files a/netbox/translations/ja/LC_MESSAGES/django.mo and b/netbox/translations/ja/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/ja/LC_MESSAGES/django.po b/netbox/translations/ja/LC_MESSAGES/django.po index ac5abc806..68f5b1b58 100644 --- a/netbox/translations/ja/LC_MESSAGES/django.po +++ b/netbox/translations/ja/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Japanese (https://app.transifex.com/netbox-community/teams/178115/ja/)\n" @@ -89,9 +89,9 @@ msgstr "パスワードは正常に変更されました。" #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -105,8 +105,8 @@ msgstr "プロビジョニング" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -118,8 +118,8 @@ msgid "Active" msgstr "アクティブ" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "オフライン" @@ -132,7 +132,7 @@ msgstr "デプロビジョニング" msgid "Decommissioned" msgstr "廃止" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -672,8 +672,8 @@ msgstr "サービス ID" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -718,7 +718,7 @@ msgstr "色" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -790,8 +790,8 @@ msgstr "プロバイダアカウント" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1021,7 +1021,7 @@ msgstr "属性" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1115,7 +1115,7 @@ msgstr "プロバイダネットワーク" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1239,7 +1239,7 @@ msgstr "運用上のロール" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1421,8 +1421,7 @@ msgstr "割当" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1740,13 +1739,13 @@ msgstr "仮想回線終端" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1901,7 +1900,7 @@ msgstr "保証帯域" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1914,7 +1913,7 @@ msgstr "保証帯域" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2004,12 +2003,12 @@ msgstr "終端" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2032,7 +2031,7 @@ msgstr "終端" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2114,7 +2113,7 @@ msgstr "完了" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "失敗" @@ -2285,9 +2284,9 @@ msgid "User name" msgstr "ユーザ名" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2474,7 +2473,7 @@ msgstr "同期するファイルをアップロードするか、データファ msgid "Rack Elevations" msgstr "ラック図" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3115,8 +3114,8 @@ msgid "Staging" msgstr "ステージング" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "廃止" @@ -3181,7 +3180,7 @@ msgstr "廃止済" msgid "Millimeters" msgstr "ミリメートル" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "インチ" @@ -3213,9 +3212,9 @@ msgstr "古い" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3265,7 +3264,7 @@ msgid "Rear" msgstr "背面" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "検証" @@ -3298,7 +3297,7 @@ msgid "Top to bottom" msgstr "上から下へ" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "パッシブ" @@ -3327,8 +3326,8 @@ msgid "Proprietary" msgstr "独自規格" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "その他" @@ -3345,7 +3344,7 @@ msgstr "物理" msgid "Virtual" msgstr "仮想" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3359,7 +3358,7 @@ msgstr "仮想インタフェース" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3403,31 +3402,31 @@ msgstr "50 ギガビットイーサネット" msgid "100 Gbps Ethernet" msgstr "100 ギガビットイーサネット" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "200 ギガビット/秒イーサネット" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "400 ギガビットイーサネット" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 ギガビット/秒イーサネット" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "プラガブルトランシーバー" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "バックプレーンイーサネット" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "セルラー" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3435,147 +3434,147 @@ msgstr "セルラー" msgid "Serial" msgstr "シリアル" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "同軸" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "スタック" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "半二重" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "全二重" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "自動" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "アクセス" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "タグ付き" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "タグ付き (全て)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "IEEE スタンダード" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "パッシブ 24V (2ペア)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "パッシブ 24V (4ペア)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "パッシブ 48V (2ペア)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "パッシブ 48V (4ペア)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "カッパー" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "光ファイバー" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "銅線-ツイストペア (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "銅-トワイナックス (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "銅-同軸" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "ファイバ-マルチモード" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "ファイバ-シングルモード" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "ファイバー-その他" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "接続済" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "キロメートル" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "メートル" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "センチメートル" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "マイル" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "フィート" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "冗長" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "単相" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "三相" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "無効" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "不良" @@ -3999,7 +3998,7 @@ msgstr "割当 VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4040,7 +4039,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4098,8 +4097,8 @@ msgstr "ブリッジインタフェース (ID)" msgid "LAG interface (ID)" msgstr "LAG インタフェース (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4132,7 +4131,7 @@ msgstr "仮想デバイスコンテキスト (識別子)" msgid "Wireless LAN" msgstr "無線 LAN" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "無線リンク" @@ -4197,7 +4196,7 @@ msgstr "タグ" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4244,7 +4243,7 @@ msgstr "タイムゾーン" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4713,7 +4712,7 @@ msgid "Wireless role" msgstr "無線ロール" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4727,7 +4726,7 @@ msgstr "無線ロール" msgid "Module" msgstr "モジュール" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "LAG" @@ -4739,7 +4738,7 @@ msgstr "仮想デバイスコンテキスト" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4768,14 +4767,14 @@ msgid "VLAN group" msgstr "VLAN グループ" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "タグなし VLAN" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4799,7 +4798,7 @@ msgid "Wireless LAN group" msgstr "無線 LAN グループ" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5194,7 +5193,7 @@ msgstr "対応する背面ポート" msgid "Physical medium classification" msgstr "物理媒体の分類" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "取付済みデバイス" @@ -5355,7 +5354,7 @@ msgid "" msgstr "{color} 使用されているどの色名とも一致せず、6 文字を超えました。16 進数が無効です。" #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5461,7 +5460,7 @@ msgstr "電源盤" msgid "Power Feed" msgstr "電源タップ" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "デバイスステータス" @@ -5539,8 +5538,8 @@ msgstr "専有済" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5594,7 +5593,7 @@ msgid "Transmit power (dBm)" msgstr "送信出力 (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5604,7 +5603,7 @@ msgstr "送信出力 (dBm)" msgid "Cable" msgstr "ケーブル" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "自動検出" @@ -5785,7 +5784,7 @@ msgid "Front Port" msgstr "前面ポート" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5798,7 +5797,7 @@ msgid "Rear Port" msgstr "背面ポート" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5929,7 +5928,7 @@ msgid "" msgstr "" "前面ポートの数 ({frontport_count}) は選択した背面ポートの数 ({rearport_count}) と一致する必要があります。" -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6409,7 +6408,7 @@ msgid "tagged VLANs" msgstr "タグ付き VLAN" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7593,7 +7592,7 @@ msgstr "設定テンプレート" msgid "U Height" msgstr "ユニット数" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7602,12 +7601,12 @@ msgstr "ユニット数" msgid "IP Address" msgstr "IP アドレス" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "IPv4 アドレス" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "IPv6 アドレス" @@ -7645,7 +7644,7 @@ msgstr "電源ポート" msgid "Power outlets" msgstr "電源コンセント" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7679,13 +7678,21 @@ msgstr "モジュールベイ" msgid "Inventory items" msgstr "在庫品目" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "デバイスの場所" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "デバイスサイト" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "モジュールベイ" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7696,27 +7703,27 @@ msgstr "モジュールベイ" msgid "Inventory Items" msgstr "在庫品目" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "ケーブル色" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "対向" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "接続済みとしてマークする" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "最大電力 (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "割当電力 (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7728,12 +7735,12 @@ msgstr "割当電力 (W)" msgid "IP Addresses" msgstr "IP アドレス" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP グループ" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7744,41 +7751,41 @@ msgstr "FHRP グループ" msgid "Tunnel" msgstr "トンネル" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "管理のみ" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "仮想回線" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "取付済みモジュール" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "モジュールシリアル番号" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "モジュール資産タグ" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "モジュールステータス" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "構成要素" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "アイテム" @@ -8660,9 +8667,9 @@ msgstr "二重引用符で囲まれたカンマ区切りユーザ名" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "グループ" @@ -12038,7 +12045,7 @@ msgstr "アプリケーションサービステンプレート" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "アプリケーションサービス" @@ -12090,7 +12097,7 @@ msgstr "IPsec プロファイル" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12175,7 +12182,7 @@ msgstr "カスタマイズ" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12292,7 +12299,7 @@ msgstr "設定履歴" msgid "Background Tasks" msgstr "バックグラウンドタスク" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12304,12 +12311,12 @@ msgstr "バックグラウンドタスク" msgid "Add" msgstr "追加" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "クローン" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12322,7 +12329,7 @@ msgstr "クローン" msgid "Edit" msgstr "編集" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12337,26 +12344,26 @@ msgstr "編集" msgid "Delete" msgstr "削除" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "インポート" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "エクスポート" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "選択項目を編集" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "選択項目の名前を変更" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "選択項目を削除" @@ -12498,63 +12505,63 @@ msgstr "初期化後にストアをレジストリに追加できません" msgid "Cannot delete stores from registry" msgstr "レジストリからストアを削除できません" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "チェコ語" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "デンマーク語" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "ドイツ語" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "英語" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "スペイン語" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "フランス語" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "イタリア語" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "日本語" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "オランダ語" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "ポーランド語" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "ポルトガル語" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "ロシア語" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "トルコ語" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "ウクライナ語" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "中国語" @@ -12669,7 +12676,7 @@ msgstr "の同期データ {object_type} {object}。" msgid "Synced {count} {object_type}" msgstr "同期済み {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} はget_children () を実装する必要があります" @@ -13686,7 +13693,7 @@ msgid "Leg" msgstr "レッグ" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "アプリケーションサービスを追加" @@ -15388,17 +15395,17 @@ msgid "Allocated Resources" msgstr "割り当てられたリソース" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "バーチャル CPU" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "メモリー" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "ディスク容量" @@ -15443,13 +15450,13 @@ msgstr "クラスタタイプ" msgid "Virtual Disk" msgstr "仮想ディスク" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "リソース" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "仮想ディスクを追加" @@ -16399,11 +16406,7 @@ msgstr "購読" msgid "Copy to clipboard" msgstr "クリップボードにコピー" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "このフィールドは必須です" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "NULL を設定" diff --git a/netbox/translations/nl/LC_MESSAGES/django.mo b/netbox/translations/nl/LC_MESSAGES/django.mo index fc0e03d3d..599ec799b 100644 Binary files a/netbox/translations/nl/LC_MESSAGES/django.mo and b/netbox/translations/nl/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/nl/LC_MESSAGES/django.po b/netbox/translations/nl/LC_MESSAGES/django.po index c8729bf11..f02ef1b2c 100644 --- a/netbox/translations/nl/LC_MESSAGES/django.po +++ b/netbox/translations/nl/LC_MESSAGES/django.po @@ -16,7 +16,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Dutch (https://app.transifex.com/netbox-community/teams/178115/nl/)\n" @@ -94,9 +94,9 @@ msgstr "Je wachtwoord is succesvol gewijzigd." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -110,8 +110,8 @@ msgstr "Provisioning" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -123,8 +123,8 @@ msgid "Active" msgstr "Actief" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Offline" @@ -137,7 +137,7 @@ msgstr "Deprovisioning" msgid "Decommissioned" msgstr "Buiten gebruik" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -677,8 +677,8 @@ msgstr "Service-ID" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -723,7 +723,7 @@ msgstr "Kleur" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -795,8 +795,8 @@ msgstr "Provideraccount" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1026,7 +1026,7 @@ msgstr "Attributen" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1120,7 +1120,7 @@ msgstr "Netwerkprovider" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1244,7 +1244,7 @@ msgstr "Operationele rol" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1426,8 +1426,7 @@ msgstr "Opdracht" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1746,13 +1745,13 @@ msgstr "beëindigingen van virtuele circuits" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1907,7 +1906,7 @@ msgstr "Vastleggingspercentage" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1920,7 +1919,7 @@ msgstr "Vastleggingspercentage" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2010,12 +2009,12 @@ msgstr "Beëindigingen" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2038,7 +2037,7 @@ msgstr "Beëindigingen" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2122,7 +2121,7 @@ msgstr "Voltooid" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Mislukt" @@ -2293,9 +2292,9 @@ msgid "User name" msgstr "Gebruikersnaam" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2485,7 +2484,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Rackverhogingen" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3136,8 +3135,8 @@ msgid "Staging" msgstr "Klaarzetten" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Ontmanteling" @@ -3202,7 +3201,7 @@ msgstr "Verouderd" msgid "Millimeters" msgstr "Millimeters" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Inches" @@ -3234,9 +3233,9 @@ msgstr "Muf" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3286,7 +3285,7 @@ msgid "Rear" msgstr "Achterkant" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Klaargezet" @@ -3319,7 +3318,7 @@ msgid "Top to bottom" msgstr "Van boven naar beneden" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Passief" @@ -3348,8 +3347,8 @@ msgid "Proprietary" msgstr "Gepatenteerd" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Andere" @@ -3366,7 +3365,7 @@ msgstr "Fysiek" msgid "Virtual" msgstr "Virtueel" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3380,7 +3379,7 @@ msgstr "Virtuele interfaces" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3424,31 +3423,31 @@ msgstr "50 Gbps Ethernet" msgid "100 Gbps Ethernet" msgstr "100 Gbps Ethernet" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "200 Gbps Ethernet" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "400 Gbps Ethernet" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 Gbps Ethernet" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Pluggable transceivers" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Backplane Ethernet" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Mobiel" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3456,147 +3455,147 @@ msgstr "Mobiel" msgid "Serial" msgstr "Serienummer" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Coaxiaal" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Stapelen" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Half" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Volledig" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Auto" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Toegang" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Getagd" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Getagd (Alles)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "IEEE-standaard" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Passief 24V (2 paren)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Passief 24V (4 paren)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Passief 48V (2 paren)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Passief 48V (4 paren)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Koper" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Glasvezel" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Koper - Gedraaid paar (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Koper - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Koper - Coaxiaal" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fiber - Multimode" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fiber - Single-modus" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Vezel - overig" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Verbonden" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilometers" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Meters" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centimeters" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Mijlen" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Feet" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Redundant" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Een fase" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Drie fase" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Uitgeschakeld" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Defect" @@ -4020,7 +4019,7 @@ msgstr "Toegewezen VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4061,7 +4060,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4121,8 +4120,8 @@ msgstr "Overbrugde interface (ID)" msgid "LAG interface (ID)" msgstr "LAG-interface (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4155,7 +4154,7 @@ msgstr "Context van het virtuele apparaat (ID)" msgid "Wireless LAN" msgstr "Draadloos LAN" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Draadloze link" @@ -4220,7 +4219,7 @@ msgstr "Labels" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4269,7 +4268,7 @@ msgstr "Tijdzone" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4738,7 +4737,7 @@ msgid "Wireless role" msgstr "Draadloze rol" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4752,7 +4751,7 @@ msgstr "Draadloze rol" msgid "Module" msgstr "Module" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "LAG" @@ -4764,7 +4763,7 @@ msgstr "Contexten van virtuele apparaten" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4793,14 +4792,14 @@ msgid "VLAN group" msgstr "VLAN-groep" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "VLAN zonder label" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4824,7 +4823,7 @@ msgid "Wireless LAN group" msgstr "Draadloze LAN-groep" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5228,7 +5227,7 @@ msgstr "Bijbehorende poort aan de achterkant" msgid "Physical medium classification" msgstr "Classificatie van fysieke media" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Geïnstalleerd apparaat" @@ -5399,7 +5398,7 @@ msgstr "" "dan zes tekens: ongeldige hexadecimale waarde." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5510,7 +5509,7 @@ msgstr "Voedingspaneel" msgid "Power Feed" msgstr "Stroomvoorziening" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Status van het apparaat" @@ -5588,8 +5587,8 @@ msgstr "Bezet" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5643,7 +5642,7 @@ msgid "Transmit power (dBm)" msgstr "Zendvermogen (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5653,7 +5652,7 @@ msgstr "Zendvermogen (dBm)" msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Ontdekt" @@ -5845,7 +5844,7 @@ msgid "Front Port" msgstr "Poort Voor" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5858,7 +5857,7 @@ msgid "Rear Port" msgstr "Poort achter" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -6000,7 +5999,7 @@ msgstr "" "overeenkomen met het geselecteerde aantal posities aan de achterkant van de " "poort ({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6517,7 +6516,7 @@ msgid "tagged VLANs" msgstr "gelabelde VLAN's" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7772,7 +7771,7 @@ msgstr "Configuratiesjabloon" msgid "U Height" msgstr "U-hoogte" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7781,12 +7780,12 @@ msgstr "U-hoogte" msgid "IP Address" msgstr "IP-adres" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "IPv4-adres" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "IPv6-adres" @@ -7824,7 +7823,7 @@ msgstr "Voedingspoorten" msgid "Power outlets" msgstr "Stopcontacten" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7858,13 +7857,21 @@ msgstr "Modulebays" msgid "Inventory items" msgstr "Inventarisartikelen" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Locatie van het apparaat" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Website van het apparaat" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modulebaai" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7875,27 +7882,27 @@ msgstr "Modulebaai" msgid "Inventory Items" msgstr "Inventarisartikelen" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Kleur van de kabel" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Peers koppelen" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Markeer Verbonden" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Maximale trekkracht (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Toegewezen trekking (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7907,12 +7914,12 @@ msgstr "Toegewezen trekking (W)" msgid "IP Addresses" msgstr "IP-adressen" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP-groepen" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7923,41 +7930,41 @@ msgstr "FHRP-groepen" msgid "Tunnel" msgstr "Tunnel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Alleen beheer" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC's" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Virtueel circuit" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Geïnstalleerde module" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Seriële module" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Tag voor module-bedrijfsmiddelen" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Status van de module" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Onderdeel" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Artikelen" @@ -8854,9 +8861,9 @@ msgstr "" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Groepen" @@ -12377,7 +12384,7 @@ msgstr "Sjablonen voor toepassingsservices" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Applicatieservices" @@ -12429,7 +12436,7 @@ msgstr "IPsec-profielen" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12514,7 +12521,7 @@ msgstr "Aanpassing" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12631,7 +12638,7 @@ msgstr "Configuratiegeschiedenis" msgid "Background Tasks" msgstr "Achtergrondtaken" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12643,12 +12650,12 @@ msgstr "Achtergrondtaken" msgid "Add" msgstr "Toevoegen" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Kloon" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12661,7 +12668,7 @@ msgstr "Kloon" msgid "Edit" msgstr "Bewerken" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12676,26 +12683,26 @@ msgstr "Bewerken" msgid "Delete" msgstr "Verwijderen" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importeren" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Exporteren" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Geselecteerde bewerken" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Geselecteerde naam wijzigen" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Geselecteerde verwijderen" @@ -12846,63 +12853,63 @@ msgstr "Kan na initialisatie geen winkels aan het register toevoegen" msgid "Cannot delete stores from registry" msgstr "Kan winkels niet verwijderen uit het register" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Tsjechisch" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "Deens" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Duits" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Engels" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "Spaans" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Frans" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Italiaans" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Japans" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Nederlands" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Pools" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "Portugees" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Russisch" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Turks" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Oekraïens" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Chinees" @@ -13022,7 +13029,7 @@ msgstr "Gesynchroniseerde gegevens voor {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Gesynchroniseerd {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} moet get_children () implementeren" @@ -14049,7 +14056,7 @@ msgid "Leg" msgstr "Leg" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Een toepassingsservice toevoegen" @@ -15785,17 +15792,17 @@ msgid "Allocated Resources" msgstr "Toegewezen middelen" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Virtuele CPU's" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Geheugen" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Schijfruimte" @@ -15840,13 +15847,13 @@ msgstr "Clustertype" msgid "Virtual Disk" msgstr "Virtuele schijf" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Hulpbronnen" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Virtuele schijf toevoegen" @@ -16850,11 +16857,7 @@ msgstr "Abonneer" msgid "Copy to clipboard" msgstr "Naar klembord kopiëren" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Dit veld is verplicht" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Null instellen" diff --git a/netbox/translations/pl/LC_MESSAGES/django.mo b/netbox/translations/pl/LC_MESSAGES/django.mo index 469d24839..45b212dab 100644 Binary files a/netbox/translations/pl/LC_MESSAGES/django.mo and b/netbox/translations/pl/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/pl/LC_MESSAGES/django.po b/netbox/translations/pl/LC_MESSAGES/django.po index 77bc2cf13..852dc0f6c 100644 --- a/netbox/translations/pl/LC_MESSAGES/django.po +++ b/netbox/translations/pl/LC_MESSAGES/django.po @@ -15,7 +15,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Polish (https://app.transifex.com/netbox-community/teams/178115/pl/)\n" @@ -93,9 +93,9 @@ msgstr "Twoje hasło zostało pomyślnie zmienione." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -109,8 +109,8 @@ msgstr "Wdrażanie" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -122,8 +122,8 @@ msgid "Active" msgstr "Aktywny" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Nieaktywny" @@ -136,7 +136,7 @@ msgstr "Wycofywanie" msgid "Decommissioned" msgstr "Wycofane z użytku" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -676,8 +676,8 @@ msgstr "ID usługi" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -722,7 +722,7 @@ msgstr "Kolor" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -794,8 +794,8 @@ msgstr "Konto u dostawcy usług" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1025,7 +1025,7 @@ msgstr "Atrybuty" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1119,7 +1119,7 @@ msgstr "Sieć dostawcy usług" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1243,7 +1243,7 @@ msgstr "Rola operacyjna" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1425,8 +1425,7 @@ msgstr "Zlecenie" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1744,13 +1743,13 @@ msgstr "zakończenia łączy wirtualnych" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1905,7 +1904,7 @@ msgstr "Przydzielona przepustowość" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1918,7 +1917,7 @@ msgstr "Przydzielona przepustowość" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2008,12 +2007,12 @@ msgstr "Zakończenia" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2036,7 +2035,7 @@ msgstr "Zakończenia" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2118,7 +2117,7 @@ msgstr "Zakończone" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Nie powiodło się" @@ -2289,9 +2288,9 @@ msgid "User name" msgstr "Nazwa użytkownika" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2478,7 +2477,7 @@ msgstr "Musisz przesłać plik lub wybrać plik danych do synchronizacji" msgid "Rack Elevations" msgstr "Elewacje szaf" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3126,8 +3125,8 @@ msgid "Staging" msgstr "Etap przygotowywaczy" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Wycofywanie z użytku" @@ -3192,7 +3191,7 @@ msgstr "Przestarzały" msgid "Millimeters" msgstr "Milimetry(ów)" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Cale(i)" @@ -3224,9 +3223,9 @@ msgstr "Nieświeży" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3276,7 +3275,7 @@ msgid "Rear" msgstr "Tył" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Na etapie przygotowawczym" @@ -3309,7 +3308,7 @@ msgid "Top to bottom" msgstr "Od góry do dołu" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Pasywny" @@ -3338,8 +3337,8 @@ msgid "Proprietary" msgstr "Własnościowy" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Pozostałe" @@ -3356,7 +3355,7 @@ msgstr "Fizyczny" msgid "Virtual" msgstr "Wirtualny" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3370,7 +3369,7 @@ msgstr "Interfejsy wirtualne" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3414,31 +3413,31 @@ msgstr "Ethernet 50 Gb/s" msgid "100 Gbps Ethernet" msgstr "Ethernet 100 Gb/s" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "Ethernet 200 Gb/s" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "Ethernet 400 Gb/s" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "Ethernet 800 Gb/s" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Wtykowe nadajniki-odbiorniki" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Płaszczyzna tylna Ethernet" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Komórkowy" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3446,147 +3445,147 @@ msgstr "Komórkowy" msgid "Serial" msgstr "Numer seryjny" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "koncentryczny" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Łączenie w stos" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Połowa" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Pełny" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Automatyczny" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Dostępowy (nietagowany)" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Tagowany" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Tagowane (Wszystkie)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Standard IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Pasywny 24V (2 pary)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Pasywny 24V (4-parowy)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Pasywny 48V (2 pary)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Pasywny 48V (4 pary)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Miedź" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Światłowód" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Miedź - skręcona para (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Miedź - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Miedź - koncentryczna" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Światłowód - wielomodowy" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Światłowód - jednomodowy" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Włókno - Inne" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Połączony" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilometry" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Metry" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centymetry(ów)" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Mile" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Stopy" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Nadmiarowy" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Jednofazowy" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Trójfazowy" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Niepełnosprawny" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Wadliwy" @@ -4010,7 +4009,7 @@ msgstr "Przypisany VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4051,7 +4050,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4112,8 +4111,8 @@ msgstr "Interfejs mostkowy (ID)" msgid "LAG interface (ID)" msgstr "Interfejs LAG (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4146,7 +4145,7 @@ msgstr "Kontekst urządzenia wirtualnego (identyfikator)" msgid "Wireless LAN" msgstr "Bezprzewodowa sieć LAN" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Połączenie bezprzewodowe" @@ -4211,7 +4210,7 @@ msgstr "Tagi" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4260,7 +4259,7 @@ msgstr "Strefa czasowa" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4729,7 +4728,7 @@ msgid "Wireless role" msgstr "Rola sieci bezprzewodowej" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4743,7 +4742,7 @@ msgstr "Rola sieci bezprzewodowej" msgid "Module" msgstr "Moduł" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "LAG" @@ -4755,7 +4754,7 @@ msgstr "Konteksty urządzeń wirtualnych" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4784,14 +4783,14 @@ msgid "VLAN group" msgstr "Grupa VLAN" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "Nietagowany VLAN" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4815,7 +4814,7 @@ msgid "Wireless LAN group" msgstr "Grupy WLAN" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5216,7 +5215,7 @@ msgstr "Odpowiedni tylny port" msgid "Physical medium classification" msgstr "Klasyfikacja medium fizycznego" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Zainstalowane urządzenie" @@ -5383,7 +5382,7 @@ msgstr "" "znaków: nieprawidłowy hex." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5493,7 +5492,7 @@ msgstr "Rozdzielnica zasilająca" msgid "Power Feed" msgstr "Linia zasilająca" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Status urządzenia" @@ -5571,8 +5570,8 @@ msgstr "Zajęty" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5626,7 +5625,7 @@ msgid "Transmit power (dBm)" msgstr "Moc transmisji (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5636,7 +5635,7 @@ msgstr "Moc transmisji (dBm)" msgid "Cable" msgstr "Kabel" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Odkryte" @@ -5824,7 +5823,7 @@ msgid "Front Port" msgstr "Port przedni" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5837,7 +5836,7 @@ msgid "Rear Port" msgstr "Tylny port" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5977,7 +5976,7 @@ msgstr "" "Liczba portów przednich do utworzenia ({frontport_count}) musi odpowiadać " "wybranej liczbie pozycji tylnych portów ({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6487,7 +6486,7 @@ msgid "tagged VLANs" msgstr "oznaczone sieci VLAN" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7730,7 +7729,7 @@ msgstr "Szablon konfiguracji" msgid "U Height" msgstr "Wysokość U" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7739,12 +7738,12 @@ msgstr "Wysokość U" msgid "IP Address" msgstr "Adres IP" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "Adres IPv4" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Adres IPv6" @@ -7782,7 +7781,7 @@ msgstr "Porty zasilania" msgid "Power outlets" msgstr "Gniazdka elektryczne" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7816,13 +7815,21 @@ msgstr "Wnęsy modułowe" msgid "Inventory items" msgstr "Elementy inwentaryzacyjne" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Lokalizacja urządzenia" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Witryna urządzenia" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Moduł Bay" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7833,27 +7840,27 @@ msgstr "Moduł Bay" msgid "Inventory Items" msgstr "Przedmioty magazynowe" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Kolor kabla" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Łącz rówieśników" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Oznacz Połączony" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Maksymalne wyciąganie (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Przydzielone losowanie (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7865,12 +7872,12 @@ msgstr "Przydzielone losowanie (W)" msgid "IP Addresses" msgstr "Adresy IP" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Grupy FHRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7881,41 +7888,41 @@ msgstr "Grupy FHRP" msgid "Tunnel" msgstr "Tunel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Tylko zarządzanie" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Wirtualny obwód" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Zainstalowany moduł" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Moduł szeregowy" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Etykietka zasobów modułu" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Status modułu" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Komponent" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Przedmioty" @@ -8807,9 +8814,9 @@ msgstr "" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Grupy" @@ -12301,7 +12308,7 @@ msgstr "Szablony usług aplikacji" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Usługi aplikacyjne" @@ -12353,7 +12360,7 @@ msgstr "Profile IPsec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12438,7 +12445,7 @@ msgstr "Dostosowywanie" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12555,7 +12562,7 @@ msgstr "Historia konfiguracji" msgid "Background Tasks" msgstr "Zadania w tle" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12567,12 +12574,12 @@ msgstr "Zadania w tle" msgid "Add" msgstr "Dodaj" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klonowanie" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12585,7 +12592,7 @@ msgstr "Klonowanie" msgid "Edit" msgstr "Edytuj" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12600,26 +12607,26 @@ msgstr "Edytuj" msgid "Delete" msgstr "Usuń" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Import" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Eksportuj" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Edytuj wybrane" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Zmień nazwę Wybrano" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Usuń zaznaczone" @@ -12768,63 +12775,63 @@ msgstr "Nie można dodać sklepów do rejestru po zainicjowaniu" msgid "Cannot delete stores from registry" msgstr "Nie można usunąć sklepów z rejestru" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "czeski" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "duński" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "niemiecki" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "angielski" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "hiszpański" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "francuski" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "włoski" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "japoński" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "holenderski" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "polski" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "portugalski" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "rosyjski" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "turecki" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "ukraiński" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "chiński" @@ -12942,7 +12949,7 @@ msgstr "Zsynchronizowane dane dla {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Zsynchronizowane {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} musi zaimplementować get_children ()" @@ -13964,7 +13971,7 @@ msgid "Leg" msgstr "Noga" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Dodawanie usługi aplikacji" @@ -15696,17 +15703,17 @@ msgid "Allocated Resources" msgstr "Przydzielone zasoby" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Wirtualne procesory" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Pamięć" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Miejsce na dysku" @@ -15751,13 +15758,13 @@ msgstr "Typ klastra" msgid "Virtual Disk" msgstr "Wirtualny dysk" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Zasoby" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Dodaj dysk wirtualny" @@ -16757,11 +16764,7 @@ msgstr "Subskrybuj" msgid "Copy to clipboard" msgstr "Kopiuj do schowka" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "To pole jest wymagane" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Ustaw Null" diff --git a/netbox/translations/pt/LC_MESSAGES/django.mo b/netbox/translations/pt/LC_MESSAGES/django.mo index 1e6c57193..721d27d39 100644 Binary files a/netbox/translations/pt/LC_MESSAGES/django.mo and b/netbox/translations/pt/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/pt/LC_MESSAGES/django.po b/netbox/translations/pt/LC_MESSAGES/django.po index 920b173e9..72210887f 100644 --- a/netbox/translations/pt/LC_MESSAGES/django.po +++ b/netbox/translations/pt/LC_MESSAGES/django.po @@ -14,7 +14,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Portuguese (https://app.transifex.com/netbox-community/teams/178115/pt/)\n" @@ -92,9 +92,9 @@ msgstr "Sua senha foi alterada com sucesso." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -108,8 +108,8 @@ msgstr "Provisionamento" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -121,8 +121,8 @@ msgid "Active" msgstr "Ativo" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Offline" @@ -135,7 +135,7 @@ msgstr "Em Desprovisionamento" msgid "Decommissioned" msgstr "Descomissionado" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -675,8 +675,8 @@ msgstr "ID do serviço" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -721,7 +721,7 @@ msgstr "Cor" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -793,8 +793,8 @@ msgstr "Conta do provedor" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1024,7 +1024,7 @@ msgstr "Atributos" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1118,7 +1118,7 @@ msgstr "Rede do provedor" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1242,7 +1242,7 @@ msgstr "Função operacional" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1424,8 +1424,7 @@ msgstr "Atribuição" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1744,13 +1743,13 @@ msgstr "terminações de circuito virtual" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1905,7 +1904,7 @@ msgstr "Taxa Garantida" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1918,7 +1917,7 @@ msgstr "Taxa Garantida" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2008,12 +2007,12 @@ msgstr "Terminações" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2036,7 +2035,7 @@ msgstr "Terminações" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2118,7 +2117,7 @@ msgstr "Concluído" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Falhou" @@ -2289,9 +2288,9 @@ msgid "User name" msgstr "Nome de usuário" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2482,7 +2481,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Elevações de Rack" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3131,8 +3130,8 @@ msgid "Staging" msgstr "Em Preparação" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Em Descomissionamento" @@ -3197,7 +3196,7 @@ msgstr "Obsoleto" msgid "Millimeters" msgstr "Milímetros" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Polegadas" @@ -3229,9 +3228,9 @@ msgstr "Bobsoleto" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3281,7 +3280,7 @@ msgid "Rear" msgstr "Traseira" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Preparado" @@ -3314,7 +3313,7 @@ msgid "Top to bottom" msgstr "De cima para baixo" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Passivo" @@ -3343,8 +3342,8 @@ msgid "Proprietary" msgstr "Proprietário" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Outros" @@ -3361,7 +3360,7 @@ msgstr "Físico" msgid "Virtual" msgstr "Virtual" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3375,7 +3374,7 @@ msgstr "Interfaces virtuais" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3419,31 +3418,31 @@ msgstr "Ethernet de 50 Gbps" msgid "100 Gbps Ethernet" msgstr "Ethernet de 100 Gbps" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "Ethernet de 200 Gbps" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "Ethernet de 400 Gbps" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "Ethernet de 800 Gbps" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Transceptores conectáveis" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Ethernet do painel traseiro" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Celular" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3451,147 +3450,147 @@ msgstr "Celular" msgid "Serial" msgstr "Serial" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Coaxial" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Empilhamento" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Half" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Full" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Automático" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Acesso" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Tagueada" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Tagueada (Todos)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Padrão IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "24V passivo (2 pares)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "24V passivo (4 pares)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "48V passivo (2 pares)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "48V passivo (4 pares)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Cabo Metálico" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Fibra Óptica" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Cobre - par trançado (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Cobre - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Cobre - Coaxial" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fibra - Multimodo" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fibra - Modo único" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Fibra - Outros" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Conectado" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Quilômetros" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Metros" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Centímetros" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Milhas" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Pés" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Redundante" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Monofásico" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Trifásico" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Desativado" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Defeituoso" @@ -4015,7 +4014,7 @@ msgstr "VLAN ID Designada " #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4056,7 +4055,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4117,8 +4116,8 @@ msgstr "Interface bridged (ID)" msgid "LAG interface (ID)" msgstr "Interface LAG (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4151,7 +4150,7 @@ msgstr "Contexto de Dispositivo Virtual (ID)" msgid "Wireless LAN" msgstr "Rede Wireless" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Link Wireless" @@ -4216,7 +4215,7 @@ msgstr "Etiquetas" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4265,7 +4264,7 @@ msgstr "Fuso horário" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4734,7 +4733,7 @@ msgid "Wireless role" msgstr "Função do Wireless" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4748,7 +4747,7 @@ msgstr "Função do Wireless" msgid "Module" msgstr "Módulo" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "LAG" @@ -4760,7 +4759,7 @@ msgstr "Contextos de dispositivos virtuais" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4789,14 +4788,14 @@ msgid "VLAN group" msgstr "Grupo de VLANs" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "VLAN Não Tagueada" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4820,7 +4819,7 @@ msgid "Wireless LAN group" msgstr "Grupo da Rede Wireless" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5224,7 +5223,7 @@ msgstr "Porta traseira correspondente" msgid "Physical medium classification" msgstr "Tipo de conexão do meio físico" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Dispositivo instalado" @@ -5391,7 +5390,7 @@ msgstr "" "caracteres: hexadecimal inválido." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5502,7 +5501,7 @@ msgstr "Quadro de Alimentação" msgid "Power Feed" msgstr "Fontes de Alimentação" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Status do Dispositivo" @@ -5580,8 +5579,8 @@ msgstr "Ocupado" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5635,7 +5634,7 @@ msgid "Transmit power (dBm)" msgstr "Potência de transmissão (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5645,7 +5644,7 @@ msgstr "Potência de transmissão (dBm)" msgid "Cable" msgstr "Cabo" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Descoberto" @@ -5832,7 +5831,7 @@ msgid "Front Port" msgstr "Porta Frontal" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5845,7 +5844,7 @@ msgid "Rear Port" msgstr "Porta Traseira" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5987,7 +5986,7 @@ msgstr "" "corresponder ao número selecionado de posições de portas traseiras " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6498,7 +6497,7 @@ msgid "tagged VLANs" msgstr "VLANs tagueadas" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7749,7 +7748,7 @@ msgstr "Modelo de Configuração" msgid "U Height" msgstr "Altura em U" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7758,12 +7757,12 @@ msgstr "Altura em U" msgid "IP Address" msgstr "Endereço IP" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "Endereço IPv4" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Endereço IPv6" @@ -7801,7 +7800,7 @@ msgstr "Portas de alimentação" msgid "Power outlets" msgstr "Tomadas elétricas" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7835,13 +7834,21 @@ msgstr "Compartimentos de módulos" msgid "Inventory items" msgstr "Itens de inventário" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Localização do dispositivo" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Site do dispositivo" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Compartimento de módulo" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7852,27 +7859,27 @@ msgstr "Compartimento de módulo" msgid "Inventory Items" msgstr "Itens de Inventário" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Cor do Cabo" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Pares Vinculados" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Marcar Conectado" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Consumo máximo (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Consumo alocado (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7884,12 +7891,12 @@ msgstr "Consumo alocado (W)" msgid "IP Addresses" msgstr "Endereços IP" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Grupos FHRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7900,41 +7907,41 @@ msgstr "Grupos FHRP" msgid "Tunnel" msgstr "Túnel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Somente Gerenciamento" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "Contextos de Dispositivos Virtuais" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Circuito Virtual" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Módulo Instalado" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Serial do Módulo" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Etiqueta de Patrimônio do Módulo" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Status do Módulo" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Componente" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Itens" @@ -8829,9 +8836,9 @@ msgstr "Nomes de usuários separados por vírgulas, envoltos por aspas duplas." #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Grupos" @@ -12326,7 +12333,7 @@ msgstr "Modelos de serviços de aplicativos" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Serviços de aplicativos" @@ -12378,7 +12385,7 @@ msgstr "Perfis de IPsec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12463,7 +12470,7 @@ msgstr "Personalização" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12580,7 +12587,7 @@ msgstr "Histórico de Configuração" msgid "Background Tasks" msgstr "Tarefas em Background" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12592,12 +12599,12 @@ msgstr "Tarefas em Background" msgid "Add" msgstr "Adicionar" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Clonar" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12610,7 +12617,7 @@ msgstr "Clonar" msgid "Edit" msgstr "Editar" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12625,26 +12632,26 @@ msgstr "Editar" msgid "Delete" msgstr "Excluir" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Importar" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Exportar" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Editar Selecionado" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Renomear Selecionado" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Excluir Selecionado" @@ -12791,63 +12798,63 @@ msgstr "Não é possível adicionar stores ao registro após a inicialização" msgid "Cannot delete stores from registry" msgstr "Não é possível excluir stores do registro" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Tcheco" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "Dinamarquês" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Alemão" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Inglês" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "Espanhol" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Francês" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Italiano" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Japonês" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Holandês" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Polonês" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "Português" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Russo" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Turco" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Ucraniano" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Chinês" @@ -12965,7 +12972,7 @@ msgstr "Dados sincronizados para {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Sincronizado(s) {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} deve implementar get_children ()" @@ -13989,7 +13996,7 @@ msgid "Leg" msgstr "Ramal" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Adicionar um serviço de aplicativo" @@ -15724,17 +15731,17 @@ msgid "Allocated Resources" msgstr "Recursos Alocados" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "CPUs Virtuais" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Memória" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Espaço em Disco" @@ -15779,13 +15786,13 @@ msgstr "Tipo de Cluster" msgid "Virtual Disk" msgstr "Disco Virtual" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Recursos" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Adicionar Disco Virtual" @@ -16784,11 +16791,7 @@ msgstr "Inscrever" msgid "Copy to clipboard" msgstr "Copiar para área de transferência" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Este campo é obrigatório" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Definir como Nulo" diff --git a/netbox/translations/ru/LC_MESSAGES/django.mo b/netbox/translations/ru/LC_MESSAGES/django.mo index 401216aa8..36822b196 100644 Binary files a/netbox/translations/ru/LC_MESSAGES/django.mo and b/netbox/translations/ru/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/ru/LC_MESSAGES/django.po b/netbox/translations/ru/LC_MESSAGES/django.po index c0f9198a5..03cf9424a 100644 --- a/netbox/translations/ru/LC_MESSAGES/django.po +++ b/netbox/translations/ru/LC_MESSAGES/django.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Russian (https://app.transifex.com/netbox-community/teams/178115/ru/)\n" @@ -101,9 +101,9 @@ msgstr "Ваш пароль успешно изменен." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -117,8 +117,8 @@ msgstr "Выделение ресурсов" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -130,8 +130,8 @@ msgid "Active" msgstr "Активный" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Не в сети" @@ -144,7 +144,7 @@ msgstr "Выделение резервов" msgid "Decommissioned" msgstr "Списан" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -684,8 +684,8 @@ msgstr "Идентификатор Службы" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -730,7 +730,7 @@ msgstr "Цвет" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -802,8 +802,8 @@ msgstr "Аккаунт провайдера" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1033,7 +1033,7 @@ msgstr "Атрибуты" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1127,7 +1127,7 @@ msgstr "Сеть провайдера" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1251,7 +1251,7 @@ msgstr "Операционная роль" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1433,8 +1433,7 @@ msgstr "Задание" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1752,13 +1751,13 @@ msgstr "точки подключения виртуальных каналов" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1913,7 +1912,7 @@ msgstr "Гарантированная скорость" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1926,7 +1925,7 @@ msgstr "Гарантированная скорость" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2016,12 +2015,12 @@ msgstr "Соединения" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2044,7 +2043,7 @@ msgstr "Соединения" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2127,7 +2126,7 @@ msgstr "Завершено" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Неисправно" @@ -2298,9 +2297,9 @@ msgid "User name" msgstr "Имя пользователя" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2488,7 +2487,7 @@ msgstr "Необходимо загрузить файл или выбрать msgid "Rack Elevations" msgstr "Фасады стоек" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3137,8 +3136,8 @@ msgid "Staging" msgstr "Подготовка к развертыванию" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Вывод из эксплуатации" @@ -3203,7 +3202,7 @@ msgstr "Выведенный(-ая) из использования" msgid "Millimeters" msgstr "Миллиметры" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Дюймы" @@ -3235,9 +3234,9 @@ msgstr "Несвежий" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3287,7 +3286,7 @@ msgid "Rear" msgstr "Вид сзади" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Подготовлен" @@ -3320,7 +3319,7 @@ msgid "Top to bottom" msgstr "Сверху вниз" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Пассивный" @@ -3349,8 +3348,8 @@ msgid "Proprietary" msgstr "Проприетарный" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Другой" @@ -3367,7 +3366,7 @@ msgstr "Физический" msgid "Virtual" msgstr "Виртуальный" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3381,7 +3380,7 @@ msgstr "Виртуальные интерфейсы" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3425,31 +3424,31 @@ msgstr "Ethernet 50 Гбит/с" msgid "100 Gbps Ethernet" msgstr "Ethernet 100 Гбит/с" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "Ethernet 200 Гбит/с" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "Ethernet 400 Гбит/с" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "Ethernet 800 Гбит/с" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Подключаемые трансиверы" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Ethernet объединительной платы" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Сотовая связь" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3457,147 +3456,147 @@ msgstr "Сотовая связь" msgid "Serial" msgstr "Серийный" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Коаксиальный" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Стекирование" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Полу" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Полный" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Авто" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Доступ" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Тегированный" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Тегированный (все)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Стандарт IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Пассивный режим 24 В (2 пары)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Пассивное напряжение 24 В (4 пары)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Пассивное напряжение 48 В (2 пары)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Пассивное напряжение 48 В (4 пары)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Медь" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Оптоволокно" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Медь — витая пара (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Медь — Twinax (ЦАП)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Медь — коаксиальная" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Оптоволокно — многомодовое" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Оптоволокно — одномодовое" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Прочее волокно" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Подключено" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Километры" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Метры" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Сантиметры" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Мили" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Футы" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Резервный" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Однофазный" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Трехфазный" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Инвалид" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Неисправен" @@ -4021,7 +4020,7 @@ msgstr "Назначенный VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4062,7 +4061,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4124,8 +4123,8 @@ msgstr "Мостовой интерфейс (ID)" msgid "LAG interface (ID)" msgstr "Интерфейс LAG (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4158,7 +4157,7 @@ msgstr "Контекст виртуального устройства (иден msgid "Wireless LAN" msgstr "Беспроводная сеть" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Беспроводная связь" @@ -4223,7 +4222,7 @@ msgstr "Теги" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4272,7 +4271,7 @@ msgstr "Часовой пояс" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4741,7 +4740,7 @@ msgid "Wireless role" msgstr "Роль беспроводной связи" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4755,7 +4754,7 @@ msgstr "Роль беспроводной связи" msgid "Module" msgstr "Модуль" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "LAG" @@ -4767,7 +4766,7 @@ msgstr "Виртуальные контексты" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4796,14 +4795,14 @@ msgid "VLAN group" msgstr "Группа VLAN" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "VLAN без тегов" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4827,7 +4826,7 @@ msgid "Wireless LAN group" msgstr "Беспроводная группа LAN" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5226,7 +5225,7 @@ msgstr "Соответствующий задний порт" msgid "Physical medium classification" msgstr "Классификация физических сред" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Установленное устройство" @@ -5393,7 +5392,7 @@ msgstr "" "более шести символов: неправильный шестнадцатеричный код." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5505,7 +5504,7 @@ msgstr "Распределительный щит" msgid "Power Feed" msgstr "Кабель питания" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Статус устройства" @@ -5583,8 +5582,8 @@ msgstr "Занятый" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5638,7 +5637,7 @@ msgid "Transmit power (dBm)" msgstr "Мощность передачи (дБм)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5648,7 +5647,7 @@ msgstr "Мощность передачи (дБм)" msgid "Cable" msgstr "Кабель" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Обнаружено" @@ -5835,7 +5834,7 @@ msgid "Front Port" msgstr "Передний порт" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5848,7 +5847,7 @@ msgid "Rear Port" msgstr "Задний порт" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5990,7 +5989,7 @@ msgstr "" "соответствовать выбранному количеству положений задних портов " "({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6501,7 +6500,7 @@ msgid "tagged VLANs" msgstr "тегированные VLAN" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7745,7 +7744,7 @@ msgstr "Шаблон конфигурации" msgid "U Height" msgstr "Высота U" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7754,12 +7753,12 @@ msgstr "Высота U" msgid "IP Address" msgstr "IP-адрес" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "Адрес IPv4" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Адрес IPv6" @@ -7797,7 +7796,7 @@ msgstr "Порты питания" msgid "Power outlets" msgstr "Розетки питания" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7831,13 +7830,21 @@ msgstr "Отсеки для модулей" msgid "Inventory items" msgstr "Комплектующие" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Местоположение устройства" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Сайт устройства" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Модульный отсек" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7848,27 +7855,27 @@ msgstr "Модульный отсек" msgid "Inventory Items" msgstr "Предметы инвентаря" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Цвет кабеля" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Связать узлы" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Отметить подключение" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Максимальная потребляемая мощность (Вт)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Выделенная мощность (Вт)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7880,12 +7887,12 @@ msgstr "Выделенная мощность (Вт)" msgid "IP Addresses" msgstr "IP-адреса" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Группы FHRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7896,41 +7903,41 @@ msgstr "Группы FHRP" msgid "Tunnel" msgstr "Туннель" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Только управление" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "Виртуальные контексты устройств(VDCs)" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Виртуальный канал" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Установленный модуль" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Серийный номер модуля" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Тег активов модуля" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Состояние модуля" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Компонент" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Предметы" @@ -8827,9 +8834,9 @@ msgstr "" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Группы" @@ -12320,7 +12327,7 @@ msgstr "Шаблоны служб приложений" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Сервисы приложений" @@ -12372,7 +12379,7 @@ msgstr "Профили IPsec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12457,7 +12464,7 @@ msgstr "Настройка" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12574,7 +12581,7 @@ msgstr "История конфигурации" msgid "Background Tasks" msgstr "Фоновые задачи" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12586,12 +12593,12 @@ msgstr "Фоновые задачи" msgid "Add" msgstr "Добавить" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Клонировать" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12604,7 +12611,7 @@ msgstr "Клонировать" msgid "Edit" msgstr "Редактировать" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12619,26 +12626,26 @@ msgstr "Редактировать" msgid "Delete" msgstr "Удалить" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Импорт" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Экспорт" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Изменить выбранное" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Переименовать Выбранное" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Удалить выбранное" @@ -12788,63 +12795,63 @@ msgstr "Невозможно добавить хранилище в реестр msgid "Cannot delete stores from registry" msgstr "Невозможно удалить хранилище из реестра" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Чешский" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "Датский" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Немецкий" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Английский" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "Испанский" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Французский" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Итальянский" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Японский" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Голландский" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Польский" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "Португальский" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Русский" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Турецкий" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Украинский" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Китайский" @@ -12961,7 +12968,7 @@ msgstr "Синхронизированы данные для {object_type} {obje msgid "Synced {count} {object_type}" msgstr "Синхронизирован(-о) {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} должен реализовать get_children ()" @@ -13986,7 +13993,7 @@ msgid "Leg" msgstr "Ножка" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Добавить службу приложений" @@ -15718,17 +15725,17 @@ msgid "Allocated Resources" msgstr "Выделенные ресурсы" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Виртуальные процессоры" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Память" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Дисковое пространство" @@ -15773,13 +15780,13 @@ msgstr "Тип кластера" msgid "Virtual Disk" msgstr "Виртуальный диск" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Ресурсы" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Добавить виртуальный диск" @@ -16777,11 +16784,7 @@ msgstr "Подписаться" msgid "Copy to clipboard" msgstr "Скопировать в буфер обмена" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Это поле обязательно" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Установить значение Null" diff --git a/netbox/translations/tr/LC_MESSAGES/django.mo b/netbox/translations/tr/LC_MESSAGES/django.mo index 269e700d8..1b9134116 100644 Binary files a/netbox/translations/tr/LC_MESSAGES/django.mo and b/netbox/translations/tr/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/tr/LC_MESSAGES/django.po b/netbox/translations/tr/LC_MESSAGES/django.po index eb3434841..3ce7da7fe 100644 --- a/netbox/translations/tr/LC_MESSAGES/django.po +++ b/netbox/translations/tr/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Turkish (https://app.transifex.com/netbox-community/teams/178115/tr/)\n" @@ -91,9 +91,9 @@ msgstr "Şifreniz başarıyla değiştirildi." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -107,8 +107,8 @@ msgstr "Tedarik" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -120,8 +120,8 @@ msgid "Active" msgstr "Aktif" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Çevrim dışı" @@ -134,7 +134,7 @@ msgstr "Hazırlıktan Kaldırma" msgid "Decommissioned" msgstr "Hizmet dışı bırakıldı" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -674,8 +674,8 @@ msgstr "Servis ID" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -720,7 +720,7 @@ msgstr "Renk" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -792,8 +792,8 @@ msgstr "Sağlayıcı hesabı" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1023,7 +1023,7 @@ msgstr "Öznitellikler" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1117,7 +1117,7 @@ msgstr "Sağlayıcı ağı" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1241,7 +1241,7 @@ msgstr "Operasyonel rol" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1423,8 +1423,7 @@ msgstr "Ödev" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1742,13 +1741,13 @@ msgstr "sanal devre sonlandırmaları" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1903,7 +1902,7 @@ msgstr "Taahhüt Oranı" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1916,7 +1915,7 @@ msgstr "Taahhüt Oranı" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2006,12 +2005,12 @@ msgstr "Fesih" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2034,7 +2033,7 @@ msgstr "Fesih" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2116,7 +2115,7 @@ msgstr "Tamamlandı" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Başarısız" @@ -2287,9 +2286,9 @@ msgid "User name" msgstr "Kullanıcı adı" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2478,7 +2477,7 @@ msgstr "" msgid "Rack Elevations" msgstr "Raf Yükseltmeleri" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3124,8 +3123,8 @@ msgid "Staging" msgstr "Sahneleme" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Hizmetten çıkarma" @@ -3190,7 +3189,7 @@ msgstr "Kullanımdan kaldırıldı" msgid "Millimeters" msgstr "Milimetre" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "İnç" @@ -3222,9 +3221,9 @@ msgstr "Bayat" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3274,7 +3273,7 @@ msgid "Rear" msgstr "Arka" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Sahnelenmiş" @@ -3307,7 +3306,7 @@ msgid "Top to bottom" msgstr "Yukarıdan aşağıya" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Pasif" @@ -3336,8 +3335,8 @@ msgid "Proprietary" msgstr "Tescilli" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Diğer" @@ -3354,7 +3353,7 @@ msgstr "Fiziksel" msgid "Virtual" msgstr "Sanal" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3368,7 +3367,7 @@ msgstr "Sanal arayüzler" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3412,31 +3411,31 @@ msgstr "50 Gb/sn Ethernet" msgid "100 Gbps Ethernet" msgstr "100 Gb/sn Ethernet" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "200 Gb/sn Ethernet" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "400 Gb/sn Ethernet" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 Gb/sn Ethernet" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Takılabilir alıcı-vericiler" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Arka Panel Ethernet" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Hücresel" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3444,147 +3443,147 @@ msgstr "Hücresel" msgid "Serial" msgstr "Seri" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Koaksiyel" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "İstifleme" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Yarım" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Dolu" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Oto" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Erişim" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Etiketlenmiş" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Etiketlenmiş (Tümü)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "Q-in-Q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "IEEE Standardı" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Pasif 24V (2 çift)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Pasif 24V (4 çift)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Pasif 48V (2 çift)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Pasif 48V (4 çift)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Bakır" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Fiber Optik" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Bakır - Bükülmüş Çift (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Bakır - Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Bakır - Koaksiyel" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Fiber - Çok Modlu" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Fiber - Tek modlu" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Elyaf - Diğer" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Bağlı" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Kilometre" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Sayaçlar" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Santimetre" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Mil" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Feet" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Yedekli" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Tek fazlı" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Üç fazlı" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Engelli" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Arızalı" @@ -4008,7 +4007,7 @@ msgstr "Atanmış VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4049,7 +4048,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (KİMLİĞİ)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4107,8 +4106,8 @@ msgstr "Köprülü arayüz (ID)" msgid "LAG interface (ID)" msgstr "LAG arabirimi (ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4141,7 +4140,7 @@ msgstr "Sanal Cihaz Bağlamı (Tanımlayıcı)" msgid "Wireless LAN" msgstr "Kablosuz LAN" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Kablosuz bağlantı" @@ -4206,7 +4205,7 @@ msgstr "Etiketler" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4255,7 +4254,7 @@ msgstr "Saat dilimi" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4724,7 +4723,7 @@ msgid "Wireless role" msgstr "Kablosuz rolü" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4738,7 +4737,7 @@ msgstr "Kablosuz rolü" msgid "Module" msgstr "Modül" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "GECİKME" @@ -4750,7 +4749,7 @@ msgstr "Sanal cihaz bağlamları" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4779,14 +4778,14 @@ msgid "VLAN group" msgstr "VLAN grubu" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "Etiketsiz VLAN" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4810,7 +4809,7 @@ msgid "Wireless LAN group" msgstr "Kablosuz LAN grubu" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5209,7 +5208,7 @@ msgstr "İlgili arka bağlantı noktası" msgid "Physical medium classification" msgstr "Fiziksel ortam sınıflandırması" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Yüklü cihaz" @@ -5372,7 +5371,7 @@ msgstr "" "uzundu: geçersiz altıgen." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5482,7 +5481,7 @@ msgstr "Güç Paneli" msgid "Power Feed" msgstr "Güç Beslemesi" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Cihaz Durumu" @@ -5560,8 +5559,8 @@ msgstr "işgal" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5615,7 +5614,7 @@ msgid "Transmit power (dBm)" msgstr "İletim gücü (dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5625,7 +5624,7 @@ msgstr "İletim gücü (dBm)" msgid "Cable" msgstr "Kablo" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Keşfedildi" @@ -5812,7 +5811,7 @@ msgid "Front Port" msgstr "Ön Bağlantı Noktası" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5825,7 +5824,7 @@ msgid "Rear Port" msgstr "Arka Bağlantı Noktası" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5965,7 +5964,7 @@ msgstr "" "Oluşturulacak ön bağlantı noktalarının sayısı ({frontport_count}) seçilen " "arka port konumu sayısıyla eşleşmelidir ({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6459,7 +6458,7 @@ msgid "tagged VLANs" msgstr "etiketli VLAN'lar" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7675,7 +7674,7 @@ msgstr "Yapılandırma Şablonu" msgid "U Height" msgstr "U Yüksekliği" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7684,12 +7683,12 @@ msgstr "U Yüksekliği" msgid "IP Address" msgstr "IP Adresi" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "IPv4 Adresi" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "IPv6 Adresi" @@ -7727,7 +7726,7 @@ msgstr "Güç bağlantı noktaları" msgid "Power outlets" msgstr "Elektrik prizleri" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7761,13 +7760,21 @@ msgstr "Modül bölmeleri" msgid "Inventory items" msgstr "Envanter kalemleri" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Cihaz Konumu" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Cihaz Sitesi" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Modül Yuvası" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7778,27 +7785,27 @@ msgstr "Modül Yuvası" msgid "Inventory Items" msgstr "Envanter Öğeleri" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Kablo Rengi" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "Meslektaşları Bağla" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Bağlı İşaretle" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Maksimum çekim (W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Tahsis edilen çekiliş (W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7810,12 +7817,12 @@ msgstr "Tahsis edilen çekiliş (W)" msgid "IP Addresses" msgstr "IP Adresleri" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "FHRP Grupları" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7826,41 +7833,41 @@ msgstr "FHRP Grupları" msgid "Tunnel" msgstr "Tünel" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Yalnızca Yönetim" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDC'ler" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Sanal Devre" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Yüklü Modül" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Modül Seri" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Modül Varlık Etiketi" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Modül Durumu" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Bileşen" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Öğeler" @@ -8750,9 +8757,9 @@ msgstr "" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Gruplar" @@ -12218,7 +12225,7 @@ msgstr "Uygulama Hizmeti Şablonları" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Uygulama Hizmetleri" @@ -12270,7 +12277,7 @@ msgstr "IPsec Profilleri" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12355,7 +12362,7 @@ msgstr "Özelleştirme" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12472,7 +12479,7 @@ msgstr "Yapılandırma Geçmişi" msgid "Background Tasks" msgstr "Arka Plan Görevleri" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12484,12 +12491,12 @@ msgstr "Arka Plan Görevleri" msgid "Add" msgstr "Ekle" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Klon" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12502,7 +12509,7 @@ msgstr "Klon" msgid "Edit" msgstr "Düzenle" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12517,26 +12524,26 @@ msgstr "Düzenle" msgid "Delete" msgstr "Sil" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "İçe aktar" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Dışa Aktar" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Seçili Düzenle" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Seçili Yeniden Adlandır" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Seçili Sil" @@ -12684,63 +12691,63 @@ msgstr "Başlatıldıktan sonra kayıt defterine mağazalar eklenemiyor" msgid "Cannot delete stores from registry" msgstr "Mağazalar kayıt defterinden silinemiyor" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Çek" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "Danca" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Alman" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "İngilizce" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "İspanyolca" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Fransızca" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "İtalyan" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Japonca" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Hollandalı" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Lehçe" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "Portekizce" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Rusça" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Türkçe" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Ukraynalı" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Çince" @@ -12859,7 +12866,7 @@ msgstr "Senkronize edilmiş veriler {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Senkronize {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} get_children () uygulamasını uygulamalıdır" @@ -13884,7 +13891,7 @@ msgid "Leg" msgstr "Bacak" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Uygulama hizmeti ekleme" @@ -15613,17 +15620,17 @@ msgid "Allocated Resources" msgstr "Tahsis Edilen Kaynaklar" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Sanal CPU'lar" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Bellek" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Disk Alanı" @@ -15668,13 +15675,13 @@ msgstr "Küme Türü" msgid "Virtual Disk" msgstr "Sanal Disk" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Kaynaklar" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Sanal Disk Ekle" @@ -16658,11 +16665,7 @@ msgstr "Abone ol" msgid "Copy to clipboard" msgstr "Panoya kopyala" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Bu alan zorunludur" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Sıfır Ayarla" diff --git a/netbox/translations/uk/LC_MESSAGES/django.mo b/netbox/translations/uk/LC_MESSAGES/django.mo index 70ba4cd8a..5b825456b 100644 Binary files a/netbox/translations/uk/LC_MESSAGES/django.mo and b/netbox/translations/uk/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/uk/LC_MESSAGES/django.po b/netbox/translations/uk/LC_MESSAGES/django.po index ea64f9912..7f17160bf 100644 --- a/netbox/translations/uk/LC_MESSAGES/django.po +++ b/netbox/translations/uk/LC_MESSAGES/django.po @@ -13,7 +13,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Ukrainian (https://app.transifex.com/netbox-community/teams/178115/uk/)\n" @@ -90,9 +90,9 @@ msgstr "Ваш пароль успішно змінено." #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -106,8 +106,8 @@ msgstr "Забезпечення" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -119,8 +119,8 @@ msgid "Active" msgstr "Активний" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "Офлайн" @@ -133,7 +133,7 @@ msgstr "Зняття з експлуатації" msgid "Decommissioned" msgstr "Виведені з експлуатації" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -673,8 +673,8 @@ msgstr "Ідентифікатор служби" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -719,7 +719,7 @@ msgstr "Колір" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -791,8 +791,8 @@ msgstr "Обліковий запис постачальника" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1022,7 +1022,7 @@ msgstr "Атрибути" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1116,7 +1116,7 @@ msgstr "Мережа провайдера" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1240,7 +1240,7 @@ msgstr "Операційна роль" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1422,8 +1422,7 @@ msgstr "Призначення" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1742,13 +1741,13 @@ msgstr "завершення віртуальних схем" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1903,7 +1902,7 @@ msgstr "Гарантований процент чи коефіцієнт дос #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1916,7 +1915,7 @@ msgstr "Гарантований процент чи коефіцієнт дос #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2006,12 +2005,12 @@ msgstr "Кінці" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2034,7 +2033,7 @@ msgstr "Кінці" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2116,7 +2115,7 @@ msgstr "Завершено" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "Збій" @@ -2287,9 +2286,9 @@ msgid "User name" msgstr "Ім'я користувача" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2476,7 +2475,7 @@ msgstr "Потрібно вивантажити файл або вибрати msgid "Rack Elevations" msgstr "Висота стійки" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3123,8 +3122,8 @@ msgid "Staging" msgstr "Підготовка" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "Виведення з експлуатації" @@ -3189,7 +3188,7 @@ msgstr "Застарілий" msgid "Millimeters" msgstr "Міліметри" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "Дюйми" @@ -3221,9 +3220,9 @@ msgstr "Несвіжі" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3273,7 +3272,7 @@ msgid "Rear" msgstr "Ззаду" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "Підготовлено" @@ -3306,7 +3305,7 @@ msgid "Top to bottom" msgstr "Зверху вниз" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "Пасивний" @@ -3335,8 +3334,8 @@ msgid "Proprietary" msgstr "Пропрієтарний" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "Інше" @@ -3353,7 +3352,7 @@ msgstr "Фізичний" msgid "Virtual" msgstr "Віртуальний" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3367,7 +3366,7 @@ msgstr "Віртуальні інтерфейси" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3411,31 +3410,31 @@ msgstr "50 Гбіт/с Ethernet" msgid "100 Gbps Ethernet" msgstr "100 Гбіт/с Ethernet" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "200 Гбіт/с Ethernet" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "400 Гбіт/с Ethernet" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 Гбіт/с Ethernet" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "Приймачі, що підключаються" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "Передня панель Ethernet" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "Стільниковий" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3443,147 +3442,147 @@ msgstr "Стільниковий" msgid "Serial" msgstr "Серійний" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "Коаксіальний" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "Стекований" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "Половинний" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "Повний" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "Авто" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "Доступ" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "З мітками" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "З мітками (Усі)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "К-в-кв. (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "Стандарт IEEE" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "Пасивний 24В (2-парний)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "Пасивний 24В (4-парний)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "Пасивний 48В (2-парний)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "Пасивний 48В (4-парний)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "Мідний" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "Волоконно-оптичний" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "Мідь - кручена пара (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "Мідь - Твінакс (ЦАП)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "Мідь - Коаксіальна" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "Волокно - багатомодовий" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "Волокно - одномодовий" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "Волокно - Інше" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "Підключений" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "Кілометри" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "Метри" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "Сантиметри" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "Милі" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "Фути" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "Надлишковий" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "Однофазний" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "Трифазний" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "Вимкнений" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "Несправний" @@ -4007,7 +4006,7 @@ msgstr "Призначений VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4048,7 +4047,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ідентифікатор)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4107,8 +4106,8 @@ msgstr "Мостовий інтерфейс (ідентифікатор)" msgid "LAG interface (ID)" msgstr "Інтерфейс LAG (ідентифікатор)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4141,7 +4140,7 @@ msgstr "Контекст віртуального пристрою (іденти msgid "Wireless LAN" msgstr "Бездротова локальна мережа" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "Бездротова зв'язок" @@ -4206,7 +4205,7 @@ msgstr "Мітки" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4255,7 +4254,7 @@ msgstr "Часовий пояс" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4724,7 +4723,7 @@ msgid "Wireless role" msgstr "Бездротова роль" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4738,7 +4737,7 @@ msgstr "Бездротова роль" msgid "Module" msgstr "Модуль" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "LAG" @@ -4750,7 +4749,7 @@ msgstr "Контексти віртуальних пристроїв" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4779,14 +4778,14 @@ msgid "VLAN group" msgstr "Група VLAN" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "VLAN без міток" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4810,7 +4809,7 @@ msgid "Wireless LAN group" msgstr "Група бездротової локальної мережі" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5213,7 +5212,7 @@ msgstr "Відповідний задній порт" msgid "Physical medium classification" msgstr "Класифікація фізичного середовища" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "Встановлений пристрій" @@ -5380,7 +5379,7 @@ msgstr "" " символів: недійсний шістнадцятковий." #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5492,7 +5491,7 @@ msgstr "Панель живлення" msgid "Power Feed" msgstr "Живлення живлення" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "Статус пристрою" @@ -5570,8 +5569,8 @@ msgstr "Зайнятий" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5625,7 +5624,7 @@ msgid "Transmit power (dBm)" msgstr "Потужність передачі (дБм)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5635,7 +5634,7 @@ msgstr "Потужність передачі (дБм)" msgid "Cable" msgstr "Кабель" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "Виявлено" @@ -5821,7 +5820,7 @@ msgid "Front Port" msgstr "Передній порт" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5834,7 +5833,7 @@ msgid "Rear Port" msgstr "Порт ззаду" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5975,7 +5974,7 @@ msgstr "" "Кількість передніх портів, які потрібно створити ({frontport_count}) повинна" " відповідати вибраній кількості позицій портів ззаду ({rearport_count})." -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6485,7 +6484,7 @@ msgid "tagged VLANs" msgstr "VLAN'и з мітками" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7735,7 +7734,7 @@ msgstr "Шаблон конфігурації" msgid "U Height" msgstr "Висота юніта(U)" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7744,12 +7743,12 @@ msgstr "Висота юніта(U)" msgid "IP Address" msgstr "IP-адреса" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "Адреса IPv4" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "Адреса IPv6" @@ -7787,7 +7786,7 @@ msgstr "Порти живлення" msgid "Power outlets" msgstr "Розетки" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7821,13 +7820,21 @@ msgstr "Модульні відсіки" msgid "Inventory items" msgstr "Елементи інвентаря" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "Розташування пристрою" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "Сайт пристрою" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "Резервуар модулів" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7838,27 +7845,27 @@ msgstr "Резервуар модулів" msgid "Inventory Items" msgstr "Елементи інвентаря" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "Колір кабелю" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "З'єднання мережевих сусідів" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "Позначене підключення" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "Максимальна потужність (Вт)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "Виділена потужність (Вт)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7870,12 +7877,12 @@ msgstr "Виділена потужність (Вт)" msgid "IP Addresses" msgstr "IP-адреси" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "Групи FHRP/VRRP" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7886,41 +7893,41 @@ msgstr "Групи FHRP/VRRP" msgid "Tunnel" msgstr "Тунель" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "Тільки управління" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "Джерела живлення постійного струму" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "Віртуальна схема" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "Встановлений модуль" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "Послідовний модуль" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "Призначеня мітки на модуль" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "Статус модуля" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "Компонент" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "Предмети" @@ -8813,9 +8820,9 @@ msgstr "Імена користувачів, розділені комами, у #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "Групи" @@ -12303,7 +12310,7 @@ msgstr "Шаблони служб додатків" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "Послуги додатків" @@ -12355,7 +12362,7 @@ msgstr "Профілі IPsec" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12440,7 +12447,7 @@ msgstr "Персоналізація" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12557,7 +12564,7 @@ msgstr "Історія налаштувань" msgid "Background Tasks" msgstr "Фонові завдання" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12569,12 +12576,12 @@ msgstr "Фонові завдання" msgid "Add" msgstr "Додати" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "Клонувати" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12587,7 +12594,7 @@ msgstr "Клонувати" msgid "Edit" msgstr "Редагувати" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12602,26 +12609,26 @@ msgstr "Редагувати" msgid "Delete" msgstr "Видалити" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "Імпорт" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "Експорт" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "Редагувати вибрані" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "Перейменувати вибране" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "Вилучити вибрані" @@ -12767,63 +12774,63 @@ msgstr "Не вдається додати магазини до реєстру msgid "Cannot delete stores from registry" msgstr "Неможливо видалити магазини з реєстру" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "Чеська мова" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "Данська мова" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "Німецька мова" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "Англійська мова" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "Іспанська мова" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "Французька мова" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "Італійська мова" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "Японська мова" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "Голландська мова" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "Польська мова" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "Португальська мова" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "Російська мова" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "Турецька мова" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "Українська мова" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "Китайська мова" @@ -12941,7 +12948,7 @@ msgstr "Синхронізовані дані для {object_type} {object}." msgid "Synced {count} {object_type}" msgstr "Синхронізовано {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name} повинен реалізувати get_children()" @@ -13963,7 +13970,7 @@ msgid "Leg" msgstr "Гілка (електричного кола)" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "Додавання служби додатків" @@ -15693,17 +15700,17 @@ msgid "Allocated Resources" msgstr "Виділені ресурси" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "Віртуальні процесори" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "Пам'ять" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "Місце на диску" @@ -15748,13 +15755,13 @@ msgstr "Тип кластера" msgid "Virtual Disk" msgstr "Віртуальний диск" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "Ресурси" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "Додати віртуальний диск" @@ -16748,11 +16755,7 @@ msgstr "Підписатися" msgid "Copy to clipboard" msgstr "Копіювати в буфер обміну" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "Це обов'язкове поле для заповнення" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "Встановити нуль (Null)" diff --git a/netbox/translations/zh/LC_MESSAGES/django.mo b/netbox/translations/zh/LC_MESSAGES/django.mo index 1112b112f..98caf6d2b 100644 Binary files a/netbox/translations/zh/LC_MESSAGES/django.mo and b/netbox/translations/zh/LC_MESSAGES/django.mo differ diff --git a/netbox/translations/zh/LC_MESSAGES/django.po b/netbox/translations/zh/LC_MESSAGES/django.po index 20bce3501..147e6efb7 100644 --- a/netbox/translations/zh/LC_MESSAGES/django.po +++ b/netbox/translations/zh/LC_MESSAGES/django.po @@ -23,7 +23,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-09-16 05:02+0000\n" +"POT-Creation-Date: 2025-09-30 05:03+0000\n" "PO-Revision-Date: 2023-10-30 17:48+0000\n" "Last-Translator: Jeremy Stretch, 2025\n" "Language-Team: Chinese (https://app.transifex.com/netbox-community/teams/178115/zh/)\n" @@ -99,9 +99,9 @@ msgstr "您的密码已成功更改。" #: netbox/circuits/choices.py:21 netbox/dcim/choices.py:20 #: netbox/dcim/choices.py:102 netbox/dcim/choices.py:204 -#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1835 -#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 -#: netbox/dcim/choices.py:1982 netbox/virtualization/choices.py:20 +#: netbox/dcim/choices.py:257 netbox/dcim/choices.py:1836 +#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1961 +#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:20 #: netbox/virtualization/choices.py:46 netbox/vpn/choices.py:18 #: netbox/vpn/choices.py:281 msgid "Planned" @@ -115,8 +115,8 @@ msgstr "置备" #: netbox/core/tables/tasks.py:23 netbox/dcim/choices.py:22 #: netbox/dcim/choices.py:103 netbox/dcim/choices.py:155 #: netbox/dcim/choices.py:203 netbox/dcim/choices.py:256 -#: netbox/dcim/choices.py:1892 netbox/dcim/choices.py:1959 -#: netbox/dcim/choices.py:1981 netbox/extras/tables/tables.py:598 +#: netbox/dcim/choices.py:1893 netbox/dcim/choices.py:1960 +#: netbox/dcim/choices.py:1982 netbox/extras/tables/tables.py:598 #: netbox/ipam/choices.py:31 netbox/ipam/choices.py:49 #: netbox/ipam/choices.py:69 netbox/ipam/choices.py:154 #: netbox/templates/extras/configcontext.html:29 @@ -128,8 +128,8 @@ msgid "Active" msgstr "在线" #: netbox/circuits/choices.py:24 netbox/dcim/choices.py:202 -#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1891 -#: netbox/dcim/choices.py:1961 netbox/dcim/choices.py:1980 +#: netbox/dcim/choices.py:255 netbox/dcim/choices.py:1892 +#: netbox/dcim/choices.py:1962 netbox/dcim/choices.py:1981 #: netbox/virtualization/choices.py:24 netbox/virtualization/choices.py:44 msgid "Offline" msgstr "离线" @@ -142,7 +142,7 @@ msgstr "预留" msgid "Decommissioned" msgstr "退役" -#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1904 +#: netbox/circuits/choices.py:90 netbox/dcim/choices.py:1905 #: netbox/templates/dcim/interface.html:135 #: netbox/templates/virtualization/vminterface.html:83 #: netbox/tenancy/choices.py:17 @@ -682,8 +682,8 @@ msgstr "服务ID" #: netbox/dcim/forms/bulk_edit.py:1813 netbox/dcim/forms/bulk_import.py:1435 #: netbox/dcim/forms/filtersets.py:1142 netbox/dcim/forms/filtersets.py:1400 #: netbox/dcim/forms/filtersets.py:1553 netbox/dcim/forms/filtersets.py:1577 -#: netbox/dcim/tables/devices.py:757 netbox/dcim/tables/devices.py:813 -#: netbox/dcim/tables/devices.py:1054 netbox/dcim/tables/devicetypes.py:256 +#: netbox/dcim/tables/devices.py:767 netbox/dcim/tables/devices.py:823 +#: netbox/dcim/tables/devices.py:1064 netbox/dcim/tables/devicetypes.py:256 #: netbox/dcim/tables/devicetypes.py:271 netbox/dcim/tables/racks.py:33 #: netbox/extras/forms/bulk_edit.py:306 netbox/extras/tables/tables.py:512 #: netbox/templates/circuits/circuittype.html:30 @@ -728,7 +728,7 @@ msgstr "颜色" #: netbox/dcim/forms/model_forms.py:823 netbox/dcim/forms/object_import.py:84 #: netbox/dcim/forms/object_import.py:113 #: netbox/dcim/forms/object_import.py:146 netbox/dcim/tables/devices.py:196 -#: netbox/dcim/tables/devices.py:865 netbox/dcim/tables/power.py:77 +#: netbox/dcim/tables/devices.py:875 netbox/dcim/tables/power.py:77 #: netbox/dcim/tables/racks.py:141 netbox/extras/forms/bulk_import.py:43 #: netbox/extras/tables/tables.py:474 netbox/extras/tables/tables.py:534 #: netbox/netbox/tables/tables.py:272 @@ -800,8 +800,8 @@ msgstr "运营商账户" #: netbox/dcim/forms/filtersets.py:1036 netbox/dcim/forms/filtersets.py:1137 #: netbox/dcim/forms/filtersets.py:1248 netbox/dcim/forms/filtersets.py:1404 #: netbox/dcim/forms/filtersets.py:1655 netbox/dcim/tables/devices.py:158 -#: netbox/dcim/tables/devices.py:537 netbox/dcim/tables/devices.py:868 -#: netbox/dcim/tables/devices.py:1002 netbox/dcim/tables/devices.py:1113 +#: netbox/dcim/tables/devices.py:547 netbox/dcim/tables/devices.py:878 +#: netbox/dcim/tables/devices.py:1012 netbox/dcim/tables/devices.py:1123 #: netbox/dcim/tables/modules.py:104 netbox/dcim/tables/power.py:74 #: netbox/dcim/tables/racks.py:129 netbox/dcim/tables/racks.py:233 #: netbox/dcim/tables/sites.py:96 netbox/dcim/tables/sites.py:155 @@ -1031,7 +1031,7 @@ msgstr "属性" #: netbox/ipam/forms/model_forms.py:331 netbox/ipam/forms/model_forms.py:625 #: netbox/netbox/navigation/menu.py:24 #: netbox/templates/dcim/device_edit.html:87 -#: netbox/templates/dcim/htmx/cable_edit.html:75 +#: netbox/templates/dcim/htmx/cable_edit.html:74 #: netbox/templates/ipam/ipaddress_bulk_add.html:27 #: netbox/templates/ipam/vlan_edit.html:34 #: netbox/virtualization/forms/model_forms.py:80 @@ -1125,7 +1125,7 @@ msgstr "运营商网络" #: netbox/dcim/forms/filtersets.py:1632 netbox/dcim/forms/model_forms.py:264 #: netbox/dcim/forms/model_forms.py:1224 netbox/dcim/forms/model_forms.py:1693 #: netbox/dcim/forms/object_import.py:182 netbox/dcim/tables/devices.py:187 -#: netbox/dcim/tables/devices.py:860 netbox/dcim/tables/devices.py:986 +#: netbox/dcim/tables/devices.py:870 netbox/dcim/tables/devices.py:996 #: netbox/dcim/tables/devicetypes.py:311 netbox/dcim/tables/racks.py:132 #: netbox/extras/filtersets.py:689 netbox/ipam/forms/bulk_edit.py:245 #: netbox/ipam/forms/bulk_edit.py:295 netbox/ipam/forms/bulk_edit.py:348 @@ -1249,7 +1249,7 @@ msgstr "操作角色" #: netbox/dcim/forms/bulk_import.py:1289 netbox/dcim/forms/model_forms.py:1298 #: netbox/dcim/forms/model_forms.py:1567 netbox/dcim/forms/model_forms.py:1734 #: netbox/dcim/forms/model_forms.py:1769 netbox/dcim/forms/model_forms.py:1899 -#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1159 +#: netbox/dcim/tables/connections.py:65 netbox/dcim/tables/devices.py:1169 #: netbox/ipam/forms/bulk_import.py:324 netbox/ipam/forms/model_forms.py:291 #: netbox/ipam/forms/model_forms.py:300 netbox/ipam/tables/fhrp.py:64 #: netbox/ipam/tables/ip.py:330 netbox/ipam/tables/vlans.py:147 @@ -1431,8 +1431,7 @@ msgstr "分配" #: netbox/tenancy/forms/bulk_edit.py:44 netbox/tenancy/forms/bulk_import.py:40 #: netbox/tenancy/forms/filtersets.py:48 netbox/tenancy/forms/filtersets.py:97 #: netbox/tenancy/forms/model_forms.py:46 -#: netbox/tenancy/forms/model_forms.py:124 -#: netbox/tenancy/tables/contacts.py:115 netbox/tenancy/tables/tenants.py:50 +#: netbox/tenancy/forms/model_forms.py:124 netbox/tenancy/tables/tenants.py:50 #: netbox/users/filtersets.py:62 netbox/users/filtersets.py:185 #: netbox/users/forms/filtersets.py:31 netbox/users/forms/filtersets.py:37 #: netbox/users/forms/filtersets.py:79 @@ -1750,13 +1749,13 @@ msgstr "虚拟电路终止" #: netbox/dcim/forms/filtersets.py:65 netbox/dcim/forms/object_create.py:43 #: netbox/dcim/tables/devices.py:63 netbox/dcim/tables/devices.py:107 #: netbox/dcim/tables/devices.py:153 netbox/dcim/tables/devices.py:312 -#: netbox/dcim/tables/devices.py:415 netbox/dcim/tables/devices.py:456 -#: netbox/dcim/tables/devices.py:504 netbox/dcim/tables/devices.py:558 -#: netbox/dcim/tables/devices.py:581 netbox/dcim/tables/devices.py:701 -#: netbox/dcim/tables/devices.py:784 netbox/dcim/tables/devices.py:830 -#: netbox/dcim/tables/devices.py:892 netbox/dcim/tables/devices.py:961 -#: netbox/dcim/tables/devices.py:1026 netbox/dcim/tables/devices.py:1045 -#: netbox/dcim/tables/devices.py:1074 netbox/dcim/tables/devices.py:1104 +#: netbox/dcim/tables/devices.py:425 netbox/dcim/tables/devices.py:466 +#: netbox/dcim/tables/devices.py:514 netbox/dcim/tables/devices.py:568 +#: netbox/dcim/tables/devices.py:591 netbox/dcim/tables/devices.py:711 +#: netbox/dcim/tables/devices.py:794 netbox/dcim/tables/devices.py:840 +#: netbox/dcim/tables/devices.py:902 netbox/dcim/tables/devices.py:971 +#: netbox/dcim/tables/devices.py:1036 netbox/dcim/tables/devices.py:1055 +#: netbox/dcim/tables/devices.py:1084 netbox/dcim/tables/devices.py:1114 #: netbox/dcim/tables/devicetypes.py:31 netbox/dcim/tables/devicetypes.py:227 #: netbox/dcim/tables/modules.py:17 netbox/dcim/tables/power.py:22 #: netbox/dcim/tables/power.py:62 netbox/dcim/tables/racks.py:24 @@ -1911,7 +1910,7 @@ msgstr "承诺速率" #: netbox/circuits/tables/providers.py:80 #: netbox/circuits/tables/providers.py:105 #: netbox/circuits/tables/virtual_circuits.py:67 -#: netbox/dcim/tables/devices.py:1087 netbox/dcim/tables/devicetypes.py:97 +#: netbox/dcim/tables/devices.py:1097 netbox/dcim/tables/devicetypes.py:97 #: netbox/dcim/tables/modules.py:27 netbox/dcim/tables/modules.py:68 #: netbox/dcim/tables/modules.py:107 netbox/dcim/tables/power.py:39 #: netbox/dcim/tables/power.py:96 netbox/dcim/tables/racks.py:88 @@ -1924,7 +1923,7 @@ msgstr "承诺速率" #: netbox/ipam/tables/ip.py:355 netbox/ipam/tables/services.py:24 #: netbox/ipam/tables/services.py:54 netbox/ipam/tables/vlans.py:123 #: netbox/ipam/tables/vrfs.py:47 netbox/ipam/tables/vrfs.py:72 -#: netbox/templates/dcim/htmx/cable_edit.html:91 +#: netbox/templates/dcim/htmx/cable_edit.html:90 #: netbox/templates/generic/bulk_edit.html:86 #: netbox/templates/inc/panels/comments.html:5 #: netbox/tenancy/tables/contacts.py:35 netbox/tenancy/tables/contacts.py:76 @@ -2014,12 +2013,12 @@ msgstr "终端" #: netbox/dcim/forms/model_forms.py:1850 netbox/dcim/forms/model_forms.py:1923 #: netbox/dcim/forms/object_create.py:260 netbox/dcim/tables/connections.py:22 #: netbox/dcim/tables/connections.py:41 netbox/dcim/tables/connections.py:60 -#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:393 -#: netbox/dcim/tables/devices.py:434 netbox/dcim/tables/devices.py:476 -#: netbox/dcim/tables/devices.py:526 netbox/dcim/tables/devices.py:638 -#: netbox/dcim/tables/devices.py:750 netbox/dcim/tables/devices.py:806 -#: netbox/dcim/tables/devices.py:852 netbox/dcim/tables/devices.py:911 -#: netbox/dcim/tables/devices.py:979 netbox/dcim/tables/devices.py:1108 +#: netbox/dcim/tables/devices.py:308 netbox/dcim/tables/devices.py:403 +#: netbox/dcim/tables/devices.py:444 netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:536 netbox/dcim/tables/devices.py:648 +#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devices.py:816 +#: netbox/dcim/tables/devices.py:862 netbox/dcim/tables/devices.py:921 +#: netbox/dcim/tables/devices.py:989 netbox/dcim/tables/devices.py:1118 #: netbox/dcim/tables/modules.py:87 netbox/extras/forms/filtersets.py:386 #: netbox/ipam/forms/bulk_import.py:310 netbox/ipam/forms/filtersets.py:626 #: netbox/ipam/forms/model_forms.py:334 netbox/ipam/tables/vlans.py:158 @@ -2042,7 +2041,7 @@ msgstr "终端" #: netbox/templates/dcim/virtualchassis.html:55 #: netbox/templates/dcim/virtualchassis_edit.html:55 #: netbox/templates/dcim/virtualdevicecontext.html:22 -#: netbox/templates/virtualization/virtualmachine.html:114 +#: netbox/templates/virtualization/virtualmachine.html:116 #: netbox/templates/vpn/tunneltermination.html:23 #: netbox/templates/wireless/inc/wirelesslink_interface.html:6 #: netbox/virtualization/filtersets.py:133 @@ -2124,7 +2123,7 @@ msgstr "完成" #: netbox/core/choices.py:22 netbox/core/choices.py:59 #: netbox/core/constants.py:21 netbox/core/tables/tasks.py:35 #: netbox/dcim/choices.py:206 netbox/dcim/choices.py:259 -#: netbox/dcim/choices.py:1894 netbox/dcim/choices.py:1984 +#: netbox/dcim/choices.py:1895 netbox/dcim/choices.py:1985 #: netbox/virtualization/choices.py:48 msgid "Failed" msgstr "故障" @@ -2295,9 +2294,9 @@ msgid "User name" msgstr "用户名" #: netbox/core/forms/bulk_edit.py:26 netbox/core/forms/filtersets.py:43 -#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1942 +#: netbox/core/tables/data.py:27 netbox/dcim/choices.py:1943 #: netbox/dcim/forms/bulk_edit.py:1201 netbox/dcim/forms/bulk_edit.py:1482 -#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:586 +#: netbox/dcim/forms/filtersets.py:1458 netbox/dcim/tables/devices.py:596 #: netbox/dcim/tables/devicetypes.py:231 netbox/extras/forms/bulk_edit.py:127 #: netbox/extras/forms/bulk_edit.py:195 netbox/extras/forms/bulk_edit.py:223 #: netbox/extras/forms/bulk_edit.py:282 netbox/extras/forms/filtersets.py:147 @@ -2484,7 +2483,7 @@ msgstr "必须上传文件或选择数据文件进行同步" msgid "Rack Elevations" msgstr "机柜立面图" -#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1813 +#: netbox/core/forms/model_forms.py:160 netbox/dcim/choices.py:1814 #: netbox/dcim/forms/bulk_edit.py:1044 netbox/dcim/forms/bulk_edit.py:1436 #: netbox/dcim/forms/bulk_edit.py:1457 netbox/dcim/tables/racks.py:161 #: netbox/netbox/navigation/menu.py:313 netbox/netbox/navigation/menu.py:317 @@ -3125,8 +3124,8 @@ msgid "Staging" msgstr "暂存" #: netbox/dcim/choices.py:23 netbox/dcim/choices.py:208 -#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1836 -#: netbox/dcim/choices.py:1985 netbox/virtualization/choices.py:23 +#: netbox/dcim/choices.py:260 netbox/dcim/choices.py:1837 +#: netbox/dcim/choices.py:1986 netbox/virtualization/choices.py:23 #: netbox/virtualization/choices.py:49 netbox/vpn/choices.py:282 msgid "Decommissioning" msgstr "报废" @@ -3191,7 +3190,7 @@ msgstr "已弃用" msgid "Millimeters" msgstr "毫米" -#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1858 +#: netbox/dcim/choices.py:115 netbox/dcim/choices.py:1859 msgid "Inches" msgstr "英寸" @@ -3223,9 +3222,9 @@ msgstr "陈旧" #: netbox/dcim/forms/model_forms.py:540 netbox/dcim/forms/model_forms.py:1216 #: netbox/dcim/forms/model_forms.py:1685 #: netbox/dcim/forms/object_import.py:177 netbox/dcim/tables/devices.py:67 -#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:709 -#: netbox/dcim/tables/devices.py:919 netbox/dcim/tables/devices.py:1006 -#: netbox/dcim/tables/devices.py:1165 netbox/dcim/tables/sites.py:28 +#: netbox/dcim/tables/devices.py:111 netbox/dcim/tables/devices.py:719 +#: netbox/dcim/tables/devices.py:929 netbox/dcim/tables/devices.py:1016 +#: netbox/dcim/tables/devices.py:1175 netbox/dcim/tables/sites.py:28 #: netbox/dcim/tables/sites.py:62 netbox/dcim/tables/sites.py:147 #: netbox/ipam/forms/bulk_import.py:568 netbox/ipam/forms/model_forms.py:770 #: netbox/ipam/tables/fhrp.py:59 netbox/ipam/tables/ip.py:336 @@ -3275,7 +3274,7 @@ msgid "Rear" msgstr "后" #: netbox/dcim/choices.py:205 netbox/dcim/choices.py:258 -#: netbox/dcim/choices.py:1983 netbox/virtualization/choices.py:47 +#: netbox/dcim/choices.py:1984 netbox/virtualization/choices.py:47 msgid "Staged" msgstr "已暂存" @@ -3308,7 +3307,7 @@ msgid "Top to bottom" msgstr "从上到下" #: netbox/dcim/choices.py:235 netbox/dcim/choices.py:280 -#: netbox/dcim/choices.py:1557 +#: netbox/dcim/choices.py:1558 msgid "Passive" msgstr "被动" @@ -3337,8 +3336,8 @@ msgid "Proprietary" msgstr "专用规格" #: netbox/dcim/choices.py:604 netbox/dcim/choices.py:849 -#: netbox/dcim/choices.py:1469 netbox/dcim/choices.py:1471 -#: netbox/dcim/choices.py:1707 netbox/dcim/choices.py:1709 +#: netbox/dcim/choices.py:1470 netbox/dcim/choices.py:1472 +#: netbox/dcim/choices.py:1708 netbox/dcim/choices.py:1710 #: netbox/netbox/navigation/menu.py:209 msgid "Other" msgstr "其他" @@ -3355,7 +3354,7 @@ msgstr "物理" msgid "Virtual" msgstr "虚拟" -#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1346 +#: netbox/dcim/choices.py:881 netbox/dcim/choices.py:1347 #: netbox/dcim/forms/bulk_edit.py:1642 netbox/dcim/forms/filtersets.py:1418 #: netbox/dcim/forms/model_forms.py:1126 netbox/dcim/forms/model_forms.py:1579 #: netbox/netbox/navigation/menu.py:147 netbox/netbox/navigation/menu.py:151 @@ -3369,7 +3368,7 @@ msgstr "虚拟接口" #: netbox/dcim/choices.py:1148 netbox/dcim/forms/bulk_edit.py:1495 #: netbox/dcim/forms/bulk_import.py:922 netbox/dcim/forms/model_forms.py:1108 -#: netbox/dcim/tables/devices.py:713 netbox/templates/dcim/interface.html:112 +#: netbox/dcim/tables/devices.py:723 netbox/templates/dcim/interface.html:112 #: netbox/templates/virtualization/vminterface.html:43 #: netbox/virtualization/forms/bulk_edit.py:194 #: netbox/virtualization/forms/bulk_import.py:164 @@ -3413,31 +3412,31 @@ msgstr "50 Gbps 以太网" msgid "100 Gbps Ethernet" msgstr "100 Gbps 以太网" -#: netbox/dcim/choices.py:1252 +#: netbox/dcim/choices.py:1253 msgid "200 Gbps Ethernet" msgstr "200 Gbps 以太网" -#: netbox/dcim/choices.py:1266 +#: netbox/dcim/choices.py:1267 msgid "400 Gbps Ethernet" msgstr "400 Gbps 以太网" -#: netbox/dcim/choices.py:1284 +#: netbox/dcim/choices.py:1285 msgid "800 Gbps Ethernet" msgstr "800 Gbps 以太网" -#: netbox/dcim/choices.py:1293 +#: netbox/dcim/choices.py:1294 msgid "Pluggable transceivers" msgstr "可插拔收发器" -#: netbox/dcim/choices.py:1330 +#: netbox/dcim/choices.py:1331 msgid "Backplane Ethernet" msgstr "背板以太网" -#: netbox/dcim/choices.py:1362 +#: netbox/dcim/choices.py:1363 msgid "Cellular" msgstr "蜂窝网络" -#: netbox/dcim/choices.py:1414 netbox/dcim/forms/filtersets.py:385 +#: netbox/dcim/choices.py:1415 netbox/dcim/forms/filtersets.py:385 #: netbox/dcim/forms/filtersets.py:839 netbox/dcim/forms/filtersets.py:1041 #: netbox/dcim/forms/filtersets.py:1640 #: netbox/templates/dcim/inventoryitem.html:56 @@ -3445,147 +3444,147 @@ msgstr "蜂窝网络" msgid "Serial" msgstr "串口" -#: netbox/dcim/choices.py:1429 +#: netbox/dcim/choices.py:1430 msgid "Coaxial" msgstr "同轴电缆接口" -#: netbox/dcim/choices.py:1450 +#: netbox/dcim/choices.py:1451 msgid "Stacking" msgstr "堆叠" -#: netbox/dcim/choices.py:1502 +#: netbox/dcim/choices.py:1503 msgid "Half" msgstr "半双工" -#: netbox/dcim/choices.py:1503 +#: netbox/dcim/choices.py:1504 msgid "Full" msgstr "全双工" -#: netbox/dcim/choices.py:1504 netbox/netbox/preferences.py:42 +#: netbox/dcim/choices.py:1505 netbox/netbox/preferences.py:42 #: netbox/wireless/choices.py:480 msgid "Auto" msgstr "自动" -#: netbox/dcim/choices.py:1516 +#: netbox/dcim/choices.py:1517 msgid "Access" msgstr "接入" -#: netbox/dcim/choices.py:1517 netbox/ipam/tables/vlans.py:150 +#: netbox/dcim/choices.py:1518 netbox/ipam/tables/vlans.py:150 #: netbox/ipam/tables/vlans.py:195 #: netbox/templates/dcim/inc/interface_vlans_table.html:7 msgid "Tagged" msgstr "Trunk口" -#: netbox/dcim/choices.py:1518 +#: netbox/dcim/choices.py:1519 msgid "Tagged (All)" msgstr "Trunk口(允许所有VLAN)" -#: netbox/dcim/choices.py:1519 netbox/templates/ipam/vlan_edit.html:26 +#: netbox/dcim/choices.py:1520 netbox/templates/ipam/vlan_edit.html:26 msgid "Q-in-Q (802.1ad)" msgstr "q-in-q (802.1ad)" -#: netbox/dcim/choices.py:1548 +#: netbox/dcim/choices.py:1549 msgid "IEEE Standard" msgstr "IEEE标准" -#: netbox/dcim/choices.py:1559 +#: netbox/dcim/choices.py:1560 msgid "Passive 24V (2-pair)" msgstr "24V(2对供电)" -#: netbox/dcim/choices.py:1560 +#: netbox/dcim/choices.py:1561 msgid "Passive 24V (4-pair)" msgstr "24V(4对供电)" -#: netbox/dcim/choices.py:1561 +#: netbox/dcim/choices.py:1562 msgid "Passive 48V (2-pair)" msgstr "48V(2对供电)" -#: netbox/dcim/choices.py:1562 +#: netbox/dcim/choices.py:1563 msgid "Passive 48V (4-pair)" msgstr "48V(4对供电)" -#: netbox/dcim/choices.py:1635 +#: netbox/dcim/choices.py:1636 msgid "Copper" msgstr "铜缆" -#: netbox/dcim/choices.py:1658 +#: netbox/dcim/choices.py:1659 msgid "Fiber Optic" msgstr "光纤" -#: netbox/dcim/choices.py:1694 netbox/dcim/choices.py:1819 +#: netbox/dcim/choices.py:1695 netbox/dcim/choices.py:1820 msgid "USB" msgstr "USB" -#: netbox/dcim/choices.py:1763 +#: netbox/dcim/choices.py:1764 msgid "Copper - Twisted Pair (UTP/STP)" msgstr "铜-双绞线 (UTP/STP)" -#: netbox/dcim/choices.py:1777 +#: netbox/dcim/choices.py:1778 msgid "Copper - Twinax (DAC)" msgstr "铜-Twinax (DAC)" -#: netbox/dcim/choices.py:1784 +#: netbox/dcim/choices.py:1785 msgid "Copper - Coaxial" msgstr "铜-同轴" -#: netbox/dcim/choices.py:1790 +#: netbox/dcim/choices.py:1791 msgid "Fiber - Multimode" msgstr "光纤-多模" -#: netbox/dcim/choices.py:1801 +#: netbox/dcim/choices.py:1802 msgid "Fiber - Single-mode" msgstr "光纤-单模" -#: netbox/dcim/choices.py:1809 +#: netbox/dcim/choices.py:1810 msgid "Fiber - Other" msgstr "纤维-其他" -#: netbox/dcim/choices.py:1834 netbox/dcim/forms/filtersets.py:1305 +#: netbox/dcim/choices.py:1835 netbox/dcim/forms/filtersets.py:1305 msgid "Connected" msgstr "已连接" -#: netbox/dcim/choices.py:1853 netbox/netbox/choices.py:177 +#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:177 msgid "Kilometers" msgstr "公里" -#: netbox/dcim/choices.py:1854 netbox/netbox/choices.py:178 +#: netbox/dcim/choices.py:1855 netbox/netbox/choices.py:178 #: netbox/templates/dcim/cable_trace.html:65 msgid "Meters" msgstr "米" -#: netbox/dcim/choices.py:1855 +#: netbox/dcim/choices.py:1856 msgid "Centimeters" msgstr "厘米" -#: netbox/dcim/choices.py:1856 netbox/netbox/choices.py:179 +#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:179 msgid "Miles" msgstr "英里" -#: netbox/dcim/choices.py:1857 netbox/netbox/choices.py:180 +#: netbox/dcim/choices.py:1858 netbox/netbox/choices.py:180 #: netbox/templates/dcim/cable_trace.html:66 msgid "Feet" msgstr "英尺" -#: netbox/dcim/choices.py:1905 +#: netbox/dcim/choices.py:1906 msgid "Redundant" msgstr "冗余" -#: netbox/dcim/choices.py:1926 +#: netbox/dcim/choices.py:1927 msgid "Single phase" msgstr "单相电" -#: netbox/dcim/choices.py:1927 +#: netbox/dcim/choices.py:1928 msgid "Three-phase" msgstr "三相" -#: netbox/dcim/choices.py:1943 netbox/extras/choices.py:53 +#: netbox/dcim/choices.py:1944 netbox/extras/choices.py:53 #: netbox/netbox/preferences.py:32 netbox/netbox/preferences.py:71 #: netbox/templates/extras/customfield.html:78 netbox/vpn/choices.py:20 #: netbox/wireless/choices.py:27 msgid "Disabled" msgstr "禁用" -#: netbox/dcim/choices.py:1944 +#: netbox/dcim/choices.py:1945 msgid "Faulty" msgstr "故障" @@ -4009,7 +4008,7 @@ msgstr "指定VID" #: netbox/dcim/forms/bulk_import.py:973 netbox/dcim/forms/filtersets.py:1526 #: netbox/dcim/forms/model_forms.py:1545 #: netbox/dcim/models/device_components.py:795 -#: netbox/dcim/tables/devices.py:667 netbox/ipam/filtersets.py:335 +#: netbox/dcim/tables/devices.py:677 netbox/ipam/filtersets.py:335 #: netbox/ipam/filtersets.py:346 netbox/ipam/filtersets.py:478 #: netbox/ipam/filtersets.py:579 netbox/ipam/filtersets.py:590 #: netbox/ipam/forms/bulk_edit.py:226 netbox/ipam/forms/bulk_edit.py:282 @@ -4050,7 +4049,7 @@ msgid "L2VPN (ID)" msgstr "L2VPN (ID)" #: netbox/dcim/filtersets.py:1879 netbox/dcim/forms/filtersets.py:1531 -#: netbox/dcim/tables/devices.py:603 netbox/ipam/filtersets.py:1043 +#: netbox/dcim/tables/devices.py:613 netbox/ipam/filtersets.py:1043 #: netbox/ipam/forms/filtersets.py:592 netbox/ipam/tables/vlans.py:115 #: netbox/templates/dcim/interface.html:99 netbox/templates/ipam/vlan.html:82 #: netbox/templates/vpn/l2vpntermination.html:12 @@ -4108,8 +4107,8 @@ msgstr "桥接接口(ID)" msgid "LAG interface (ID)" msgstr "链路聚合接口(ID)" -#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:625 -#: netbox/dcim/tables/devices.py:1154 netbox/templates/dcim/interface.html:131 +#: netbox/dcim/filtersets.py:1966 netbox/dcim/tables/devices.py:635 +#: netbox/dcim/tables/devices.py:1164 netbox/templates/dcim/interface.html:131 #: netbox/templates/dcim/macaddress.html:11 #: netbox/templates/dcim/macaddress.html:14 #: netbox/templates/virtualization/vminterface.html:79 @@ -4142,7 +4141,7 @@ msgstr "虚拟设备上下文(ID)" msgid "Wireless LAN" msgstr "无线局域网" -#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:654 +#: netbox/dcim/filtersets.py:2020 netbox/dcim/tables/devices.py:664 msgid "Wireless link" msgstr "无线连接" @@ -4207,7 +4206,7 @@ msgstr "标签" #: netbox/dcim/forms/model_forms.py:601 netbox/dcim/forms/model_forms.py:660 #: netbox/dcim/forms/object_create.py:208 #: netbox/dcim/forms/object_create.py:357 netbox/dcim/tables/devices.py:183 -#: netbox/dcim/tables/devices.py:760 netbox/dcim/tables/devicetypes.py:253 +#: netbox/dcim/tables/devices.py:770 netbox/dcim/tables/devicetypes.py:253 #: netbox/templates/dcim/device.html:49 netbox/templates/dcim/device.html:137 #: netbox/templates/dcim/modulebay.html:38 #: netbox/templates/dcim/virtualchassis.html:56 @@ -4254,7 +4253,7 @@ msgstr "时区" #: netbox/dcim/forms/model_forms.py:545 netbox/dcim/forms/model_forms.py:1229 #: netbox/dcim/forms/model_forms.py:1698 #: netbox/dcim/forms/object_import.py:188 netbox/dcim/tables/devices.py:115 -#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:989 +#: netbox/dcim/tables/devices.py:190 netbox/dcim/tables/devices.py:999 #: netbox/dcim/tables/devicetypes.py:85 netbox/dcim/tables/devicetypes.py:315 #: netbox/dcim/tables/modules.py:49 netbox/dcim/tables/modules.py:95 #: netbox/dcim/tables/racks.py:58 netbox/dcim/tables/racks.py:135 @@ -4723,7 +4722,7 @@ msgid "Wireless role" msgstr "无线角色" #: netbox/dcim/forms/bulk_edit.py:1367 netbox/dcim/forms/model_forms.py:783 -#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:335 +#: netbox/dcim/forms/model_forms.py:1380 netbox/dcim/tables/devices.py:345 #: netbox/templates/dcim/consoleport.html:24 #: netbox/templates/dcim/consoleserverport.html:24 #: netbox/templates/dcim/frontport.html:24 @@ -4737,7 +4736,7 @@ msgstr "无线角色" msgid "Module" msgstr "模块" -#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:718 +#: netbox/dcim/forms/bulk_edit.py:1509 netbox/dcim/tables/devices.py:728 #: netbox/templates/dcim/interface.html:116 msgid "LAG" msgstr "链路聚合" @@ -4749,7 +4748,7 @@ msgstr "设备虚拟上下文" #: netbox/dcim/forms/bulk_edit.py:1520 netbox/dcim/forms/bulk_import.py:793 #: netbox/dcim/forms/bulk_import.py:819 netbox/dcim/forms/filtersets.py:1330 #: netbox/dcim/forms/filtersets.py:1355 netbox/dcim/forms/filtersets.py:1446 -#: netbox/dcim/tables/devices.py:651 +#: netbox/dcim/tables/devices.py:661 #: netbox/templates/circuits/inc/circuit_termination_fields.html:62 #: netbox/templates/dcim/consoleport.html:40 #: netbox/templates/dcim/consoleserverport.html:40 @@ -4778,14 +4777,14 @@ msgid "VLAN group" msgstr "VLAN 组" #: netbox/dcim/forms/bulk_edit.py:1566 netbox/dcim/forms/model_forms.py:1517 -#: netbox/dcim/tables/devices.py:612 +#: netbox/dcim/tables/devices.py:622 #: netbox/virtualization/forms/bulk_edit.py:230 #: netbox/virtualization/forms/model_forms.py:340 msgid "Untagged VLAN" msgstr "未标记的VLAN" #: netbox/dcim/forms/bulk_edit.py:1575 netbox/dcim/forms/model_forms.py:1526 -#: netbox/dcim/tables/devices.py:618 +#: netbox/dcim/tables/devices.py:628 #: netbox/virtualization/forms/bulk_edit.py:238 #: netbox/virtualization/forms/model_forms.py:349 msgid "Tagged VLANs" @@ -4809,7 +4808,7 @@ msgid "Wireless LAN group" msgstr "无线局域网组" #: netbox/dcim/forms/bulk_edit.py:1618 netbox/dcim/forms/model_forms.py:1503 -#: netbox/dcim/tables/devices.py:660 netbox/netbox/navigation/menu.py:153 +#: netbox/dcim/tables/devices.py:670 netbox/netbox/navigation/menu.py:153 #: netbox/templates/dcim/interface.html:337 #: netbox/wireless/tables/wirelesslan.py:28 msgid "Wireless LANs" @@ -5204,7 +5203,7 @@ msgstr "对应后置端口" msgid "Physical medium classification" msgstr "物理端口类型" -#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:873 +#: netbox/dcim/forms/bulk_import.py:1110 netbox/dcim/tables/devices.py:883 msgid "Installed device" msgstr "安装设备" @@ -5365,7 +5364,7 @@ msgid "" msgstr "{color} 与任何使用的颜色名称都不匹配且长度超过六个字符:十六进制无效。" #: netbox/dcim/forms/bulk_import.py:1542 netbox/dcim/forms/model_forms.py:900 -#: netbox/dcim/tables/devices.py:1078 netbox/templates/dcim/device.html:138 +#: netbox/dcim/tables/devices.py:1088 netbox/templates/dcim/device.html:138 #: netbox/templates/dcim/virtualchassis.html:17 #: netbox/templates/dcim/virtualchassis.html:57 msgid "Master" @@ -5469,7 +5468,7 @@ msgstr "电源面板" msgid "Power Feed" msgstr "电力供给" -#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:317 +#: netbox/dcim/forms/filtersets.py:138 netbox/dcim/tables/devices.py:327 msgid "Device Status" msgstr "设备状态" @@ -5547,8 +5546,8 @@ msgstr "已占用" #: netbox/dcim/forms/filtersets.py:1322 netbox/dcim/forms/filtersets.py:1347 #: netbox/dcim/forms/filtersets.py:1371 netbox/dcim/forms/filtersets.py:1391 -#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:386 -#: netbox/dcim/tables/devices.py:682 +#: netbox/dcim/forms/filtersets.py:1424 netbox/dcim/tables/devices.py:396 +#: netbox/dcim/tables/devices.py:692 #: netbox/templates/circuits/inc/circuit_termination_fields.html:16 #: netbox/templates/dcim/consoleport.html:55 #: netbox/templates/dcim/consoleserverport.html:55 @@ -5602,7 +5601,7 @@ msgid "Transmit power (dBm)" msgstr "信道功率(dBm)" #: netbox/dcim/forms/filtersets.py:1544 netbox/dcim/forms/filtersets.py:1569 -#: netbox/dcim/tables/devices.py:349 netbox/templates/dcim/cable.html:12 +#: netbox/dcim/tables/devices.py:359 netbox/templates/dcim/cable.html:12 #: netbox/templates/dcim/cable_trace.html:46 #: netbox/templates/dcim/frontport.html:77 #: netbox/templates/dcim/htmx/cable_edit.html:53 @@ -5612,7 +5611,7 @@ msgstr "信道功率(dBm)" msgid "Cable" msgstr "电缆" -#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:998 +#: netbox/dcim/forms/filtersets.py:1648 netbox/dcim/tables/devices.py:1008 msgid "Discovered" msgstr "已发现" @@ -5792,7 +5791,7 @@ msgid "Front Port" msgstr "前置接口" #: netbox/dcim/forms/model_forms.py:1302 netbox/dcim/forms/model_forms.py:1773 -#: netbox/dcim/tables/devices.py:763 +#: netbox/dcim/tables/devices.py:773 #: netbox/templates/circuits/inc/circuit_termination_fields.html:54 #: netbox/templates/dcim/consoleport.html:79 #: netbox/templates/dcim/consoleserverport.html:79 @@ -5805,7 +5804,7 @@ msgid "Rear Port" msgstr "后置接口" #: netbox/dcim/forms/model_forms.py:1303 netbox/dcim/forms/model_forms.py:1774 -#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:533 +#: netbox/dcim/tables/connections.py:46 netbox/dcim/tables/devices.py:543 #: netbox/templates/dcim/poweroutlet.html:58 #: netbox/templates/dcim/powerport.html:17 msgid "Power Port" @@ -5933,7 +5932,7 @@ msgid "" "selected number of rear port positions ({rearport_count})." msgstr "要创建的前置端口数 ({frontport_count}) 必须与所选的后置端口数({rearport_count})匹配。" -#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1084 +#: netbox/dcim/forms/object_create.py:413 netbox/dcim/tables/devices.py:1094 #: netbox/ipam/tables/fhrp.py:31 netbox/templates/dcim/virtualchassis.html:43 #: netbox/templates/dcim/virtualchassis_edit.html:51 #: netbox/templates/ipam/fhrpgroup.html:38 @@ -6412,7 +6411,7 @@ msgid "tagged VLANs" msgstr "已标记 VLANs" #: netbox/dcim/models/device_components.py:604 -#: netbox/dcim/tables/devices.py:621 netbox/ipam/forms/bulk_edit.py:521 +#: netbox/dcim/tables/devices.py:631 netbox/ipam/forms/bulk_edit.py:521 #: netbox/ipam/forms/bulk_import.py:514 netbox/ipam/forms/filtersets.py:587 #: netbox/ipam/forms/model_forms.py:694 netbox/ipam/tables/vlans.py:108 #: netbox/templates/dcim/interface.html:86 netbox/templates/ipam/vlan.html:77 @@ -7582,7 +7581,7 @@ msgstr "配置模版" msgid "U Height" msgstr "U高度" -#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1118 +#: netbox/dcim/tables/devices.py:210 netbox/dcim/tables/devices.py:1128 #: netbox/ipam/forms/bulk_import.py:587 netbox/ipam/forms/model_forms.py:317 #: netbox/ipam/forms/model_forms.py:330 netbox/ipam/tables/ip.py:314 #: netbox/ipam/tables/ip.py:381 netbox/ipam/tables/ip.py:391 @@ -7591,12 +7590,12 @@ msgstr "U高度" msgid "IP Address" msgstr "IP地址" -#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1122 +#: netbox/dcim/tables/devices.py:214 netbox/dcim/tables/devices.py:1132 #: netbox/virtualization/tables/virtualmachines.py:56 msgid "IPv4 Address" msgstr "IPv4 地址" -#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1126 +#: netbox/dcim/tables/devices.py:218 netbox/dcim/tables/devices.py:1136 #: netbox/virtualization/tables/virtualmachines.py:60 msgid "IPv6 Address" msgstr "IPv6 地址" @@ -7634,7 +7633,7 @@ msgstr "电源接口" msgid "Power outlets" msgstr "电源插座" -#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1131 +#: netbox/dcim/tables/devices.py:269 netbox/dcim/tables/devices.py:1141 #: netbox/dcim/tables/devicetypes.py:133 netbox/dcim/views.py:1207 #: netbox/dcim/views.py:1518 netbox/dcim/views.py:2305 #: netbox/netbox/navigation/menu.py:95 netbox/netbox/navigation/menu.py:259 @@ -7668,13 +7667,21 @@ msgstr "设备板卡插槽" msgid "Inventory items" msgstr "库存项" -#: netbox/dcim/tables/devices.py:327 netbox/dcim/tables/modules.py:91 +#: netbox/dcim/tables/devices.py:317 +msgid "Device Location" +msgstr "设备位置" + +#: netbox/dcim/tables/devices.py:322 +msgid "Device Site" +msgstr "设备站点" + +#: netbox/dcim/tables/devices.py:337 netbox/dcim/tables/modules.py:91 #: netbox/templates/dcim/module.html:65 #: netbox/templates/dcim/modulebay.html:17 msgid "Module Bay" msgstr "设备板卡插槽" -#: netbox/dcim/tables/devices.py:340 netbox/dcim/tables/devicetypes.py:52 +#: netbox/dcim/tables/devices.py:350 netbox/dcim/tables/devicetypes.py:52 #: netbox/dcim/tables/devicetypes.py:148 netbox/dcim/views.py:1282 #: netbox/dcim/views.py:2391 netbox/netbox/navigation/menu.py:104 #: netbox/templates/dcim/buttons/bulk_add_components.html:66 @@ -7685,27 +7692,27 @@ msgstr "设备板卡插槽" msgid "Inventory Items" msgstr "库存项目" -#: netbox/dcim/tables/devices.py:355 +#: netbox/dcim/tables/devices.py:365 msgid "Cable Color" msgstr "线缆颜色" -#: netbox/dcim/tables/devices.py:361 +#: netbox/dcim/tables/devices.py:371 msgid "Link Peers" msgstr "链接对等体" -#: netbox/dcim/tables/devices.py:364 +#: netbox/dcim/tables/devices.py:374 msgid "Mark Connected" msgstr "标记已连接" -#: netbox/dcim/tables/devices.py:483 +#: netbox/dcim/tables/devices.py:493 msgid "Maximum draw (W)" msgstr "最大功率(W)" -#: netbox/dcim/tables/devices.py:486 +#: netbox/dcim/tables/devices.py:496 msgid "Allocated draw (W)" msgstr "分配功率(W)" -#: netbox/dcim/tables/devices.py:591 netbox/ipam/forms/model_forms.py:787 +#: netbox/dcim/tables/devices.py:601 netbox/ipam/forms/model_forms.py:787 #: netbox/ipam/tables/fhrp.py:28 netbox/ipam/views.py:683 #: netbox/ipam/views.py:784 netbox/netbox/navigation/menu.py:165 #: netbox/netbox/navigation/menu.py:167 @@ -7717,12 +7724,12 @@ msgstr "分配功率(W)" msgid "IP Addresses" msgstr "IP地址" -#: netbox/dcim/tables/devices.py:597 netbox/netbox/navigation/menu.py:211 +#: netbox/dcim/tables/devices.py:607 netbox/netbox/navigation/menu.py:211 #: netbox/templates/ipam/inc/panels/fhrp_groups.html:6 msgid "FHRP Groups" msgstr "网关冗余协议组" -#: netbox/dcim/tables/devices.py:609 netbox/templates/dcim/interface.html:95 +#: netbox/dcim/tables/devices.py:619 netbox/templates/dcim/interface.html:95 #: netbox/templates/virtualization/vminterface.html:65 #: netbox/templates/vpn/tunnel.html:18 #: netbox/templates/vpn/tunneltermination.html:13 @@ -7733,41 +7740,41 @@ msgstr "网关冗余协议组" msgid "Tunnel" msgstr "隧道" -#: netbox/dcim/tables/devices.py:645 netbox/dcim/tables/devicetypes.py:234 +#: netbox/dcim/tables/devices.py:655 netbox/dcim/tables/devicetypes.py:234 #: netbox/templates/dcim/interface.html:65 msgid "Management Only" msgstr "仅限管理" -#: netbox/dcim/tables/devices.py:664 +#: netbox/dcim/tables/devices.py:674 msgid "VDCs" msgstr "VDCs" -#: netbox/dcim/tables/devices.py:671 netbox/templates/dcim/interface.html:163 +#: netbox/dcim/tables/devices.py:681 netbox/templates/dcim/interface.html:163 msgid "Virtual Circuit" msgstr "虚拟电路" -#: netbox/dcim/tables/devices.py:923 netbox/templates/dcim/modulebay.html:53 +#: netbox/dcim/tables/devices.py:933 netbox/templates/dcim/modulebay.html:53 msgid "Installed Module" msgstr "已安装的模块" -#: netbox/dcim/tables/devices.py:926 +#: netbox/dcim/tables/devices.py:936 msgid "Module Serial" msgstr "模块状态" -#: netbox/dcim/tables/devices.py:930 +#: netbox/dcim/tables/devices.py:940 msgid "Module Asset Tag" msgstr "模块资产标签" -#: netbox/dcim/tables/devices.py:939 +#: netbox/dcim/tables/devices.py:949 msgid "Module Status" msgstr "模块状态" -#: netbox/dcim/tables/devices.py:993 netbox/dcim/tables/devicetypes.py:319 +#: netbox/dcim/tables/devices.py:1003 netbox/dcim/tables/devicetypes.py:319 #: netbox/templates/dcim/inventoryitem.html:44 msgid "Component" msgstr "组件" -#: netbox/dcim/tables/devices.py:1051 +#: netbox/dcim/tables/devices.py:1061 msgid "Items" msgstr "项目" @@ -8647,9 +8654,9 @@ msgstr "用户名用逗号分隔,用双引号括起来" #: netbox/templates/tenancy/contact.html:21 #: netbox/tenancy/forms/bulk_edit.py:144 netbox/tenancy/forms/filtersets.py:78 #: netbox/tenancy/forms/model_forms.py:99 netbox/tenancy/tables/contacts.py:68 -#: netbox/users/forms/model_forms.py:188 netbox/users/forms/model_forms.py:200 -#: netbox/users/forms/model_forms.py:321 netbox/users/tables.py:35 -#: netbox/users/tables.py:106 +#: netbox/tenancy/tables/contacts.py:115 netbox/users/forms/model_forms.py:188 +#: netbox/users/forms/model_forms.py:200 netbox/users/forms/model_forms.py:321 +#: netbox/users/tables.py:35 netbox/users/tables.py:106 msgid "Groups" msgstr "组" @@ -12018,7 +12025,7 @@ msgstr "应用程序服务模板" #: netbox/netbox/navigation/menu.py:213 netbox/templates/dcim/device.html:308 #: netbox/templates/ipam/ipaddress.html:118 -#: netbox/templates/virtualization/virtualmachine.html:154 +#: netbox/templates/virtualization/virtualmachine.html:156 msgid "Application Services" msgstr "应用程序服务" @@ -12070,7 +12077,7 @@ msgstr "IPSec 配置文件" #: netbox/netbox/navigation/menu.py:260 #: netbox/templates/virtualization/buttons/bulk_add_components.html:17 -#: netbox/templates/virtualization/virtualmachine.html:174 +#: netbox/templates/virtualization/virtualmachine.html:176 #: netbox/templates/virtualization/virtualmachine/base.html:32 #: netbox/virtualization/tables/virtualmachines.py:74 #: netbox/virtualization/views.py:381 @@ -12155,7 +12162,7 @@ msgstr "自定义" #: netbox/netbox/navigation/menu.py:348 #: netbox/templates/dcim/device_edit.html:105 -#: netbox/templates/dcim/htmx/cable_edit.html:84 +#: netbox/templates/dcim/htmx/cable_edit.html:83 #: netbox/templates/dcim/virtualchassis_edit.html:44 #: netbox/templates/generic/bulk_edit.html:76 #: netbox/templates/htmx/form.html:19 netbox/templates/inc/filter_list.html:30 @@ -12272,7 +12279,7 @@ msgstr "配置历史记录" msgid "Background Tasks" msgstr "后台任务" -#: netbox/netbox/object_actions.py:78 +#: netbox/netbox/object_actions.py:87 #: netbox/templates/circuits/inc/circuit_termination.html:10 #: netbox/templates/dcim/manufacturer.html:11 #: netbox/templates/extras/tableconfig_edit.html:29 @@ -12284,12 +12291,12 @@ msgstr "后台任务" msgid "Add" msgstr "添加" -#: netbox/netbox/object_actions.py:88 +#: netbox/netbox/object_actions.py:97 #: netbox/utilities/templates/buttons/clone.html:4 msgid "Clone" msgstr "克隆" -#: netbox/netbox/object_actions.py:104 +#: netbox/netbox/object_actions.py:113 #: netbox/templates/circuits/inc/circuit_termination.html:15 #: netbox/templates/circuits/inc/circuit_termination_fields.html:37 #: netbox/templates/dcim/inc/panels/inventory_items.html:32 @@ -12302,7 +12309,7 @@ msgstr "克隆" msgid "Edit" msgstr "编辑" -#: netbox/netbox/object_actions.py:115 +#: netbox/netbox/object_actions.py:124 #: netbox/templates/circuits/inc/circuit_termination.html:23 #: netbox/templates/dcim/inc/panels/inventory_items.html:37 #: netbox/templates/dcim/powerpanel.html:66 @@ -12317,26 +12324,26 @@ msgstr "编辑" msgid "Delete" msgstr "删除" -#: netbox/netbox/object_actions.py:126 +#: netbox/netbox/object_actions.py:135 #: netbox/utilities/templatetags/buttons.py:190 msgid "Import" msgstr "导入" -#: netbox/netbox/object_actions.py:136 +#: netbox/netbox/object_actions.py:145 #: netbox/utilities/templatetags/buttons.py:207 msgid "Export" msgstr "导出" -#: netbox/netbox/object_actions.py:164 +#: netbox/netbox/object_actions.py:173 #: netbox/utilities/templatetags/buttons.py:227 msgid "Edit Selected" msgstr "修改选中项" -#: netbox/netbox/object_actions.py:175 +#: netbox/netbox/object_actions.py:184 msgid "Rename Selected" msgstr "重命名选中项" -#: netbox/netbox/object_actions.py:186 +#: netbox/netbox/object_actions.py:195 #: netbox/utilities/templatetags/buttons.py:244 msgid "Delete Selected" msgstr "删除选中项" @@ -12476,63 +12483,63 @@ msgstr "初始化后无法在注册表中添加存储空间" msgid "Cannot delete stores from registry" msgstr "无法从注册表中删除存储" -#: netbox/netbox/settings.py:784 +#: netbox/netbox/settings.py:800 msgid "Czech" msgstr "捷克语" -#: netbox/netbox/settings.py:785 +#: netbox/netbox/settings.py:801 msgid "Danish" msgstr "丹麦语" -#: netbox/netbox/settings.py:786 +#: netbox/netbox/settings.py:802 msgid "German" msgstr "德语" -#: netbox/netbox/settings.py:787 +#: netbox/netbox/settings.py:803 msgid "English" msgstr "英语" -#: netbox/netbox/settings.py:788 +#: netbox/netbox/settings.py:804 msgid "Spanish" msgstr "西班牙语" -#: netbox/netbox/settings.py:789 +#: netbox/netbox/settings.py:805 msgid "French" msgstr "法语" -#: netbox/netbox/settings.py:790 +#: netbox/netbox/settings.py:806 msgid "Italian" msgstr "意大利语" -#: netbox/netbox/settings.py:791 +#: netbox/netbox/settings.py:807 msgid "Japanese" msgstr "日语" -#: netbox/netbox/settings.py:792 +#: netbox/netbox/settings.py:808 msgid "Dutch" msgstr "荷兰语" -#: netbox/netbox/settings.py:793 +#: netbox/netbox/settings.py:809 msgid "Polish" msgstr "波兰语" -#: netbox/netbox/settings.py:794 +#: netbox/netbox/settings.py:810 msgid "Portuguese" msgstr "葡萄牙语" -#: netbox/netbox/settings.py:795 +#: netbox/netbox/settings.py:811 msgid "Russian" msgstr "俄语" -#: netbox/netbox/settings.py:796 +#: netbox/netbox/settings.py:812 msgid "Turkish" msgstr "土耳其语" -#: netbox/netbox/settings.py:797 +#: netbox/netbox/settings.py:813 msgid "Ukrainian" msgstr "乌克兰语" -#: netbox/netbox/settings.py:798 +#: netbox/netbox/settings.py:814 msgid "Chinese" msgstr "中文" @@ -12647,7 +12654,7 @@ msgstr "的同步数据 {object_type} {object}。" msgid "Synced {count} {object_type}" msgstr "已同步 {count} {object_type}" -#: netbox/netbox/views/generic/object_views.py:117 +#: netbox/netbox/views/generic/object_views.py:115 #, python-brace-format msgid "{class_name} must implement get_children()" msgstr "{class_name}必须实现get_children()方法" @@ -13664,7 +13671,7 @@ msgid "Leg" msgstr "针" #: netbox/templates/dcim/device.html:312 -#: netbox/templates/virtualization/virtualmachine.html:158 +#: netbox/templates/virtualization/virtualmachine.html:160 msgid "Add an application service" msgstr "添加应用程序服务" @@ -15351,17 +15358,17 @@ msgid "Allocated Resources" msgstr "已分配资源" #: netbox/templates/virtualization/cluster.html:59 -#: netbox/templates/virtualization/virtualmachine.html:125 +#: netbox/templates/virtualization/virtualmachine.html:127 msgid "Virtual CPUs" msgstr "虚拟CPU" #: netbox/templates/virtualization/cluster.html:63 -#: netbox/templates/virtualization/virtualmachine.html:129 +#: netbox/templates/virtualization/virtualmachine.html:131 msgid "Memory" msgstr "内存" #: netbox/templates/virtualization/cluster.html:73 -#: netbox/templates/virtualization/virtualmachine.html:140 +#: netbox/templates/virtualization/virtualmachine.html:142 msgid "Disk Space" msgstr "磁盘空间" @@ -15406,13 +15413,13 @@ msgstr "集群类型" msgid "Virtual Disk" msgstr "虚拟硬盘" -#: netbox/templates/virtualization/virtualmachine.html:122 +#: netbox/templates/virtualization/virtualmachine.html:124 #: netbox/virtualization/forms/bulk_edit.py:172 #: netbox/virtualization/forms/model_forms.py:231 msgid "Resources" msgstr "资源" -#: netbox/templates/virtualization/virtualmachine.html:178 +#: netbox/templates/virtualization/virtualmachine.html:180 msgid "Add Virtual Disk" msgstr "增加虚拟硬盘" @@ -16351,11 +16358,7 @@ msgstr "订阅" msgid "Copy to clipboard" msgstr "复制到剪贴板" -#: netbox/utilities/templates/form_helpers/render_field.html:57 -msgid "This field is required" -msgstr "此字段必填" - -#: netbox/utilities/templates/form_helpers/render_field.html:70 +#: netbox/utilities/templates/form_helpers/render_field.html:66 msgid "Set Null" msgstr "设置为空" diff --git a/pyproject.toml b/pyproject.toml index d70468b17..fa7905b0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ [project] name = "netbox" -version = "4.4.1" +version = "4.4.2" requires-python = ">=3.10" description = "The premier source of truth powering network automation." readme = "README.md" diff --git a/requirements.txt b/requirements.txt index 7df9218fd..1dc1c2f37 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,15 +1,15 @@ colorama==0.4.6 Django==5.2.6 -django-cors-headers==4.8.0 +django-cors-headers==4.9.0 django-debug-toolbar==5.2.0 django-filter==25.1 django-graphiql-debug-toolbar==0.2.0 -django-htmx==1.24.1 +django-htmx==1.26.0 django-mptt==0.17.0 django-pglocks==1.0.4 django-prometheus==2.4.1 django-redis==6.0.0 -django-rich==2.1.0 +django-rich==2.2.0 django-rq==3.1 django-storages==1.14.6 django-tables2==2.7.5 @@ -24,13 +24,13 @@ Jinja2==3.1.6 jsonschema==4.25.1 Markdown==3.9 mkdocs-material==9.6.20 -mkdocstrings==0.30.0 +mkdocstrings==0.30.1 mkdocstrings-python==1.18.2 netaddr==1.3.0 nh3==0.3.0 Pillow==11.3.0 psycopg[c,pool]==3.2.10 -PyYAML==6.0.2 +PyYAML==6.0.3 requests==2.32.5 rq==2.6.0 social-auth-app-django==5.5.1